@charset "utf-8";

/* ----------------------------------------------------------

Common Setting

---------------------------------------------------------- */
/*pc + sp*/
.pc   {display:block}
.sp   {display:none}
@media only screen and (max-width:520px) {
.pc   {display:none}
.sp   {display:block}
}

div,h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd  {
  position: relative;
  word-break:break-all;
  padding:0;
  margin:0;
  box-sizing:border-box;
  outline:none;
  font-family: "Zen Maru Gothic", serif;
/*
  font-family: 'Noto Sans JP', sans-serif;
  */
}

h1,h2,h3,h4,h5,h6   {
  font-weight:normal;
  padding:0;
  margin:0
}

/*font*/
.kiwi {
  font-family: "Kiwi Maru", serif;
  font-style: normal;
}

/*ul dl*/
ul,ul li  {
  list-style:none;
  padding:0;
  margin:0
}

ul.disc li {
  list-style: disc;
  margin-left: 1em;
}

ol  {
  margin-left: 1em;
}

/*position*/
.center {
  text-align:center
}

.left {
  text-align:left
}

.right  {
  text-align:right
}

.block  {
  display: block;
}

.large {
  font-size: 120%;
}

.small {
  font-size: 90%;
}

/*flex*/
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: top;
}

  .flex.space__between {
    justify-content: space-between;
  }

  .flex.center {
    justify-content: center;
  }

  .flex.left {
    justify-content: left;
  }

  .flex.right {
    justify-content: right;
  }

.flex.divided2 .flex__list {
  flex-basis: 48%;
  margin-bottom: 4%;
}

  .flex.divided2 .flex__list:nth-child(even) {
    margin-left: 2%;
  }

.flex.divided3 .flex__list {
  flex-basis: 32%;
  margin-bottom: 4%;
}

  .flex.divided3 .flex__list:nth-child(3n-1) {
    margin-left: 1%;
    margin-right: 1%;
  }

.flex .flex__list img {
  width: 100%;
}

.flex .flex__list.w20 {
  flex-basis: 20%;
}

.flex .flex__list.w25 {
  flex-basis: 25%;
}

.flex .flex__list.w30 {
  flex-basis: 30%
}

.flex .flex__list.w31 {
  flex-basis: 31%
}

.flex .flex__list.w32 {
  flex-basis: 32%
}

.flex .flex__list.w33 {
  flex-basis: 33%
}

.flex .flex__list.w35 {
  flex-basis: 35%
}

.flex .flex__list.w40 {
  flex-basis: 40%;
}

.flex .flex__list.w45 {
  flex-basis: 45%;
}

.flex .flex__list.w50 {
  flex-basis: 50%;
}

.flex .flex__list.w55 {
  flex-basis: 55%;
}

.flex .flex__list.w60 {
  flex-basis: 60%;
}

.flex .flex__list.w65 {
  flex-basis: 65%;
}


@media only screen and (max-width:520px) {
  .flex.divided2 ,
  .flex.divided3  {
    margin-left: auto;
    margin-right: auto;
  }
  
  .flex.space__between {
    justify-content: center;
  }

  .flex .flex__list,
  .flex.divided2 .flex__list,
  .flex.divided3 .flex__list,
  .flex.divided2 .flex__list:nth-child(even),
  .flex.divided3 .flex__list:nth-child(even),
  .flex.divided3 .flex__list:nth-child(3n-1) {
    flex-basis: 100%;
    width: 100%;
    margin-bottom: 4%;
    margin-left: auto;
    margin-right: auto;
  }

  .flex .flex__list.w20,
  .flex .flex__list.w25,
  .flex .flex__list.w30 ,
  .flex .flex__list.w31,
  .flex .flex__list.w32,
  .flex .flex__list.w33,
  .flex .flex__list.w35,
  .flex .flex__list.w40,
  .flex .flex__list.w45,
  .flex .flex__list.w50,
  .flex .flex__list.w55 ,
  .flex .flex__list.w60,
  .flex .flex__list.w65 {
    flex-basis: 100%;
    margin-left: auto;
    margin-right: auto;
  }

}



/*wide*/
.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

/*link*/
a,
a:hover {
  cursor:pointer;
  color: inherit;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition: 0.2s all;
}

a:hover {
  opacity: 0.7; 
}

@media (min-width: 520px) {
  a[href^="tel:"] {
      pointer-events: none;
      cursor: default;
  }
}

@media only screen and (max-width: 520px) {
  a:hover {
    opacity: 1.0; 
  }
}

/*img*/
img {
  vertical-align:middle;
  -ms-interpolation-mode:bicubic;
  max-width:100%
}

figure  {
  padding-left: 0;
  margin-right: 0;
  margin-left: auto;
  margin-right: auto;
}

img.radius {
  border-radius: 36px;
}

@media only screen and (max-width:520px) {
  img.radius {
    border-radius:calc(36px / 2);
  }
}

img.round {
  border-radius: 100%;
}

.alignnone,
.alignleft,
.alignright,
.aligncenter  {
  margin:0;
}

.alignleft  {
  display:inline;
  float:left;
  margin-top:9px;
  margin-right:36px;
  margin-bottom:18px
}

.alignright {
  display:inline;
  float:right;
  margin-top:9px;
  margin-left:36px;
  margin-bottom:18px
}

.aligncenter  {
  clear:both;
  display:block;
  margin-left:auto;
  margin-right:auto;
  text-align:center
}

@media only screen and (max-width:520px) {
  .alignnone,
  .alignleft,
  .alignright,
  .aligncenter  {
    display:block;
    float:none;t
    ext-align:center;
    margin:1em auto
  }
}

