@charset "utf-8";

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

Common Setting

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

:root {
  /*赤
  --base-color:#af503a;
  */
  /*青*/
  --base-color:#24586d;;
}

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: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-style: normal;
}

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

/*font*/
.en {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}


/*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%;
}

/*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:767px) {
  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:767px) {
  .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="button"], 
input[type="button"], 
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;
  border: none;
  outline:none;
  appearance:none;
  font-weight: 600;
  border-radius:18px;
}

/*btn__round*/
.btn.btn__round {
  border-radius:200px;
}

/*btn__primary*/
.btn__primary {
  background: var(--base-color);
  text-align: center;
  color: #fff;
  position: relative;
  padding:18px ;
  border: none;
}

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

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

}


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

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%;
  max-width: 1980px;
  /*
  min-width: 1180px;
  */
  color: #272525;
  font-weight: normal;
  font-size:18px;
  line-height:2;
  padding:0;
  margin:auto;
}

#wrapper {
  /*
  overflow-x: hidden;
  */
}

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

.container__wide {
  max-width:1280px;
  margin:auto;
}

.container  {
  max-width:1180px;
  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;
}

.container__xxxxxnarrow {
  max-width:580px;
  margin:auto;
}

@media only screen and (max-width:767px) {
  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,
  .container__xxxxxnarrow {
    width:100%;
    max-width:100%;
    padding-left:1em;
    padding-right:1em;
    box-sizing:border-box
  }

  .container__wide .container ,
  .container__wide .container__middle ,
  .container__wide .container__narrow ,
  .container__wide .container__xnarrow ,
  .container__wide .container__xxnarrow ,
  .container__wide .container__xxxnarrow ,
  .container__wide .container__xxxxnarrow ,
  .container__wide .container__xxxxxnarrow {
    padding-left: 0;
    padding-right: 0;
  }
}

/*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;
  }
}

/*main*/
.main {
  background: #fff;
}

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

Header Setting

---------------------------------------------------------- */
header {
  position: relative;
}

/*topbar*/
.topbar__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding:31.5px 0 ;
}

.gnav__pc {
  flex-basis:85%;
  text-align: left;
}

.topbar__sns {
  flex-basis: 15%;
}

@media only screen and (max-width:767px) {
  /*topbar*/
  .topbar__container {
    padding:0 ;
  }

  .gnav__pc {
    flex-basis:100%;
  }

  .topbar__sns {
    display: none;
  }

}


/*gnav__pc*/
.gnav__pc__list  {
  position: relative;
}

.gnav__pc__list li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 72px;
}

  .gnav__pc__list li:nth-last-child(1) {
    margin-right: 0;
  }


.gnav__pc__list li a {
  text-decoration: none;
  display: block;
  font-size: 20px;
  font-weight: bold;
}

@media only screen and (min-width:521px) and (max-width:960px) {
  .gnav__pc {
    flex-basis:75%;
    text-align: left;
  }

  .topbar__sns {
    flex-basis: 25%;
  }

  .gnav__pc__list li {
    margin-right:9px;
  }

  .gnav__pc__list li a {
    font-size: 16px;
  }
}

@media only screen and (min-width:961px) and (max-width:1180px) {
  .gnav__pc {
    flex-basis:75%;
    text-align: left;
  }

  .topbar__sns {
    flex-basis: 25%;
  }

  .gnav__pc__list li {
    margin-right:27px;
  }

  .gnav__pc__list li a {
    font-size: 18px;
  }
}

/*topbar__sns__list*/
.topbar__sns__list {
  margin-top: -4.5px;
  text-align: right;
}

.topbar__sns__list li {
  display: inline-block;
  vertical-align: middle;
  margin-left: 18px;
}

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

.topbar__sns__list li img {
  height: calc(43px / 2);
}


nav.gnav__sp {
  display: none
}