/*loading */
.loader-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 123456789;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  font-size: 10px;
  margin: auto;
  text-indent: -9999em;
  width: 5em;
  height: 5em;
  border-radius: 50%;
  background: #ffffff;
  background: -moz-linear-gradient(left, #999 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #999 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #999 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #999 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #999 10%, rgba(255, 255, 255, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.loader:before {
  width: 50%;
  height: 50%;
  background: #fff;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}

.loader:after {
  background: #fff;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes load3 {
  0% {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  }
  100% {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  }
  100% {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  }
}

/* ----------------------------------------------------------

Btn Setting

---------------------------------------------------------- */
/*btn*/
.btn, 
button[type="submit"], 
input[type="submit"]  {
  display:block;
  text-decoration: none;
  text-align:center;
  text-decoration:none;
  box-sizing:border-box;
  position:relative;
  cursor:pointer;
  box-shadow:none;
  outline:none;
  appearance:none;
  font-weight: 600;
}

.btn__primary {
  background: #db600e;
  border: 1px solid #db600e;
  text-align: center;
  color: #fff;
  padding:18px;
  border-radius: 200px;
}

  .btn__primary:hover,
  .btn__primary:focus  {
    color: #fff;
  }

.btn__secondary {
  background: #fff;
  border: 1px solid #db600e;
  text-align: center;
  color: #db600e;
  padding:18px;
  border-radius: 200px;
}

  .btn__secondary:hover,
  .btn__secondary:focus  {
    color: #db600e!important;;
  }

.btn__white {
  background: transparent;
  border: 1px solid #fff;
  text-align: center;
  color: #fff;
  padding:18px;
  border-radius: 200px;
}

  .btn__secondary:hover,
  .btn__secondary:focus  {
    color: #fff;
  }

.btn__small {
  width:256px;
}

.btn__middle {
  width:468px;
}

.btn__large {
  width:100%x;
}

@media only screen and (max-width:520px) {
  .btn__primary,
  .btn__secondary {
    padding:calc(18px / 2);
  }

  .btn__small {
    width:100%;
  }

  .btn__middle {
    width:100%;
  }

  .btn__large {
    width:100%;
  }

}


/*btn__link
.btn__link__list {
  text-align: center;
  margin: 36px auto auto;
  z-index: 123;
}

.btn__link__list ul li {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  padding: 0 9px;
  margin: auto;
}

.btn__link__list ul  {
  text-align: center;
  margin: auto;
}

.btn__link__list .btn__middle,
.btn__link .btn__middle {
  display: block;
  width:375px;
  padding:13.5px 18px;
  margin: auto;
  text-align: center;
}

.btn__link__list .btn__large,
.btn__link .btn__large {
  display: block;
  width:468px;
  padding:18px;
  margin: auto;
  text-align: center;
}

.btn__bold {
  font-weight: 800;
}

@media only screen and (max-width:520px) {
  .btn__primary,
  .btn__white,
  .btn__black {/}

  .btn__white.btn__arrow,
  .btn__black.btn__arrow ,
  .btn__black.btn__arrow  {
    background-size: 18px;
    background-position: 96.5% 50%;
  }

  .btn__link {
    margin: 18px auto auto;
  }

  .btn__link__list {
    margin: 18px auto;
  }

  .btn__link__list ul li {
    padding: 0 ;
    display: block;
    margin:18px auto 9px;
    box-sizing: border-box;
  }

  .btn__link__list .btn__middle,
  .btn__link .btn__middle ,
  .btn__link__list .btn__large,
  .btn__link .btn__large {
    width:100%;
    padding:9px;
    box-sizing: border-box;
  }

  .btn__link input[type="submit"].btn__large {
    width:100%;
    padding:18px;
    font-size: inherit;
  }

}

*/
/* ----------------------------------------------------------

Form Setting

---------------------------------------------------------- */
/*form reset
input[type=submit],
button,
button[type=submit],
button[type=button] {
  appearance:none;
  cursor:pointer;
  outline:none;
  box-sizing:border-boxt;
  border:none;
  background: transparent;
  font-size: 18px;
}
*/
input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type=url],
input[type=tel],
textarea {
  appearance:none;
  outline:none;
  border-radius: 9px;
  border:1px solid #ccc;
  padding: 18px;
  box-sizing:border-box;
  max-width: 100%;
  font-size: 18px;
}

input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=url]:focus,
input[type=tel]:focus,
textarea:focus {
  transition: 0.3s;
  box-shadow: 0 0 0 6px rgba(0,0,0,0.1)
}

/*radio checkbox*/
input[type=radio].scale2,
input[type=checkbox].scale2 {
  transform:scale(2.0)
}

/*select*/
.select select {
  box-sizing:border-box;
  width: 100%;
  outline: none;
  border:none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  appearance: none;
  color: #000;
  max-width: 100%;
  padding: 18px 36px 18px 18px;
  font-size: 18px;
}

.select select::-ms-expand {
  display: none;
}

.select {
  display: inline-block;
  position: relative;
  border-radius: 6px;
  border:1px solid #ccc;
  box-sizing:border-box;
  background: #fff;
}

.select::before {
  position: absolute;
  top: 45%;
  right:9px;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #222;
  pointer-events: none;
}

::-webkit-input-placeholder {
  color:#aaa;
}
:-ms-input-placeholder {
  color:#aaa;
}
::placeholder{
  color:#aaa
}

/* ----------------------------------------------------------

Table Setting

---------------------------------------------------------- */
/*wide*/
table.w20 th {
  width: 20%;
}

table.w30 th {
  width: 30%;
}

table.w40 th {
  width: 40%;
}

table.w50 th {
  width: 50%;
}


@media only screen and (max-width:520px) {

}


/*table__bordered*/
table.table__bordered {
  border: none;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #db600e;
  border-collapse: collapse;
  padding: 0;
  margin: 0;
}

table.table__bordered tr th {
  text-align: left;
  font-weight: 400;
  border: 1px solid #db600e;
  padding: 18px;
  font-weight: bold;
}

table.table__bordered tr td {
  text-align: left;
  font-weight: 400;
  border: 1px solid #db600e;
  padding: 18px;
}/*

  table.table__bordered tr:nth-last-child(1) th ,
  table.table__bordered tr:nth-last-child(1) td  {
    border-bottom: none;
  }
*/
@media only screen and (max-width:520px) {
 

}


/*table__striped*/
table.table__striped {
  border: none;
  width: 100%;
  table-layout: fixed;
  border: none;
  border-collapse: collapse;
  padding: 0;
  margin: 0;
}

table.table__striped tr th ,
table.table__striped tr td {
  text-align: left;
  font-weight: 400;
  padding: 18px;
}

table.table__striped tr th {
  font-weight: bold;
}

  table.table__striped tr:nth-child(odd) th ,
  table.table__striped tr:nth-child(odd) td {
    background: #faece6;
  }

  table.table__striped tr:nth-child(even) th ,
  table.table__striped tr:nth-child(even) td {
    background: #fff;
  }

/*

  table.table__bordered tr:nth-last-child(1) th ,
  table.table__bordered tr:nth-last-child(1) td  {
    border-bottom: none;
  }
*/
@media only screen and (max-width:520px) {
 

}



/*table__responsive*/
@media only screen and (max-width:520px) {
  /*table__responsive*/
  .table__responsive {
    table-layout: fixed;
  }

  .table__responsive tr th,
  .table__responsive tr td {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    display: block;
  }

  .table__responsive tr th,
  .table__striped.table__responsive tr th,
  .table__bordered.table__responsive tr th {
    padding-bottom: 2.25px;
    border: none;
  }

  .table__bordered.table__responsive tr {
    border: 1px solid #db600e;
  }

  .table__responsive tr td,
  .table__striped.table__responsive tr td,
  .table__bordered.table__responsive tr td {
    padding-top: 2.25px;
    border: none;
  }

  .table__responsive.w20,
  .table__responsive.w30,
  .table__responsive.w40,
  .table__responsive.w50 {
    width: 100%;
  }
}


/*definition__list*/
.definition__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items:top;
  padding:1.75px 0;
}

.definition__list dl dt {
  font-weight: 500;
}

.definition__list dl dd {
}

.definition__list.w15 dl dt {
  flex-basis: 15%;
}

.definition__list.w20 dl dt {
  flex-basis: 20%;
}

@media only screen and (max-width:520px) {

}

/* ----------------------------------------------------------

Layout Setting

---------------------------------------------------------- */
body        {
  position: relative;
  font-feature-settings:"palt" 1;
  line-break:strict!important;
  overflow-wrap:break-word!important;
  word-wrap:break-word!important;
  box-sizing:border-box;
  width:100%;
  min-width: 1180px;
  color: #491f09;
  font-weight: normal;
  font-size:18px;
  line-height:2.1234567;
  padding:0;
  margin:auto;
}

#wrapper {
  overflow-x: hidden
}

main {
  position: relative;
  z-index: 12;
}

  .home main {
    margin-top:0;
  }

.container__fluid  {
  width:100%;
  margin:auto;
  max-width: 1980px;
}

.container  {
  width:1180px;
  max-width: 1980px;
  margin:auto;
}

.container__middle {
  max-width:1080px;
  margin:auto;
}

.container__narrow {
  max-width:1024px;
  margin:auto;
}

.container__xnarrow  {
  max-width:980px;
  margin:auto;
}

.container__xxnarrow {
  max-width:880px;
  margin:auto;
}

.container__xxxnarrow {
  max-width:780px;
  margin:auto;
}

.container__xxxxnarrow {
  max-width:680px;
  margin:auto;
}

@media only screen and (max-width:520px) {
  body  {
    min-width:1px;
    font-size:calc(18px / 1.18);
    line-height: 1.89;
    -webkit-text-size-adjust:100%;
    -webkit-overflow-scrolling:touch;
  }

  .container_wide,
  .container,
  .container__middle,
  .container__narrow,
  .container__xnarrow,
  .container__xxnarrow,
  .container__xxxnarrow,
  .container__xxxxnarrow {
    width:100%;
    max-width:100%;
    padding-left:1em;
    padding-right:1em;
    box-sizing:border-box
  }

  main {
    overflow-x: hidden;
  }
}

/*iPhone横*/
@media (orientation: landscape) and (max-width:900px)　{
  body  {
    min-width:1180px;
  }
}

/*iPad用*/
@media screen and (device- width : 768px ) and (device- height : 1024px ) and (-webkit-device-pixel-ratio: 2 ) {
  body  {
    min-width: 1024px;
  }
}

/* ----------------------------------------------------------

Header Setting

---------------------------------------------------------- */
/*header*/
.header {
  width: 100%;
}

  .home .header {
    height: 700px;
  }

@media only screen and (max-width:520px) {
  .home .header {
    height:100%;
  }

}

/*topbar*/
.topbar {
  width: 100%;
  background: transparent;
  height:90px ;
  position: relative;
  z-index: 12345789;
}

.topbar__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.topbar .logo {
  flex-basis: calc(770px / 2)
}

.topbar__right {
  flex-basis: calc(100% - calc(770px / 2));
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: right;
  padding: 18px 0 0;
}