@media only screen and (max-width:767px) {
  .gnav__pc {
    display: none;
  }

  nav.gnav__sp  {
    display:block;
    position:fixed;
    top:0;
    right:-65%;
    bottom:0;
    width:65%;
    overflow-x:hidden;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    transition:all .5s;
    opacity:0;
    background:var(--base-color);
    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:9px 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:calc(17px / 1.17);
    font-weight: 500;
    padding:20.25px 9px;
    text-decoration:none;
    transition-duration:0.2s;
    border-bottom:1px solid rgba(255,255,255,0.5);
  }

  /*toggle__btn*/
  .toggle__btn {
    display:block;
    position:fixed;
    top:27px;
    right:18px;
    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:var(--base-color);
    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)
  }
}


@media only screen and (max-width:767px) {
  .gnav__sp__sns__list  {
    margin: 18px auto;
    text-align: center;
  }

  .gnav__sp__sns__list li {
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;
    margin-right: 12px;
  }

  .gnav__sp__sns__list li img {
    height: calc(43px / 1.2345);
  }
}


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

Section Setting

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

.color1 {
  color: #fff;
}

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

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

}

/*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__container*/
.section__container {
  padding-top: 45px;
  padding-bottom: 45px;
}

.section__container .wp-block-heading {
  margin-bottom: 0.2em;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: bold;
}

.section__container p {
  margin-bottom: 1em;
}

@media only screen and (max-width:767px) {
   .section__container {
    padding-top:calc(45px / 1.5);
    padding-bottom: calc(45px / 1.5);
  }
}

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

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

.section__title span {
  display: block;
  text-align: center;
}

.section__title span.ja {
  font-size:40px;
  line-height: normal;
  font-weight:700;
}

  .section__title span.ja.small {
    font-size:36px;
  }

@media only screen and (max-width:767px) {
  .section__title span.ja {
    font-size:calc(40px / 1.4);
  }

  .section__title span.ja.small {
    font-size:calc(36px / 1.36);
  }
}



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

Mainvisual Setting

---------------------------------------------------------- */
/*mainvisual*/
.mainvisual {
  position: relative;
  background-color: #fff;
  background-image: url(../img/mainvisual__bg__pc.png);
  background-position: top center;
  background-repeat: no-repeat;
  height: 1000px;
  padding: 90px 0;
  z-index: 123;
}

.mainvisual__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  margin: auto;
}

.mainvisual__title  {
  flex-basis: 45%;
  text-align: center;
} 

.mainvisual__img  {
  flex-basis: 55%;
  text-align: left;
  margin-top: 0;
}

.mainvisual__title img {
  width: calc(373px /2);
} 

.mainvisual__img img {
  width: calc(1074px /2);
}

@media only screen and (max-width:767px) {
  .mainvisual {
    height: calc(1000px / 1.75);
    padding: calc(90px / 1.5) 0;
    background-image: url(../img/mainvisual__bg__sp.png);
    background-size: cover; 
  }

  .mainvisual__title  {
    flex-basis: 35%;
  } 

  .mainvisual__img  {
    flex-basis: 65%;
  }

  .mainvisual__title img {
    width: calc(373px / 4);
  } 

  .mainvisual__img img {
    width: calc(1074px / 4);
  }

}

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

Profile Setting

---------------------------------------------------------- */
/*profile*/
.profile {
  position: relative;
  background-color: #fff;
  background-image: url(../img/profile__bg__pc.png);
  background-position: center top;
  background-repeat: repeat-y;
  padding-top: calc(90px + 72px);
  padding-bottom: calc(90px + 45px);
}

.profile__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.profile__img {
  flex-basis: 150px;
  margin-top: 9px;
}

.profile__text {
  flex-basis:calc(100% - 186px);
}

.profile__title {
  position: relative;
  text-align: left;
  margin-bottom: 9px;
}

.profile__title span.ja {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.6789;
  text-align: left;
  letter-spacing: 0.15em;
  font-size: 18px;
}

.profile__title span.ja.mincho {
  font-size: 42.5px;
  margin-right: 18px;
  letter-spacing: 0.005em;
  font-weight: bold;
}

@media only screen and (max-width:767px) {
  .profile {
    padding-top: calc(90px / 1.5);
    padding-bottom: calc(90px / 1.5);
    background-image: url(../img/profile__bg__sp.png);
    background-size: cover;
  }

  .profile__img {
    flex-basis: 100%;
    text-align: center;
    margin: auto;
  }

  .profile__text {
    flex-basis: 100%;
  }

  .profile__img img {
    max-width: 198px;
    text-align: center;
    margin: auto auto 18px;
  }

  .profile__title {
    margin: auto;
    margin-bottom:calc(9px * 2);
    text-align: center;
  }

  .profile__title span.ja {
    display: block;
    text-align: center;
    letter-spacing: calc(0.15em / 1.5);
    font-size: calc(18px / 1.18);
  }

  .profile__title span.ja.mincho {
    display: block;
    text-align: center;
    font-size:  calc(42.5px / 1.425);
    margin-right: auto;
    letter-spacing:calc(0.005em / 1.5);
  }
}


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

Recommend Setting

---------------------------------------------------------- */
/*recommend*/
.recommend {
  position: relative;
  padding-top: 0;
}

.recommend__head {
  position: relative;
  background-color: var(--base-color);
  background-image: url(../img/recommend__bg__pc.png);
  background-position: top center;
  background-repeat: no-repeat;
  padding-top: calc(90px + 18px);
  padding-bottom: calc(90px + 90px + 90px);
}

.recommend__head .section__title span {
  color: #fff;
}

.recommend__body {
  position: relative;
  margin-top:calc(-90px - 90px - 45px);
}

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

.recommend__list li {
  flex-basis: 30%;
  background-color: #fff;
  margin: 0 1.5%
}
/*
.recommend__list li a {
  display:block;
  cursor: pointer;
  text-decoration: none;
}
*/
.recommend__list li img {
  margin-bottom: 13.5px;
}

.recommend__list li span.ja {
  display:block;
  line-height: 1.456789;
}

.recommend__list li span.ja.date {
  color: rgba(39, 37, 37, 0.50);
  font-size: 15px;
}

.recommend__list li span.ja.title {
  font-size: 20px;
  font-weight: bold;
}

@media only screen and (max-width:767px) {
  .recommend__head {
    background-image: url(../img/recommend__bg__sp.png);
    background-size: cover;
    padding-top: calc(90px / 1.5);
    padding-bottom: calc(90px / 1);
  }

  .recommend__body {
    margin-top:-72px;
  }

  .recommend__list li {
    padding-top: 36px;
  }

  .recommend__list li {
    flex-basis: 100%;
    margin: 0 auto 36px;
    text-align: center;
    padding-left: 36px;
    padding-right: 36px
  }

  .recommend__list li img {
    max-width: 256px;
    margin: auto;
    margin-bottom: calc(13.5px / 1.5);
    text-align: center;
  }

  .recommend__list li span {
    text-align: left!important;
  }

  .recommend__list li span.ja.date {
    font-size: calc(15px/ 1.15)
  }

  .recommend__list li span.ja.title {
    font-size: calc(20px/ 1.2)
  }

}


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

Information Setting

---------------------------------------------------------- */
/*information*/
.information {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}

.information__head {
  position: relative;
  background-color: #a58e4c;
  background-image: url(../img/information__bg__pc.png);
  background-position: top center;
  background-repeat: no-repeat;
  padding-top: 90px;
  padding-bottom: calc(90px + 90px + 90px);
}

.information__head .section__title span {
  color: #fff;
}

.information__body {
  position: relative;
  background-color: #fff;
  padding:72px 45px;
  margin-top:calc(-90px - 90px - 45px);
}