@media only screen and (max-width:520px) {
  .topbar {
    width: 100%;
    height:auto ;
    padding-bottom: 13.5px;
  }

}



/*gnav__pc*/
.topbar .gnav__pc {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.topbar .gnav__pc li  {
  margin: 0 27px;
}

.topbar .gnav__pc li a {
  display: block;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}


@media only screen and (max-width:520px) {
  .topbar .logo {
    flex-basis: calc(770px / 3)
  }

  .topbar__right {
    display: none;
  }
}


/*gnav_pc*/
nav.gnav__sp {
  display: none
}
@media only screen and (max-width:960px) {
  .topbar .gnav__pc {
    display: none;
  }

  nav.gnav__sp  {
    display:block;
    position:fixed;
    top:0;
    right:-55%;
    bottom:0;
    width:55%;
    overflow-x:hidden;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    transition:all .5s;
    opacity:0;
    background:#db600e;
    z-index: 1234567890123456789;
  }

  .open nav.gnav__sp  {
    right:0;
    opacity:1
  }

  nav.gnav__sp .inner {
    padding:0
  }

  nav.gnav__sp .inner ul  {
    list-style:none;
    margin-top: 36px;
    padding:18px;
  }

  nav.gnav__sp .inner ul li {
    position:relative;
    margin:0;
    text-align:left
  }

  nav.gnav__sp .inner ul li a     {
    display:block;
    color:#fff;
    box-sizing:border-box;
    font-size:18px;
    font-weight: 500;
    padding:28px 0;
    text-decoration:none;
    transition-duration:0.2s;
    border-bottom:1px solid rgba(255,255,255,0.5);
    color: #fff;
  }

  /*toggle__btn*/
  .toggle__btn {
    display:block;
    position:fixed;
    top:22.5px;
    right:1em;
    width:30px;
    height:30px;
    transition:all .5s;
    cursor:pointer;
    z-index: 123456789012345678901
  }

  .toggle__btn span {
    display:block;
    position:absolute;
    right:0;
    width:40px;
    height:2px;
    background-color:#491f09;
    border-radius:0;
    transition:all .5s;
  }

  .toggle__btn span:nth-child(1) {
    top:4px
  }

  .toggle__btn span:nth-child(2) {
    top:12px
  }

  .toggle__btn span:nth-child(3)  {
    bottom:8px
  }

  .open .toggle__btn span {
    background-color:#fff
  }

  .open .toggle__btn span:nth-child(1) {
    -webkit-transform:translateY(8px) rotate(-315deg);
    transform:translateY(8px) rotate(-315deg)
  }

  .open .toggle__btn span:nth-child(2) {
    opacity:0
  }

  .open .toggle__btn span:nth-child(3) {
    -webkit-transform:translateY(-8px) rotate(315deg);
    transform:translateY(-8px) rotate(315deg)
  }
}



/*home__mainvisual*/
.home__mainvisual {
  position:relative;
  z-index: 1;
  width: 100%;
  height:100%;
  background-image: url(../img/home__mainvisual__pc.png);
  background-position: center top;
  background-size: 100%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.home__mainvisual__container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content:left;
  align-items: center;
  overflow-x: hidden;
}

.home__mainvisual__title  {
  padding: calc(90px + 90px) 0 90px;
  flex-basis:100%;
  text-align: left;
  box-sizing: border;
}

.home__mainvisual__title img {
  width: 90% ;
  margin-left: -1.5%
}

@media only screen and (max-width:520px) {
  .home__mainvisual {
    position:relative;
    z-index: 1;
    width: 100%;
    height:100%;
    background-image: url(../img/home__mainvisual__sp.png);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .home__mainvisual__title  {
    padding: calc(90px + 90px) 0 45px;
    flex-basis:110%;
    margin-left: -5%;
    margin-right: -5%;
    text-align: left;
    box-sizing: border;
  }

  .home__mainvisual__title img {
    width: 100% ;
  }
}


/*mainvisual*/
.mainvisual {
  width: 100%;
  height:calc(600px / 2);
  position: relative;
  z-index: 111;
  background-image:url(../img/mainvisual.png) ;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}

.mainvisual__container  {
  padding:90px 0 ;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.mainvisual__title span {
  display: block;
  font-size: 44px;
  line-height: inherit;
  text-align: center;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index:12345;
}

@media only screen and (max-width:520px) {
  .mainvisual {
    height:calc(600px / 4);
    background-image:url(../img/mainvisual.png);
    background-position:top center;
    background-size: cover;
  }

  .mainvisual__container  {
    padding:calc(90px / 2) 0 ;
  }

  .mainvisual__title span {
    font-size: calc(44px / 1.54);
  }
}

/* ----------------------------------------------------------

Section Setting

---------------------------------------------------------- */
/*bg*/
.bg1 {
  background-color: #fff
}

.bg2 {
  background-color: #f6f1ef
}

.bg3 {
  background-color: #db600e
}

/*section*/
.section {
  padding:90px 0;
}

.section__head {
  z-index: 1;
  margin: auto;
  text-align: center;
}

.section__body {
  background: #fff;
  margin-top: -150px;
  margin-bottom: -90px;
  padding:90px 36px 0;
  z-index: 11;
}

  .section:last-of-type .section__body {
    margin-bottom:0;
  }

.section.border__bottom {
  border-bottom: 1px solid #ccc;
}

p.leed {
  font-size: 17.5689px;
}

p.leed.center {
  text-align: center;
}

@media only screen and (max-width:520px) {
  .section {
    padding:calc(90px / 2) 0;
  }

  .section__body {
    margin-top: calc(-150px / 2);
    margin-bottom: calc(-90px / 2);
    padding:calc(90px / 2) calc(36px / 2) 0;
  }

  p.leed {
    font-size: calc(17.5689px / 1.125)
  }

}


/*padding margin*/
.mt-4  {
  margin-top: -4.5px
}

.mt-9  {
  margin-top: -9px
}

.mt-18  {
  margin-top: -18px
}

.mt-27  {
  margin-top: -27px
}

.mt-36 {
  margin-top: -36px
}

.mt-45 {
  margin-top: -45px
}

.mt-54 {
  margin-top: -54px
}

.mt-63 {
  margin-top: -63px
}

.mt-72 {
  margin-top: -72px
}

.mt-81 {
  margin-top: -81px
}

.mt-90 {
  margin-top: -90px
}

.mt-120 {
  margin-top: -120px;
}

.mt-150 {
  margin-top: -150px;
}

.mt-180 {
  margin-top: -180px;
}

.mb-9  {
  margin-bottom: -9px
}

.mb-18  {
  margin-bottom: -18px
}

.mb-27  {
  margin-bottom: -27px
}

.mb-36 {
  margin-bottom: -36px
}

.mb-45 {
  margin-bottom: -45px
}

.mb-54 {
  margin-bottom: -54px
}

.mb-63 {
  margin-bottom: -63px
}

.mb-72 {
  margin-bottom: -72px
}

.mb-81 {
  margin-bottom: -81px
}

.mb-90 {
  margin-bottom: -90px
}

.mt0 {
  margin-top: 0!important;
}

.mt9 {
  margin-top: 9px;
}

.mt18 {
  margin-top: 18px;
}

.mt27 {
  margin-top: 27px;
}

.mt36 {
  margin-top: 36px;
}

.mt45 {
  margin-top: 45px;
}

.mt54 {
  margin-top: 54px;
}

.mt63 {
  margin-top: 63px;
}

.mt72 {
  margin-top: 72px;
}

.mt81 {
  margin-top: 81px;
}

.mt90 {
  margin-top: 90px;
}

.mb0 {
  margin-bottom: 0!important;
}

.mb9 {
  margin-bottom: 9px;
}

.mb18 {
  margin-bottom: 18px;
}

.mb27 {
  margin-bottom: 27px;
}

.mb36 {
  margin-bottom: 36px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb54 {
  margin-bottom: 54px;
}

.mb63 {
  margin-bottom: 63px;
}

.mb72 {
  margin-bottom: 72px;
}

.mb81 {
  margin-bottom: 81px;
}

.mb90 {
  margin-bottom: 90px;
}

.pt0 {
  padding-top: 0;
}

.pt9 {
  padding-top: 9px;
}

.pt18 {
  padding-top: 18px;
}

.pt27 {
  padding-top: 27px;
}

.pt36 {
  padding-top: 36px;
}

.pt45 {
  padding-top: 45px;
}

.pt54 {
  padding-top: 54px;
}

.pt63 {
  padding-top: 63px;
}

.pt72 {
  padding-top: 72px;
}

.pt81 {
  padding-top: 81px;
}

.pt90 {
  padding-top: 90px;
}

.pt120 {
  padding-top: 120px;
}

.pt150 {
  padding-top: 150px;
}

.pt180 {
  padding-top: 180px;
}

.pb0 {
  padding-bottom: 0;
}

.pb9 {
  padding-bottom: 9px;
}

.pb18 {
  padding-bottom: 18px;
}

.pb27{
  padding-bottom: 27px;
}

.pb36 {
  padding-bottom: 36px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb54 {
  padding-bottom: 54px;
}

.pb63 {
  padding-bottom: 63px;
}

.pb72 {
  padding-bottom: 72px;
}

.pb81 {
  padding-bottom: 81px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb180 {
  padding-bottom: 180px;
}

.pb210 {
  padding-bottom: 210px;
}

.pd9 {
  padding: 9px;
}

.pd18 {
  padding: 18px;
}

.pd27 {
  padding: 27px;
}

.pd36 {
  padding: 36px;
}

.pd45 {
  padding: 45px;
}

.pd54 {
  padding: 54px;
}

.pd63 {
  padding: 63px;

}

@media only screen and (max-width:767px) {
  .mt-4  {
    margin-top: calc(-4.5px / 2)
  }

  .mt-9  {
    margin-top: calc(-9px / 2)
  }

  .mt-18  {
    margin-top: calc(-18px / 2)
  }

  .mt-27  {
    margin-top: calc(-27px / 2)
  }

  .mt-36 {
    margin-top: calc(-36px / 2)
  }

  .mt-45 {
    margin-top: calc(-45px / 2)
  }

  .mt-54 {
    margin-top: calc(-54px / 2)
  }

  .mt-63 {
    margin-top: calc(-63px / 2)
  }

  .mt-72 {
    margin-top: calc(-72px / 2)
  }

  .mt-81 {
    margin-top: calc(-81px / 2)
  }

  .mt-90 {
    margin-top: calc(-90px / 2)
  }

  .mt-120 {
    margin-top: calc(-120px / 2)
  }

  .mt-150 {
    margin-top: calc(-150px / 2)
  }

  .mt-180 {
    margin-top: calc(-180px / 2)
  }

  .mb-9  {
    margin-bottom: calc(-9px / 2)
  }

  .mb-18  {
    margin-bottom: calc(-18px / 2)
  }

  .mb-27  {
    margin-bottom: calc(-27px / 2)
  }

  .mb-36 {
    margin-bottom: calc(-36px / 2)
  }

  .mb-45 {
    margin-bottom: calc(-45px / 2)
  }

  .mb-54 {
    margin-bottom: calc(-54px / 2)
  }

  .mb-63 {
    margin-bottom: calc(-63px / 2)
  }

  .mb-72 {
    margin-bottom: calc(-72px / 2)
  }

  .mb-81 {
    margin-bottom: calc(-81px / 2)
  }

  .mb-90 {
    margin-bottom: calc(-90px / 2)
  }

  .mt9 {
    margin-top: calc(9px / 2)
  }

  .mt18 {
    margin-top: calc(18px / 2)
  }

  .mt27 {
    margin-top: calc(27px / 2)
  }

  .mt36 {
    margin-top: calc(36px / 2)
  }

  .mt45 {
    margin-top: calc(45px / 2)
  }

  .mt54 {
    margin-top: calc(54px / 2)
  }

  .mt63 {
    margin-top: calc(63px / 2)
  }

  .mt72 {
    margin-top: calc(72px / 2)
  }

  .mt81 {
    margin-top: calc(81px / 2)
  }

  .mt90 {
    margin-top: calc(90px / 2)
  }

  .mb9 {
    margin-bottom: calc(9px / 2)
  }

  .mb18 {
    margin-bottom: calc(18px / 2)
  }

  .mb27 {
    margin-bottom: calc(27px / 2)
  }

  .mb36 {
    margin-bottom: calc(36px / 2)
  }

  .mb45 {
    margin-bottom: calc(45px / 2)
  }

  .mb54 {
    margin-bottom: calc(54px / 2)
  }

  .mb63 {
    margin-bottom: calc(63px / 2)
  }

  .mb72 {
    margin-bottom: calc(72px / 2)
  }

  .mb81 {
    margin-bottom: calc(81px / 2)
  }

  .mb90 {
    margin-bottom: calc(90px / 2)
  }

  .pt9 {
    padding-top: calc(9px / 2)
  }

  .pt18 {
    padding-top: calc(18px / 2)
  }

  .pt27 {
    padding-top: calc(27px / 2)
  }

  .pt36 {
    padding-top: calc(36px / 2)
  }

  .pt45 {
    padding-top: calc(45px / 2)
  }

  .pt54 {
    padding-top: calc(54px / 2)
  }

  .pt63 {
    padding-top: calc(63px / 2)
  }

  .pt72 {
    padding-top: calc(72px / 2)
  }

  .pt81 {
    padding-top: calc(81px / 2)
  }

  .pt90 {
    padding-top: calc(90px / 2)
  }

  .pt120 {
    padding-top: calc(120px / 2)
  }

  .pt150 {
    padding-top: calc(150px / 2)
  }

  .pt180 {
    padding-top: calc(180px / 2)
  }

  .pb9 {
    padding-bottom: calc(9px / 2)
  }

  .pb18 {
    padding-bottom: calc(18px / 2)
  }

  .pb27{
    padding-bottom: calc(27px / 2)
  }

  .pb36 {
    padding-bottom: calc(36px / 2)
  }

  .pb45 {
    padding-bottom: calc(45px / 2)
  }

  .pb54 {
    padding-bottom: calc(54px / 2)
  }

  .pb63 {
    padding-bottom: calc(63px / 2)
  }

  .pb72 {
    padding-bottom: calc(72px / 2)
  }

  .pb81 {
    padding-bottom: calc(81px / 2)
  }

  .pb90 {
    padding-bottom: calc(90px / 2)
  }

  .pb180 {
    padding-bottom: calc(180px / 2)
  }

  .pb210 {
    padding-bottom: calc(210px / 2)
  }

  .pd9 {
    padding: calc(9px / 2)
  }

  .pd18 {
    padding: calc(18px / 2)
  }

  .pd27 {
    padding: calc(27px / 2)
  }

  .pd36 {
    padding: calc(36px / 2)
  }

  .pd45 {
    padding: calc(45px / 2)
  }

  .pd54 {
    padding: calc(54px / 2)
  }

  .pd63 {
    padding: calc(63px / 2)
  }

}

/*section__title*/
.section__title,
.section__title span {
  text-align: center;
}

.section__title.left,
.section__title.left span {
  text-align: left;
}

.section__title span {
  display: block;
  font-weight:600;
  margin-bottom: 72px;
}

.section__title span.ja {
  font-size: 32px;
  line-height: 1.3456789;
}

.section__title :after {
  position: absolute;
  left: calc(50% - calc(54px /2));
  content: '';
  width: 54px;
  border-top: 4px solid #db600e;
  margin: auto;
  text-align: center;
  top: 140%;
}

@media only screen and (max-width:520px) {
  .section__title span {
    margin-bottom: calc(72px / 2);
  }

  .section__title span.ja {
    font-size: calc(32px / 1.455);
    letter-spacing: 0.021em;
  }

  .section__title:after {
    left: calc(50% - calc(54px / 4));
    width: calc(54px /2);
    top:140%;
  }

}

/*section__subtitle*/
.section__subtitle {
  text-align: left;
  border-left: 5px solid #db600e;
  padding-left: 18px;
}

.section__subtitle span {
  display: block;
  text-align: left;
  font-size: 24px;
  font-weight:600;
  line-height: 1.56789;
}

@media only screen and (max-width:520px) {
  .section__subtitle {
    border-left: calc(10px / 2) solid #db600e;
    padding-left: calc(18px / 2);
  }

  .section__subtitle span {
    font-size: calc(24px / 1.35);
  }

}


/*breadnav*/
.breadnav {
  padding: 27px 0;
}

.breadnav p {
  font-size: 15.5px;
  line-height: 2
}

.breadnav p a {
  text-decoration: underline!important;
}

  .breadnav p a:focus ,
  .breadnav p a:hover  {
    text-decoration: none!important;
    transition: 0.3s;
  }

@media only screen and (max-width:520px) {
  .breadnav {
    padding: calc(27px / 1.5) 0;
  }

  .breadnav p {
    font-size: calc(15.5px / 1.1)
  }

}

/*circle*/
.circle {
  color: #37a7d0;
  font-weight: bold;
}

/*ifraem*/
iframe.map {
  width: 100%;
  height: 428px;
}

iframe.map.radius {
  border-radius: 36px;
}

@media only screen and (max-width:520px) {
  iframe.map {
    height: calc(428px / 1.5)
  }

  iframe.map.radius {
    border-radius: calc(36px / 2);
  }

}


/*common__consultation*/
.common__consultation__container {
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
  align-time: top;
}

.common__consultation__time,
.common__consultation__calendar {
  flex-basis: 48.5%;
}

@media only screen and (max-width:520px) {
  .section.common__consultation {
    padding: cacl(54px / 2) 0
  }

  .common__consultation__time,
  .common__consultation__calendar {
    flex-basis: 100%;
    margin:9px auto;
  }
}


/*calendar__table*/
.calendar__table  {
  padding: 18px 0 ;
}

.calendar__table table {
  width: 100%;
  border-collapse: collapse;
}

.calendar__table thead th {
  background: #db600e;
  text-align: center;
  border: none;
  color: #fff;
  padding:13.5px 4.5px ;
}

.calendar__table tbody th ,
.calendar__table tbody td   {
  background: #fff;
  text-align: center;
  border-bottom: 1px solid #db600e;
  padding: 22.5px 2.25px;
  line-height: 1.3456789;
}

.calendar__table tbody th {
  width: 21%;
  text-align: center;
}

.calendar__table tbody td  {
  width: 11.5%;
  text-align: center;
  font-size: 18px;
  line-height: 1.3456789;
  font-weight: bold;
}

.calendar__table tbody td span  {
  color: #db600e;
  font-size: 36px;
  line-height: 1.3456789;
  text-align: center;
}

.calendar__caution   {
  display: block;
  text-align: center;
  font-size: 17.5px;
  margin:9px auto -9px;
  line-height: inherit;
}

@media only screen and (max-width:520px) {
  .calendar__table  {
    padding: calc(18px / 1) 0 ;
  }

  .calendar__table thead th,
  .calendar__table tbody th ,
  .calendar__table tbody td   {
    padding: calc(21.5px / 1.5) calc(4.5px /2);
    font-size: calc(18px / 1.25)
  }

  .calendar__table tbody th {
    width: 21%;
  }

  .calendar__table tbody td  {
    width: 10.5%;
  }

  .calendar__table tbody td span  {
    font-size: calc(36px / 1.5)
  }

  .calendar__caution   {
    margin-top: calc(-9px / 2);
    margin-bottom: 9px;
    font-size: calc(17.5px / 1.18)
  }

}


/* ----------------------------------------------------------

Home Setting

---------------------------------------------------------- */
/*home__about*/
.home__about__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  padding-top: 18px;
}

.home__about__list {
  flex-basis: 49%;
  margin-left: 0 1%;
  border-radius: 27px;
}

  .home__about__list:nth-child(odd) {
    margin-left: 0;
  }

  .home__about__list:nth-child(even) {
    margin-right: 0;
  }

.home__about__list img {
  border-radius:27px 27px 0 0;
}

.home__about__text {
  padding:27px 36px;
  text-align: center;
  margin: auto;
  color: #fff;
  border-radius: 0 0 27px 27px;
}

  .home__about__list:nth-child(odd) .home__about__text {
    background-color: #cc8b65;
  }

  .home__about__list:nth-child(even) .home__about__text {
    background-color: #c46258;
  }

.home__about__title {
  text-align: center;
  margin: auto;
}

.home__about__title span {
  display: block;
  font-size: 36px;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin:0 auto 18px;
}

.home__about__text p {
  font-size: 18px;
  line-height: 1.789;
  min-height: 72.0px;
  margin:9px auto;
}

.home__about__btn {
  text-align: center;
  margin: 9px auto;
  width: 256px;
}

.home__about__btn a {
  font-size: 20.25px;
  border-width: 1.5px;
  padding:13.5px 18px;
  color: #fff;
}

@media only screen and (max-width:520px) {
  .home__about__container {
    padding-top: calc(18px / 18);
  }

  .home__about__list {
    flex-basis: 100%;
    margin:9px auto;
    border-radius: calc(27px / 1.5);
  }

  .home__about__list:nth-child(odd) ,
  .home__about__list:nth-child(even) {
    margin-left: auto;
    margin-right: auto;
  }

  .home__about__list img {
    border-radius:calc(27px / 1.5) calc(27px / 1.5) 0 0;
    width: 100%;
    object-fit: cover;
    object-position: 0 45%;
    height: 200px;
  }

  .home__about__text {
    padding:calc(27px / 2) 18px;
    border-radius: 0 0 calc(27px / 1.5) calc(27px / 1.5);
  }

  .home__about__title span {
    font-size: calc(36px / 1.46);
    letter-spacing: 0.025em;
    margin:0 auto calc(18px / 1.5);
  }

  .home__about__text p {
    font-size: calc(18px / 1.18);
    min-height: 1px;
    margin:calc(9px / 1.5) auto;
  }

  .home__about__btn {
    margin: 18px auto;
    width: 100%;
  }

  .home__about__btn a {
    font-size: calc(20.25px / 1.2025);
    border-width: calc(1.5px / 1.5);
    padding:calc(13.5px / 1.5) 18px;
  }

}


/*home__news*/
.home__news__list {
  height: 400px;
  padding:18px 45px 36px;
  box-sizing: border-box;
  overflow-y: scroll;
}

.home__news__title {
  font-weight: bold;
  font-size: inherit;
}

.home__news__title:before {
  content: '●';
  color: #db600e;
}

@media only screen and (max-width:520px) {
  .home__news__list {
    height: calc(400px / 1.5);
    padding:calc(18px / 1.5) 18px ;
  }

}



/* ----------------------------------------------------------

Footer Setting

---------------------------------------------------------- */
/*footer__sitemap*/
.footer__sitemap {
  padding: 36px 0 ;
  margin: 0;
}

.footer__sitemap__list {
  margin: auto;
  text-align: center;
}

.footer__sitemap__list ul  {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: top;
}

.footer__sitemap__list ul li {
  font-size: 16.5px;
  line-height: normal;
  font-weight: 500;
  padding: 0 24px;
}

.footer__sitemap__list ul li a {
  display: block;
  text-decoration: none;
}

.footer__sitemap__list ul li.blank img {
  width: 13.5px;
  margin-top: -6px;
  margin-left: 2.25px;
}

@media only screen and (max-width:520px) {
  .footer__sitemap {
    padding: calc(36px / 1.5) ;
  }

  .footer__sitemap__list {
    margin: 0;
    text-align: left;
  }

  .footer__sitemap__list ul  {
    display: block;
  }

  .footer__sitemap__list ul li {
    display: inline-block;
    font-size: calc(16.5px / 1.125);
    width: 47.5%;
    text-align: left;
  }

  .footer__sitemap__list ul li {
    padding: 13.5px 0
  }
}


/*footer__container*/
.footer__container {
  padding: 54px 0 ;
  margin: auto;
  max-height: 540px;
  text-align: center;
  color: #fff;
}

.footer__container .footer__logo {
  margin: 18px auto auto ;
  text-align: center;
}

  .footer__container .footer__logo img {
    width: calc(764px / 2);
    height: auto;
  }

.footer__container .footer__text {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.15em;
  line-height:inherit;
  margin:18px auto ;
}

.footer__container .footer__tel span {
  font-size: 70px;
  line-height: 1;
}

.footer__container .footer__tel a {
  display: block;
  text-decoration: none;
}

.footer__container .footer__tel img {
  width: calc(97px / 2);
  margin-top: -36px;
}

.footer__container .footer__address {
  margin: 18px auto;
}

.footer__map {
  width: 100%;
  height: 100%;
  margin: 18px auto;
  border-radius: 36px;
  position: relative;
  z-index: 123456;
}

.footer__map iframe {
  width: 100%;
  height: 420px;
  margin: 18px auto;
  border-radius: 36px;
}


@media only screen and (max-width:520px) {
  .footer__container {
    padding: calc(54px / 1.5) 0 ;/*
    margin-bottom:calc(-360px / 2);
    */
    max-height:calc(540px / 2);
  }

  .footer__container .footer__logo {
    margin: calc(18px / 2) auto auto ;
  }

  .footer__container .footer__logo img {
    width: calc(764px / 3);
    height: auto;
  }

  .footer__container .footer__text {
    font-size: calc(18px / 1.18);
    letter-spacing: calc(0.15em /2);
    margin:calc(18px / 1) auto ;
  }

  .footer__container .footer__tel span {
    font-size: calc(70px / 1.75);
  }

  .footer__container .footer__tel img {
    width: calc(97px / 4);
    margin-top: calc(-36px / 1.5);
  }

  .footer__container .footer__address {
    margin: calc(18px / 1) auto;
  }

  .footer__map {
    margin: calc(18px / 2) auto;
    border-radius: calc(36px / 2);
  }

  .footer__map iframe {
    height: calc(420px / 1.5);
    margin: calc(18px / 2) auto;
    border-radius: calc(36px /2);
  }

}

/*footer__accces*/
.footer__accces {
  position: relative;
  padding-top: 160px;
}

.footer__accces__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  padding-top: 0;
}

.footer__accces__text {
  flex-basis: 46%;
}

.footer__accces__img {
  flex-basis: 53%;
  text-align: right;
}

.footer__accces__text p {
  font-size: 17.25px;
}

.footer__accces__img li {
  display: inline-block;
  margin-left: 9px;
  vector-align: middle;
}

.footer__accces__img li img {
  border-radius: 18px;
  width: calc(520px / 2.15);
}

@media only screen and (max-width:520px) {
  .footer__accces {
    padding-top: 0;
  }

  .footer__accces__container {
    padding-top: 160px;
  }

  .footer__accces__text {
    flex-basis: 100%;
    margin:45px auto 18px;
  }

  .footer__accces__img {
    flex-basis: 100%;
    text-align: center;
  }

  .footer__accces__text p {
    font-size: calc(17.25px / 1.175);
  }

  .footer__accces__img  {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: top;
  }

  .footer__accces__img li {
    margin:9px auto;
    flex-basis: 49%;
  }

  .footer__accces__img li img {
    border-radius: calc(18px / 1.5);
    width: 100%;
    margin: auto;
  }
}


/*footer__copyright*/
.footer__copyright {
  text-align: center;
  color: #909090;
  font-size: 14px;
  line-height: 2;
  margin: 18px auto auto;
  padding-top: 18px;
  padding-bottom:45px;
  margin-bottom: -36px;
}

.footer__copyright address {
  font-style: normal;
  color: #9c9c9c;
}

@media only screen and (max-width:520px) {
  .footer__copyright {
    font-size: calc(14px / 1.1);
    margin: calc(18px / 1) auto auto;
    padding-top: calc(18px /2);
    padding-bottom:calc(45px / 1.5);
    margin-bottom: calc(-36px /2);
  }

}