.information__block {
  position: relative;
  margin-bottom: 45px;
}

  .information__block:nth-last-child(1) {
    margin-bottom: 0
  }

.information__title {
  text-align: center;
  margin: auto;
  border: 2px solid var(--base-color);
  box-sizing: border-box;
  padding:22.5px 27px ;
}

.information__title span {
  display: block;
  color: var(--base-color);
  line-height: 1.3456789;
  text-align: center;
  font-size:27px ;
  font-weight: 600;
}


@media only screen and (max-width:767px) {
  .information__head {
    background-image: url(../img/information__bg__sp.png);
    background-size: cover;
    padding-top: calc(90px / 1.5);
    padding-bottom: calc(90px / 1);
  }

  .information__head .section__title span {
    color: #fff;
  }

  .information__body {
    padding:18px;
    margin-top:-72px;
  }

  .information__block {
    margin-bottom: calc(45px / 1.0);
  }

  .information__title {
    padding:calc(22.5px / 1.5) calc(27px / 1.5);
    margin-top: 18px;
  }

  .information__title span {
    font-size:calc(27px / 1.27);
  }

}

/*information__detail*/
.information__detail {
  border-bottom: 2px solid var(--base-color);;
}

  .information__detail:nth-last-child(1) {
    border-bottom:none;
  }

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

.information__month__title span {
  display: inline-block;
  margin: 18px auto;
  width: 198px;
  font-size: 24px;
  border-radius: 200px;
  background: var(--base-color);
  text-align: center;
  color: #fff;
  position: relative;
  padding:9px ;
  border: none;
}

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

.information__img {
  flex-basis: 260px;
}

.information__text {
  text-align: left;
  padding: 36px 0;
  flex-basis: calc(100% - 294px);
}

.information__img img {
  width: 100%;
  object-position: 0 0;
  object-fit: cover;
  height: 225px;
}

.information__subtitle {
  text-align: left;
  position: relative;
  margin-bottom: 13.5px;
}

.information__subtitle span {
  display: block;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
}

.information__text dl  {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 9px 0;
}

.information__text dl dt {
  flex-basis: 50px
}

.information__text dl dd {
  flex-basis: calc(100% - 68px);
}

.information__text dl dt span.ja {
  display: block;
  text-align: center;
  margin: auto;
  font-size: 15px;
  background-color: #333;
  padding-top: 4.5px 9px;
  line-height: 2;
  color: #fff
}

.information__detail .noinfo {
  text-align: center;
  margin: 27px  auto;
}

@media only screen and (max-width:767px) {
  .information__month__title {
    margin: auto auto calc(18px / 1.5);
  }

  .information__month__title span {
    width: 40%;
    font-size: calc(24px / 1.34);
    padding:calc(9px / 2);
  }

  .information__img {
    flex-basis: 100%;
    padding-top: 36px;
    margin:auto;
    text-align: center;
  }

  .information__img img {
    width: 100%;
    object-fit: inherit;
    height:auto;
  }

  .information__text {
    padding: calc(36px / 1.5) 0;
    flex-basis: 100%;
  }

  .information__img img {
    max-width: 256px;
    text-align: center;
    margin: auto;
  }

  .information__subtitle {
    margin-bottom: calc(13.5px / 1.5)
  }

  .information__subtitle span {
    font-size: calc(20px / 1.2)
  }

  .information__text dl  {
    margin:0 0 9px;
    align-items: top;
  }

  .information__text dl dt {
    flex-basis: 45px
  }

  .information__text dl dd {
    flex-basis:calc(100% - 54px);
    line-height: 1.56789;
  }

  .information__text dl dt span.ja {
    max-width: 100px;
    display: inline-block;
    margin-left: 0;
    font-size: calc(15px / 1.25);
    padding: calc(4.5px / 2.5) 9px;
  }

  .information__detail .noinfo {
    margin: calc(27px / 1.5) auto;
  }
}

/*swiper*/
.swiper,
.swiper-wrapper,
.swiper-slide {
  margin: 0 auto;
  padding: 0;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
}

.swiper-button-prev,
.swiper-button-next {
  top: 54px!important;
}

.swiper [class^="swiper-button-"]::after{
  font-size:27px!important;
  color: #333!important;
}

@media only screen and (max-width:767px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: calc(54px / 1.25)!important;
  }

  .swiper [class^="swiper-button-"]::after{
    font-size:calc(27px / 1.27)!important;
  }
}


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

Instagram Setting

---------------------------------------------------------- */
/*instagram*/
.instagram {
  position: relative;
  background-color: #fff;
  background-image: url(../img/instagram__bg__pc.png);
  background-position: top center;
  background-repeat: no-repeat;
  padding-top: 72px;
  padding-bottom:72px
}

.instagram__feed__container {
  padding: 54px;
  margin-top: 18px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.750);
}

.instagram .section__title img{
  width: calc(59px / 2);
  margin-right: 4.5px;
  margin-top: -7.25px;
}

@media only screen and (max-width:767px) {
  .instagram {
    padding-top:calc(72px / 1.5);
    padding-bottom:calc(72px / 1.5);
    background-image: url(../img/instagram__bg__sp.png);
    background-size:cover;
  }

  .instagram__feed__container {
    padding: calc(54px / 1.5) 0;
    margin-top: 18px;
  }

  .instagram .section__title img{
    width: calc(59px / 2);
    margin-right: calc(4.5px / 1.5);
    margin-top: -4.25px;
  }

}

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

Contact Setting

---------------------------------------------------------- */
.contact {
  position: relative;
  background-color: #f5f3f0;
  background-image: url(../img/contact__bg__pc.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 90px;
  padding-bottom: 90px;
}

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

.contact .news {
  flex-basis: 45%;
  margin-right:2.5%;
}

.contact .form {
  flex-basis: 52.5%
}

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

.contact__title span.ja {
  display: block;
  text-align: center;
  font-size: 27px;
  font-weight: bold;
}

.contact__title img {
  width: 22px;
  margin-right: 4.5px;
  margin-top: -4.5px;
}

.news__container {
  box-sizing: border-box;
}

.form__container {
  background-color: #fff;
  border-radius: 18px;
  box-sizing: border-box;
  border: 1px solid #cfd9de;
  padding: 36px 72px
}

.form__leed {
  text-align: center;
  margin: auto auto 18px ;
  padding: 4.5px 0 
}

@media only screen and (max-width:767px) {
  .contact {
    background-image: url(../img/contact__bg__sp.png);
    background-size: cover;
    padding-top:calc(90px /1.5);
    padding-bottom:calc(90px /1.5);
  }

  .contact .news {
    flex-basis: 100%;
    margin-bottom: 36px;
    margin-right: auto;
    margin-left: auto;
  }

  .contact .form {
    flex-basis: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .contact__title {
    margin: auto auto calc(18px / 9);
  }

  .contact__title span.ja {
    font-size: calc(27px / 1.27);
  }

  .contact__title img {
    width: 22px;
    margin-right: calc(4.5px / 2);
    margin-top: -2.25px;
  }

  .form__container {
    border-radius: calc(18px /1.5);
    padding: calc(36px /1.5) 18px
  }

  .form__leed {
    margin: auto auto calc(18px /1.5) ;
    padding: calc(4.5px / 2) 0 
  }
}


/*wpc7*/
.form__list {
  margin-top: 18px;
}

.form__list dl {
  margin:13.5px 0;
}

.form__list dt {
  font-weight: bold;
}

.wpcf7 input[type=text],
.wpcf7 input[type=number],
.wpcf7 input[type=email],
.wpcf7 input[type=password],
.wpcf7 input[type=date],
.wpcf7 input[type=url],
.wpcf7 input[type=tel],
.wpcf7 textarea {
  appearance:none;
  outline:none;
  border-radius: 9px;
  border:none;
  padding :18px;
  background-color: rgba(34, 34, 34, 0.1);
  box-sizing:border-box;
  width: 100%;
  font-size: 18px;
}

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

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

.wpcf7 input[type=radio],
.wpcf7 input[type=checkbox] {
  transform:scale(1.5);
  margin-right: 9px;
}

@media only screen and (max-width:767px) {
  .form__list {
    margin-top: calc(18px /1.5);
  }

  .form__list dl {
    margin:calc(13.5px /1.5) 0;
  }

  .wpcf7 input[type=text],
  .wpcf7 input[type=number],
  .wpcf7 input[type=email],
  .wpcf7 input[type=password],
  .wpcf7 input[type=date],
  .wpcf7 input[type=url],
  .wpcf7 input[type=tel],
  .wpcf7 textarea {
    width: 100%;
    padding : calc(18px /1.25);
    font-size: calc(18px /1.18);
  }

  .wpcf7 input[type=radio],
  .wpcf7 input[type=checkbox] {
    transform:scale(1.5);
    margin-right:calc(9px /1.25);
  }

}

/*req*/
.wpcf7 .req {
  font-size: 14px;
  font-weight: bold;
  color: var(--base-color);
  margin-left: 4.5px;
}

@media only screen and (max-width:767px) {
  .wpcf7 .req {
    font-size: calc(14px /1.1);
    margin-left: calc(4.5px /1.5);
  }

}

/*form__submit*/
.form__submit input[type=submit] {
  margin:18px auto auto;
  width: 220px;
  font-size: 20px;
  padding: 18px ;
  text-align: center;
}

@media only screen and (max-width:767px) {
  .form__submit input[type=submit] {
    margin:calc(18px /1.5) auto auto;
    width: 100%;
    font-size: calc(20px /1);
    padding: calc(18px /1.15) ;
  }

}


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

Error404 Setting

---------------------------------------------------------- */
/*error404*/
.error404 .entry__btn a {
  display: block;
  text-decoration: none;
  padding-bottom: 18px;
  margin: 36px auto 18px;
  max-width: 256px;
}

@media only screen and (max-width:767px) {
  .error404 .entry__btn a {
    display: block;
    text-decoration: none;
    padding-bottom: calc(18px / 1.5);
    margin: calc(36px / 1) auto calc(18px / 1.5);
    max-width: 100%;
  }

}

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

Thanks Setting

---------------------------------------------------------- */
/*thanks*/
.thanks .entry__btn a {
  display: block;
  text-decoration: none;
  padding-bottom: 18px;
  margin: 36px auto 18px;
  max-width: 256px;
}

@media only screen and (max-width:767px) {
  .thanks .entry__btn a {
    display: block;
    text-decoration: none;
    padding-bottom: calc(18px / 1.5);
    margin: calc(36px / 1) auto calc(18px / 1.5);
    max-width: 100%;
  }

}

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

Footer Setting

---------------------------------------------------------- */
/*footer*/
.footer {
  position: relative;
  padding: 36px 0;
}

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

.footer__sns {
  text-align: left;
  flex-basis: 50%;
}

.footer__text {
  text-align: right;
  flex-basis: 50%;
}

.footer__sns__list li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 24px;
}

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

.footer__sns__list li img {
  height: calc(43px / 2);
}

address.copyright {
  font-style: normal;
  font-size: 14px;
}


@media only screen and (max-width:767px) {
  .footer {
    padding: calc(36px / 1) 0;
  }

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

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

  .footer__sns__list  {
    margin-top: 9px
  }

  .footer__sns__list li {
    margin-left: 12px;
    margin-right: 12px;
  }

  .footer__sns__list li img {
    height: calc(43px / 1.345);
  }

  address.copyright {
    margin-top: 27px;
    font-size: calc(14px / 1.14);
  }

}
