@charset "UTF-8";
/* fonts
-------------------------------------------------- */
/*Harenosora はれのそら明朝*/
@font-face {
  font-family: "Harenosora";
  font-display: swap;
  src: url("../fonts/Harenosora.woff") format("woff"), url("../fonts/Harenosora.eot") format("eot"), url("../fonts/Harenosora.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.f-harenosora {
  font-family: "Harenosora", serif;
}

.f-en {
  font-family: "Noto Serif", serif;
}

/* config
-------------------------------------------------- */
/* base
-------------------------------------------------- */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin: auto;
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

*,
:after,
:before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  /*
    margin:0; padding: 0;
    line-height: 1; vertical-align: top;
    font-family: YuMincho, 'Yu Mincho',"ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  */
  /*/*
    font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS P Gothic", Verdana, Arial, Helvetica, sans-serif;
  */
  /*

    color:#333333;
    background: #fff;
  */
  position: relative;
  margin: 0;
  background-color: #fff;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  overflow-x: hidden;
}

.header img,
.footer img,
.home img,
.page img,
.hum img {
  width: 100%;
  height: auto;
}

/* img */
img[class*=wp-image-],
img[class*=attachment-] {
  height: auto;
  max-width: 100%;
}

img.aligncenter {
  display: block;
  margin: 0 auto;
}

img.alignright {
  max-width: 50%;
  float: right;
  padding: 4px;
  margin: 0 0 40px 20px;
}

img.alignleft {
  max-width: 50%;
  float: left;
  margin: 0 20px 40px 0;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:hover img {
  opacity: 0.7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

article {
  padding-bottom: 50px;
  min-height: 46vh;
  /*letter-spacing: 0.05em;*/
}

.home article {
  padding-bottom: 0;
}

article a {
  color: #000;
}

article a:hover {
  text-decoration: none;
}

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

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

#pagetop {
  position: fixed;
  right: 3%;
  bottom: 3%;
  z-index: 11;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

/*.wrapper { position: relative; width:980px; margin:0 auto;} */
.wrapper {
  position: relative;
  margin: 0 auto;
  width: calc(100% - 80px);
  max-width: 980px;
}
@media only screen and (max-width: 767px) {
  .wrapper {
    width: calc(100% - 30px);
  }
}

@media (max-width: 767px) {
  #pagetop {
    text-align: right;
  }
  #pagetop img {
    width: 80%;
    height: auto;
  }
  article {
    padding-bottom: 30px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* common
-------------------------------------------------- */
.header {
  position: relative;
  -webkit-box-shadow: 0px 1px 3px rgba(178, 178, 178, 0.8);
  -ms-box-shadow: 0px 1px 3px rgba(178, 178, 178, 0.8);
  box-shadow: 0px 1px 3px rgba(178, 178, 178, 0.8);
  z-index: 11;
  border-top: 3px solid #14ae67;
  background: #fff;
}
@media (max-width: 767px) {
  .header {
    height: 70px;
    border-top: none;
  }
}

.h-inner {
  margin: 20px auto 35px;
  width: calc(100% - 80px);
  max-width: 980px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 767px) {
  .h-inner {
    position: absolute;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    height: 100%;
    border-top: 3px solid #14ae67;
    background: #fff;
    z-index: 2;
  }
}

.header .logo {
  width: 38%;
  max-width: 334px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .header .logo {
    padding: 15px 0 17px 1.6%;
    width: 60%;
  }
}
.header .logo a {
  display: block;
}
.header .logo a:hover img {
  opacity: 1;
  -webkit-transition: 0;
  transition: 0;
}

.header #h-data {
  padding-top: 10px;
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .header #h-data {
    display: none;
  }
}
.header #h-data .txt {
  margin-bottom: 7px;
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  text-align: right;
  line-height: 1.4;
}
.header #h-data #h-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 15px;
}
.header #h-data #h-nav ul {
  width: calc(100% - 244px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 15px;
}
.header #h-data #h-nav ul li a {
  padding-left: 15px;
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  font-weight: 500;
  text-decoration: none;
  background: url(../img/common/arrow.png) no-repeat 0 center/8px 7px;
}
.header #h-data #h-nav ul li a:hover {
  text-decoration: underline;
}
.header #h-data #h-nav .h_tel {
  width: 44%;
  max-width: 244px;
}

/*
.hum {
  @media (min-width: $breakpoint_tablet_mini) {
    display:none;
  }
}
*/
.menu_button {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 17px;
  top: 20px;
  right: 40px;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  z-index: 99999;
}
@media (min-width: 768px) {
  .menu_button {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .menu_button {
    right: 15px;
  }
}
.menu_button span {
  display: block;
  width: 30px;
  height: 3px;
  background: #017386;
}
.menu_button span + span {
  margin-top: 4px;
}
.menu_button.close {
  right: 52px;
}
@media only screen and (max-width: 767px) {
  .menu_button.close {
    right: 15px;
  }
}
.menu_button.close span:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  top: -1px;
}
.menu_button.close span:nth-of-type(2) {
  display: none;
}
.menu_button.close span:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menu_button.close span + span {
  margin-top: -3.6px;
}
.menu_button::after {
  position: absolute;
  content: "MENU";
  width: 50px;
  color: #017386;
  font-size: 0.9rem;
  bottom: -18px;
  left: 0;
}

/*--- gnav ---*/
/*
.gnav { clear: both; width: 100%; padding: 0; }
.gnav ul { width:980px; height: 70px; margin: 0 auto; display:flex;}
.gnav ul li { position: relative; height: 52px; background-size: 100% auto !important; z-index: 101;}
.gnav ul li a, 
.gnav ul li span { text-indent: -9999em;}
.gnav a { display: block; width: 100%; height: 100%; color:#fff; text-decoration: none;}
.gnav a:hover { opacity: 0.25; transition: 0.3s;}
.gnav ul li:nth-child(1), .gnav ul li:nth-child(4) { width: 162px;}
.gnav ul li:nth-child(2), .gnav ul li:nth-child(3) { width: 163px;}
.gnav ul li:nth-child(5), .gnav ul li:nth-child(6) { width: 165px;}
.gnav ul li:nth-child(1) { background: url(../img/common/gnav01.png) left top no-repeat;}
.gnav ul li:nth-child(2) { background: url(../img/common/gnav02.png) left top no-repeat;}
.gnav ul li:nth-child(3) { background: url(../img/common/gnav03.png) left top no-repeat;}
.gnav ul li:nth-child(4) { background: url(../img/common/gnav04.png) left top no-repeat;}
.gnav ul li:nth-child(5) { background: url(../img/common/gnav05.png) left top no-repeat;}
.gnav ul li:nth-child(6) { background: url(../img/common/gnav06.png) left top no-repeat;}

.gnav ul li:after {
  content: "";
  display: block;
  width:95px; height:2px;
  margin:0 auto;
  background: #fff;
}
.gnav ul li:hover:after { background: $secondary;}
*/
.gnav {
  margin: 0 auto;
  padding: 0;
  width: calc(100% - 80px);
  max-width: 980px;
}
@media only screen and (max-width: 767px) {
  .gnav {
    position: absolute;
    width: 100%;
    height: calc(100vh - 70px);
    top: 70px;
    left: 0;
    z-index: 1;
    background: #017386;
    -webkit-transform: translateY(-120%);
            transform: translateY(-120%);
    -webkit-transition: all 1s;
    transition: all 1s;
  }
}
@media only screen and (max-width: 767px) {
  .gnav.active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.gnav ul {
  width: 100%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .gnav ul {
    height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .gnav ul {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.gnav ul li {
  position: relative;
  height: 52px;
  background-size: 100% auto !important;
  z-index: 101;
}
@media (min-width: 768px) {
  .gnav ul li {
    width: 16.6666666667%;
  }
}
@media (width: 768px) {
  .gnav ul li {
    height: 32px;
  }
}
.gnav ul li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 18px;
  top: 10px;
  left: 0;
  background: #666;
}
@media (max-width: 768px) {
  .gnav ul li::before {
    top: 5px;
  }
}
.gnav ul li:last-of-type::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 18px;
  top: 10px;
  right: 0;
  background: #666;
}
@media (max-width: 768px) {
  .gnav ul li:last-of-type::after {
    top: 5px;
  }
}
.gnav ul li a {
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #666;
  font-family: "Harenosora", serif;
  font-size: clamp(1.1rem, 1.5vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  display: block;
}
@media (max-width: 767px) {
  .gnav ul li a {
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
    line-height: 46px;
    border-bottom: 1px solid #fff;
  }
}
.gnav ul li a:hover {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.gnav ul li a::before {
  position: absolute;
  content: "";
  width: 95px;
  height: 2px;
  background: #fff;
  display: block;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .gnav ul li a::before {
    display: none;
  }
}
.gnav ul li a:hover::before {
  background: #14ae67;
}
.gnav ul li a::after {
  position: absolute;
  width: 100%;
  bottom: 14px;
  left: 0;
  content: attr(data-desc);
  color: #999;
  font-family: "Noto Serif", serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-align: center;
}
@media (max-width: 768px) {
  .gnav ul li a::after {
    bottom: 6px;
    font-size: 0.8rem;
  }
}
@media (max-width: 767px) {
  .gnav ul li a::after {
    display: none;
  }
}
.gnav ul.sp {
  display: none;
}
@media (max-width: 767px) {
  .gnav ul.sp {
    height: auto;
    display: block;
  }
}

/*--- footer ---*/
.footer {
  padding: 50px 0;
}

.footer {
  clear: both;
  background: #017386;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer ul {
  margin-bottom: 30px;
  text-align: center;
}

.footer ul li {
  display: inline-block;
  font-size: 14px;
  line-height: 1.6;
}

.footer ul li a {
  padding: 0 0.5em 0 0.8em;
  border-left: 1px solid #fff;
  font-size: 1.4rem;
}

.footer ul li:nth-child(1) a {
  border: none;
}

.footer ul li a:hover {
  text-decoration: underline;
}

.footer .copyright {
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #fff;
}

/*--- table ---*/
.tbl01,
.tbl02 {
  width: 100%;
  border: 1px solid #ccc;
  border-bottom: none;
  margin-bottom: 30px;
}

.tbl02 {
  margin-top: 30px;
  margin-bottom: 45px;
}

.tbl01 th,
.tbl02 th {
  padding: 16px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: #ddcdcd;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

.tbl01 th {
  width: 50%;
}

.tbl02 th {
  text-align: right;
  width: 31%;
}

.tbl01 td {
  padding: 16px 30px 16px;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  vertical-align: middle;
}

.tbl02 td {
  padding: 16px 30px 16px;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  vertical-align: middle;
}

.tbl01 td:last-child,
.tbl02 td:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  /*
    .header .wrapper { position:relative; height: 73px;}
  */
  /*
    .h-inner { margin:0 auto 10px; }
    .header .logo { float: left; width: 70.6%; padding:15px 0 17px 1.6%; }
    .header #h-data { display: none;}

    .hum { position:absolute; right: 2.5%; top:8px; height:48px; width:48px; display:block;}
    .hum span { display: block; height:48px; width:48px; background: url(../img/common/sp_btn_menu_01.png) left top no-repeat; transition: 0.3s;}
    .hum span.active { display: block; height:48px; width:48px; background: url(../img/common/sp_btn_menu_02.png) left top no-repeat; transition: 0.3s;}

    .gnav { display:none; padding: 0; position: absolute; top:68px; left: 0; background: #c6ebfb; z-index: 10101;}
    .gnav ul { width:100%; height:100vh; display:block;}
    .gnav ul li { width:100% !important; background:none !important;}
    .gnav ul li a { display: block; height: 40px; color:#333; line-height: 40px; text-indent:0; text-align: center; border-bottom: 1px solid #fff; z-index: 1001;}
    .gnav ul li:after {
      content: none;
    }
  */
  .footer {
    padding: 30px 4%;
  }
  .fnav li {
    margin-bottom: 15px;
    font-size: 12px;
  }
  /*--- table ---*/
  .tbl01, .tbl02 {
    width: 100%;
    border: 1px solid #dddddd;
    border-bottom: none;
    font-size: 12px;
    margin-bottom: 15px;
  }
  .tbl01 th,
  .tbl02 th {
    width: 33.333%;
    padding: 7px 7px;
    border-right: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    background: #ddcdcd;
    font-weight: normal;
    text-align: left;
    vertical-align: middle;
  }
  .tbl02 th {
    text-align: center;
  }
  .tbl01 td {
    padding: 7px 7px;
    border-bottom: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    vertical-align: middle;
  }
  .tbl02 td {
    padding: 16px 10px 16px;
    border-bottom: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    vertical-align: middle;
  }
  .tbl01 td:last-child,
  .tbl02 td:last-child {
    border-right: none;
  }
  /*  .tbl01 th,.tbl01 td{ display: block; width: 100%;}
    .tbl01 th{ border-right: none;}*/
  .fl, .fr {
    float: none;
    width: 100%;
  }
}
.tbl01 .tbl_header th,
.tbl02 .tbl_header th {
  background: #e2f1f5;
}

.tbl01 td,
.tbl02 td {
  background: #fff;
}

.tbl01 tbody th {
  background: #fbfafa;
}

/*  btn
-------------------------------------------------- */
a.btn01 {
  display: block;
  padding: 5px 30px 5px 30px;
  font-size: 14px;
  background: #14ae67 url(../img/common/arrow_white.png) 92% 45% no-repeat;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  border-radius: 30px;
  line-height: 2;
}

a.btn01:hover {
  /*
  background: #027221 url(../img/common/arrow_white.png) 92% 45% no-repeat;
  */
  opacity: 0.7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

a.btn02 {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4px 40px 2px;
  margin-top: 15px;
  line-height: 2;
  text-align: center;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  background: #14ae67 url(../img/common/arrow_white.png) 92% 45% no-repeat;
}
@media (max-width: 767px) {
  a.btn02 {
    font-size: 1.6rem;
  }
}

a.btn02:hover {
  /*
    background: #027221 url(../img/common/arrow_white.png) 92% 45% no-repeat;
  */
  opacity: 0.7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

a.btn03 {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 45px;
  margin-top: 15px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  background: #c6ebfb url(../img/common/arrow_white02.png) 85% 48% no-repeat;
}

a.btn03:hover {
  /*
  background: #027221 url(../img/common/arrow_white02.png) 85% 48% no-repeat;
  */
  opacity: 0.7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media (max-width: 767px) {
  a.btn_bl02 {
    display: block;
    width: 100%;
    height: auto;
    line-height: 50px;
    background: url(../img/common/bg_btn_contact.png) left top no-repeat;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    background-size: 100% auto;
  }
}
/*  top page
-------------------------------------------------- */
.mv--area {
  margin: 0 auto;
  /*background:url(../img/top/mv_bg.png) repeat 0 0; */
  width: calc(100% - 80px);
  max-width: 980px;
}
@media (max-width: 767px) {
  .mv--area {
    width: 100%;
  }
}

.mv--area--inner {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 480px;
  z-index: 1;
  top: 30px;
}
@media (max-width: 768px) {
  .mv--area--inner {
    height: 360px;
  }
}
@media (max-width: 767px) {
  .mv--area--inner {
    top: 10px;
    height: auto;
  }
}

.mv--area--inner .mv--text {
  position: absolute;
  width: 62%;
  max-width: 600px;
  top: 21%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .mv--area--inner .mv--text {
    width: 70%;
  }
}
.mv--area--inner .mv--text .mv--text--inner {
  position: relative;
  padding: 2vw 0 2.3vw;
}
@media (max-width: 768px) {
  .mv--area--inner .mv--text .mv--text--inner {
    padding: 2vw 0 4vw;
  }
}
.mv--area--inner .mv--text .mv--text--inner::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  background-color: #14ae67;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  top: 0;
  left: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .mv--area--inner .mv--text .mv--text--inner::before {
    width: 11px;
    height: 11px;
  }
}
.mv--area--inner .mv--text .mv--text--inner::after {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  background-color: #14ae67;
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  bottom: 0;
  right: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .mv--area--inner .mv--text .mv--text--inner::after {
    width: 11px;
    height: 11px;
  }
}
.mv--area--inner .mv--text .mv--text--inner .ttl {
  position: relative;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Harenosora", serif;
  font-size: clamp(1.4rem, 3.2vw, 3.5rem);
  letter-spacing: 0.025em;
  line-height: 1.37;
  text-align: center;
}
.mv--area--inner .mv--text .mv--text--inner .ttl::after {
  position: absolute;
  content: "";
  width: 48px;
  height: 3px;
  background: #017386;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .mv--area--inner .mv--text .mv--text--inner .ttl::after {
    width: 36px;
    height: 2px;
    bottom: -8px;
  }
}
@media (max-width: 767px) {
  .mv--area--inner .mv--text .mv--text--inner .ttl::after {
    width: 24px;
    height: 1px;
    bottom: -5px;
  }
}
.mv--area--inner .mv--text .mv--text--inner .txt {
  margin-top: 40px;
  font-family: "Harenosora", serif;
  font-size: clamp(0.8rem, 1.6vw, 1.8rem);
  letter-spacing: 0.08em;
  text-align: center;
}
@media (max-width: 768px) {
  .mv--area--inner .mv--text .mv--text--inner .txt {
    margin-top: 26px;
  }
}
@media (max-width: 767px) {
  .mv--area--inner .mv--text .mv--text--inner .txt {
    margin-top: 16px;
  }
}

.mv--slider {
  display: none;
  /* 左右ボタン */
  /*
    .slick-prev:before,
    .slick-next:before {
      position: absolute;
      content: '';
      width:40px;
      height: 40px;
      @media (max-width: $breakpoint_sp) {
        width: 20px;
        height: 20px;
      }
    }
    .slick-prev:before {
      background:url(../img/top/mv_prev.png) left top no-repeat;
    }
    .slick-next:before {
      background:url(../img/top/mv_next.png) left top no-repeat;
    }
    .slick-prev:hover,
    .slick-next:hover {
      opacity: .7;
    }
  */
}
.mv--slider.slick-initialized {
  display: block; /*slick-initializedが付与されたら表示*/
}
.mv--slider div img {
  width: 100%;
  height: auto;
}
.mv--slider .slick-prev,
.mv--slider .slick-next {
  width: 40px;
  height: 40px;
  top: calc(50% - 20px);
  z-index: 3;
}
@media (max-width: 767px) {
  .mv--slider .slick-prev,
  .mv--slider .slick-next {
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
  }
}
.mv--slider .slick-prev:hover,
.mv--slider .slick-next:hover {
  opacity: 0.7;
}
.mv--slider .slick-prev {
  left: -20px;
  background: url(../img/top/mv_prev.png) no-repeat left top/contain;
}
@media (max-width: 767px) {
  .mv--slider .slick-prev {
    left: 10px;
  }
}
.mv--slider .slick-next {
  right: -20px;
  background: url(../img/top/mv_next.png) no-repeat left top/contain;
}
@media (max-width: 767px) {
  .mv--slider .slick-next {
    right: 10px;
  }
}
.mv--slider .slick-dots {
  bottom: 14px;
}
@media (max-width: 767px) {
  .mv--slider .slick-dots {
    bottom: 8px;
  }
}
.mv--slider .slick-dots li {
  margin: 0 3px;
}
.mv--slider .slick-dots li button::before {
  font-size: 12px;
  color: #bebebe;
  opacity: 0.7;
}
.mv--slider .slick-dots li.slick-active button::before {
  color: #9acfee;
}

/*
.cycle-pager { 
  text-align: center; width: 100%; z-index: 300; position: absolute; bottom: 10px; overflow: hidden;
}
.cycle-pager span { 
  font-family: arial; margin: 0 6px; font-size: 50px; width: 16px; height: 16px; 
  display: inline-block; color: #fff; cursor: pointer; opacity: 0.7;
}
.cycle-pager span.cycle-pager-active { color: #361a0f;}
.cycle-pager > * { cursor: pointer;}

.cycle-arrows a { position: absolute; top: 50%; width: 40px; height: 40px; margin-top: -50px; opacity: 0.7; transition: 0.3s; z-index: 302; text-indent: -9999px;}
.cycle-arrows #prev { left: -20px; background:url(../img/top/mv_prev.png) left top no-repeat;}
.cycle-arrows #next { right: -20px; background:url(../img/top/mv_next.png) left top no-repeat;}
.cycle-arrows a:hover { opacity:1; transition: 0.3s;}
*/
.home .service--area {
  background: #ddf0f3;
}

.home .bnr--area {
  background: #fcfcfc;
}

.service--area,
.news--area,
.access--area {
  padding: 50px 0;
}

@media (min-width: 768px) {
  .home .access--area {
    padding: 50px 0 100px;
  }
}

.home .h2box {
  margin: 0 auto 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.home .h2box h2 {
  position: relative;
  padding-bottom: 15px;
  font-family: "Harenosora", serif;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}
.home .h2box h2::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 3px;
  background: #017386;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.home .h2box .en {
  padding-top: 10px;
  color: #000;
  font-family: "Noto Serif", serif;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  line-height: 1;
  text-align: center;
}
.home .btn_list {
  position: absolute;
  margin-top: 10px;
  width: 176px;
  text-align: right;
  top: 0px;
  right: 2.5%;
}
@media (max-width: 767px) {
  .home .btn_list {
    position: static;
    margin: 0 0 20px 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

/*
.news--area h2,
.service--area h2,
.home .access--area h2,
.home .route--area h2 { margin: 0 auto 40px; text-align: center;}

.service--area h2 img { width: 270px; height: auto;}
.news--area { position: relative;}
.news--area .btn_list { margin-top: 20px; text-align: right;}
.news--area .btn_list img { width:200px;}
.news--area.voice h2 img { width: 146px; height: auto;}
.news--area.blog h2 img { width: 84px; height: auto;}
.news--area.news h2 img { width: 116px; height: auto;}
.access--area h2 img { width: 112px; height: auto;}
*/
/*--- .service--area ---*/
.service--area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px 0;
}

.service--area li {
  position: relative;
  margin: 0;
  width: 32%;
  max-width: 315px;
  height: 300px;
  background: url(../img/top/img_bnr01_bg.png) no-repeat 0 0/contain;
}
@media (max-width: 767px) {
  .service--area li {
    margin: 0 auto;
    width: 100%;
  }
}

.service--area li:nth-of-type(2) {
  background: url(../img/top/img_bnr02_bg.png) no-repeat 0 0/contain;
}

.service--area li:nth-of-type(3) {
  background: url(../img/top/img_bnr03_bg.png) no-repeat 0 0/contain;
}

.service--area li .linkbox {
  position: absolute;
  padding: 15px 35px 15px 0px;
  width: 100%;
  height: 120px;
  bottom: 0;
  left: 0;
  color: #fff;
  background: rgba(51, 51, 51, 0.8);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.service--area li .linkbox h3 {
  margin-bottom: 10px;
  padding-left: 10px;
}

.service--area li .linkbox p {
  padding-left: 20px;
}

.service--area li .linkbox h3,
.service--area li .linkbox h3 a {
  font-size: clamp(1.6rem, 1.6vw, 1.8rem);
  letter-spacing: 0.08em;
  text-decoration: none;
  line-height: 1;
}

.service--area li .linkbox a {
  color: #fff;
  font-size: 1.4rem;
  line-height: 2;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
}

.service--area li .linkbox a:hover {
  text-decoration: none;
}

.service--area li .linkbox div {
  position: relative;
}

.service--area li .linkbox::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 120px;
  right: 0;
  top: 0;
  background: url(../img/common/arrow_white.png) no-repeat center center, #333;
}

/*
  .service--area li img{
    transition:1s all;
  }
  .service--area li img:hover{
    transform:scale(1.1);
  }
*/
/*--- .link--area ---*/
/*
  .link--area li { float: left; position: relative; width: 32.142857%; margin-left:1.73%;}
  .link--area li:first-child { margin-left:0;}
  .link--area li .link { position:absolute; top:230px; left:5%; padding-right: 10%; color:#fff; line-height: 1.3;}
  .link--area li .link a { color:#fff;}
  .link--area li .link a:hover{ text-decoration: underline;}
*/
/*--- .news--area ---*/
.news--area .wrapper {
  padding: 0 60px;
}
@media only screen and (max-width: 767px) {
  .news--area .wrapper {
    padding: 0;
  }
}

.news--area dl {
  margin: 0 0 0.75em;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .news--area dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.news--area dl dt {
  padding-right: 46px;
}

.news--area dl dt {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .news--area dl dt {
    width: 100%;
    padding-right: 0;
  }
}

.news--area dl dd a {
  text-decoration: underline;
}

.news--area dl dd a:hover {
  text-decoration: none;
}

/*--- .bnr--area ---*/
.bnr--area {
  padding: 30px 0;
}

.bnr--area ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 23px;
}
@media (max-width: 767px) {
  .bnr--area ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px 0;
  }
}

.bnr--area ul > li {
  width: 32%;
  max-width: 310px;
}
@media (max-width: 767px) {
  .bnr--area ul > li {
    width: 100%;
    max-width: inherit;
  }
}

/*--- greeting--area ---*/
.greeting--area {
  position: relative;
  margin: 0;
  padding: 50px 0;
  background-color: #ddf0f3;
  background-image: url(../img/top/message_bg02.png);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
@media only screen and (max-width: 768px) {
  .greeting--area {
    background-size: 220px, 220px;
  }
}
@media only screen and (max-width: 767px) {
  .greeting--area {
    background: none;
  }
}
.greeting--area::before {
  position: absolute;
  content: "";
  width: 340px;
  height: 338px;
  left: -12px;
  bottom: -32px;
  background: url(../img/top/message_bg01.png) no-repeat 0 0/contain;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .greeting--area::before {
    content: none;
  }
}
.greeting--area .title {
  margin-bottom: 40px;
  font-family: "Harenosora", serif;
  font-size: clamp(2rem, 3vw, 3.5rem);
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-align: center;
  /*
      margin: 0 auto 40px;
      width: 60%;
      max-width: 488px;
  */
}
.greeting--area .title span {
  font-weight: 300;
}

/*
.greeting--area .title {
  text-align:center;
}
.greeting--area .title img { width:488px; height:auto;}
*/
.greeting--area p {
  width: 70%;
  margin: 0 auto 10px auto;
  font-size: clamp(1.3rem, 1.5vw, 1.6rem);
  text-align: center;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .greeting--area p {
    width: 74%;
  }
}
@media (max-width: 767px) {
  .greeting--area p {
    width: 100%;
    font-size: 1.6rem;
  }
}

.greeting--area p:last-of-type {
  margin: 0 auto;
}

/*--- access--area ---*/
.access--area .access-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .access--area .access-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px 0;
  }
}

.access--area .access-box .txt {
  width: 34%;
  max-width: 330px;
}
@media only screen and (max-width: 768px) {
  .access--area .access-box .txt {
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .access--area .access-box .txt {
    width: 100%;
    max-width: inherit;
  }
}

.access--area .access-box .txt h3 {
  margin-bottom: 20px;
  width: 280px;
}
@media only screen and (max-width: 768px) {
  .access--area .access-box .txt h3 {
    width: 100%;
    max-width: 280px;
  }
}

.access--area .access-box .txt p {
  font-size: 1.4rem;
  line-height: 1.7;
}
.access--area .access-box .txt p.info01 {
  margin-bottom: 25px;
  font-size: 1.6rem;
  line-height: 1.5;
}
.access--area .access-box .txt p.info02 {
  margin-bottom: 28px;
}
@media only screen and (max-width: 768px) {
  .access--area .access-box .txt p.info02 {
    margin-bottom: 16px;
  }
}
.access--area .access-box .txt p.info03 b {
  font-size: 1.6rem;
}

/*
.access--area .access-box p.ind{
  margin:0;
  padding-left:1em;
  text-indent:-1em;
}

.access--area .access-box p.ind span{
  color:#80bc62;
}
*/
.access--area .btn01 {
  max-width: 340px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.access--area .gmap {
  width: 66%;
  max-width: 640px;
}
@media (max-width: 767px) {
  .access--area .gmap {
    position: relative;
    padding-bottom: 75%;
    width: 100%;
    height: 0;
    overflow: hidden;
  }
}

.access--area .gmap iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .access--area .gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
}

/*--- route--area ---*/
/*
.route--area figure{
  margin-bottom: 40px;
}

.route--area h3{
  margin-bottom: 40px;
  width:280px;
}

.route--area .youtube{
  position: relative;
  margin-bottom: 10px;
  width: 100%;
  padding-top: 56.25%;
}

.route--area .youtube iframe{
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
*/
@media (min-width: 641px) and (max-width: 768px) {
  /*
    .mv--area--inner { position: relative; margin:0 auto; z-index: 1;}
    .mv--area--inner img {margin: 0 auto; width: 100%;}
    .cycle-arrows #prev { left: 0px;}
    .cycle-arrows #next { right: 0px;}
  */
  /*--- .service--area ---*/
  /*
    .service--area li .link { top:76%; font-size: 11px;}
  */
  /*--- .link--area ---*/
  /*
    .link--area li .link { top:76%; font-size: 11px;}
  */
  /*--- greeting--area ---*/
  /*
    .greeting--area {
      background-size: 25% auto, 25% auto;
    }
  */
  /*--- access--area ---*/
  /*
    .access--area .tel { margin-bottom: 12px; padding:24px 0 0 0; background: url(../img/top/icn_tel.png) left 0px no-repeat;}
    .access--area .open { padding:24px 0 0 0; background: url(../img/top/icn_time.png) left 0px no-repeat;}
  */
}
@media (max-width: 767px) {
  /* SP用 */
  /*
    .mv--area--inner { position: relative; width:100%; height:auto; top:10px;}
    .mv--area--inner img { width:100%; height: auto;}
    .mv--area--inner .mv--text { position: absolute; top:20%; left:0; width: 100%; z-index: 301; text-align:center;}
    .mv--area--inner .mv--text img { width:60%; height: auto;}

    .cycle-arrows a {margin-top: -20px;}
    .cycle-arrows #prev { left: 0px;}
    .cycle-arrows #next { right: 0px;}
    .cycle-pager { bottom:-10px;  z-index: 311;}

    .service--area,
    .home .news--area { padding: 50px 0;}
    .home .access--area { padding: 50px 0 50px;}
    .news--area h2,
    .service--area h2,
    .home .access--area h2 { margin: 0 auto 40px; text-align: center;}
    */
  /*--- .service--area ---*/
  /*
    .service--area ul {
      display:block;
    }
    .service--area li {
      position:relative;
      margin:0 auto 20px;
      width:94%;
    }

    .service--area li .linkbox{
      position:absolute;
      padding:12px 40px 15px 0px;
    }
    .service--area li .linkbox p{
      padding-left:20px;
      line-height:1.5;
    }
  */
  /*
    .service--area li { position: relative; width: 100%; margin-bottom:18px;}
    .service--area li dl dt{
      display:none;
    }
    .service--area li dl dd{
      padding-top:10px;
    }
  */
  /*--- .link--area ---*/
  /*
    .link--area li { position: relative; width: 100%; margin-bottom:18px;}

    .link--area li .link { position:absolute; top:78%; left:5%; padding-right: 10%; color:#fff; line-height: 1.3;}
    .link--area li .link a { color:#fff;}
  */
  /*--- .news--area ---*/
  /*
    .news--area .wrapper { padding: 0 2.5%;}
    .news--area h2 { position:static; margin-bottom: 30px;}
    .news--area .btn_list { position:static; margin:0 0 20px 0; width:100%; display:flex; justify-content: flex-end;}
    .news--area dl { flex-wrap:wrap;}
    .news--area dl:after { content:""; display: block; height: 1px; position:absolute; bottom:-1px; left: 0; width: 36%;}
    .news--area dl dt { width:100%; padding: 0;}
    .news--area dl dd { padding: 0 0 14px;}
  */
  /*--- .bnr--area ---*/
  /*
    .bnr--area { padding: 20px 0 5px;}
    .bnr--area ul { flex-wrap:wrap; }
    .bnr--area ul > li { width: 100%; max-width:100%; margin-bottom: 15px;}
  */
  /*--- greeting--area ---*/
  /*
    .greeting--area {
      padding: 40px 0 30px 0;
      background: none;
    }
    .greeting--area .title {
      margin: 0 auto 20px;
  */
  /*
      width:100%;
      text-align:center;
      color:#000;
      font-size:24px;
      letter-spacing:-0.05em;
      font-weight:bold;
  */
  /*
    }
    .greeting--area .title img { width:100%; height:auto;}
    .greeting--area p {
      width:100%;
    }
  */
  /*
    .greeting--area p a.btn01{ display: inline-block; box-sizing: border-box; padding: 0 30px; margin-top: 15px;}
  */
  /*--- .access--area ---*/
  /*
    .access--area .access-box{
      flex-wrap:wrap;
    }
    .access--area .access-box .txt{
      width:100%;
    }

    .access--area .access-box p{
      margin-bottom:0;
    }
    .access--area .access-box .txt p.info span {
      font-size: 1.4rem;
    }
    .access--area .access-box .txt p.info a{
      color:#14ae67;
      text-decoration:underline;
    }
    .access--area .access-box .txt p.info a:hover{
      text-decoration:none;
    }

    .access--area .gmap {
      position: relative;
      padding-bottom: 75%;
      width:100%;
      height: 0;
      overflow: hidden;
    }
    .access--area .gmap iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100% !important;
      height: 100% !important;
    }
  */
}
/* page common
-------------------------------------------------- */
.page--ttl {
  position: relative;
  height: 88px;
  line-height: 1;
  background: url(../img/common/bg_ttl.png) no-repeat right 0/cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page--ttl h2 {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 26px;
  font-weight: normal;
}

.crumb {
  width: 100%;
  margin: 20px auto 40px;
}

.crumb a {
  color: #017386;
  text-decoration: underline;
}

.crumb a:hover {
  text-decoration: none;
}

.crumb ul {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}

.crumb li {
  display: inline-block;
  font-size: 14px;
  color: #242222;
  padding-bottom: 4px;
}

.crumb li:after {
  content: "＞";
  margin: 0 5px 0 1em;
}

.crumb li:last-child:after {
  content: "";
}

/*
.h201 { position:relative; margin-bottom: 30px; padding:0 0 10px 38px; font-size: 24px; border-bottom:4px solid #ede4d9; color: #211111; line-height: 1.25; background: url(../img/common/bg_h2.png) left 3px no-repeat; background-size:26px auto;}
.h201::after{
  position: absolute; content: "."; line-height: 0; display: block; overflow: hidden; bottom: -4px; left:0; width: 25%; border-bottom: 4px solid #c6ebfb;
}
.h201.rby { background: url(../img/common/bg_h2.png) left 15px no-repeat;}
.h201.red { border-bottom:1px solid #cf9797; background: url(../img/common/bg_h2_red.png) left 3px no-repeat;}
*/
.h201 {
  margin-bottom: 30px;
  padding: 0 0 10px 38px;
  font-size: 24px;
  border-bottom: 1px solid #999;
  color: #211111;
  line-height: 1.25;
  background: url(../img/common/bg_h2.png) left 3px no-repeat;
  background-size: 26px auto;
}

.h202 {
  margin: 40px 0 25px;
  padding-left: 17px;
  font-size: 16px;
  border-left: 3px solid #3299bb;
  line-height: 1.5;
}

.h202 span {
  padding-right: 13px;
  font-size: 23px;
}

h3.ttl {
  border-bottom: 1px dotted #333;
  color: #17274d;
  font-size: 18px;
  font-weight: normal;
  padding-bottom: 5px;
  margin-bottom: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  width: 100%;
}

h3.h301 {
  margin-bottom: 20px;
  padding: 0 0 0 38px;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.25;
  background: url(../img/common/bg_h3.png) left 4px no-repeat;
}

h3.bor {
  margin-bottom: 20px;
  padding-top: 5px;
  padding-bottom: 3px;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 767px) {
  h3.bor {
    font-size: 18px;
  }
}

h4 {
  margin-bottom: 15px;
  line-height: 1.3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
}

h3.bor,
h4.bor {
  padding-left: 10px;
  border-left: 7px solid #017386;
}

.sec01 p {
  line-height: 1.67;
  color: #333;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .sec01 p {
    font-size: 1.4rem;
  }
}

.sec01 .col02 .fl, .sec01 .col02 .fr {
  width: 48%;
  margin-right: 4%;
}

.sec01 .col02 .fr {
  margin-right: 0;
}

.paging,
.tablenav {
  text-align: center;
  margin-bottom: 50px;
  clear: both;
}

.paging > div a,
.tablenav > a {
  display: block;
  padding: 8px 12px;
  background: #fff;
  text-decoration: none;
  color: #017386;
  border: 1px solid #017386;
  line-height: 1;
}

.paging > div,
.tablenav > a {
  display: inline-block;
  line-height: 1;
  margin: 0 6px;
}

.paging > div a:hover,
.tablenav > a:hover {
  color: #fff;
  background: #017386;
}

.tablenav > span {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 4px;
  color: #fff;
  background: #017386;
  line-height: 1;
}

.paging .prev span,
.tablenav .a--prev {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: url(../img/common/icn_prev.png) center center no-repeat;
  background-size: 100% auto;
  line-height: 1;
}

.paging .next span,
.tablenav .a--next {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: url(../img/common/icn_next.png) center center no-repeat;
  background-size: 100% auto;
  line-height: 1;
}

.paging .to--list span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: url(../img/common/icn_up.png) center center no-repeat;
  background-size: 100% auto;
  line-height: 1;
}

.sec01:last-of-type {
  margin-bottom: 0px;
}

.btn--contact {
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 767px) {
  .page--ttl {
    margin-bottom: 15px;
    padding: 0;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page--ttl h2 {
    font-size: 20px;
    font-weight: 700;
  }
  .page--ttl p img {
    height: 20px;
    width: auto;
  }
  .crumb {
    padding: 0 2.5%;
  }
  .sec01 p {
    line-height: 1.8;
  }
  .sec01 .col02 .fl, .sec01 .col02 .fr {
    width: 100%;
    margin-right: 0;
    float: none;
  }
  .btn--contact {
    margin: 0 auto;
    text-align: center;
  }
}
/*--- h301 ---*/
.sec01 .h301 {
  margin: 30px 0 15px;
  color: #17274d;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.02;
}

.sec01 .h301:before {
  content: "●";
}

.sec01 .h301:first-of-type {
  margin-top: 0;
}

/*--- h302 ---*/
.sec01 .h302 {
  margin: 30px 0 10px;
  padding: 0px 0 0 0;
  color: #361a0f;
  font-weight: bold;
  font-size: 18px;
  border-left: none;
  line-height: 1.02;
}

.sec01 .h302:before {
  content: "■";
}

.sec01 .comment h4 {
  padding-left: 21px;
  font-size: 16px;
  background: url(../img/common/bg_li02.png) left 1px no-repeat;
}

.sec01 p,
.sec01 ol {
  margin-bottom: 2em;
}

.sec01 p:last-of-type, .sec01 ol:last-of-type {
  margin-bottom: 0;
}

.sec01 .check li {
  margin-bottom: 0.85em;
  padding-left: 28px;
  line-height: 1.5;
  background: url(../img/common/icn_check.png) left 1px no-repeat;
}

.sec01 {
  margin-bottom: 80px;
}

.sec01 .fr.img {
  margin: 0 0 24px 24px;
  width: 58%;
  max-width: 562px;
}

.sec01 dl dt {
  float: left;
  width: 149px;
  padding: 5px 0;
}

.sec01 dl dd {
  display: block;
  margin-left: 150px;
  padding: 5px 0 5px 1.5em;
  border-left: 1px solid #2a2b2c;
}

@media (max-width: 767px) {
  .h201 {
    font-size: 20px;
    line-height: 1.5;
    padding-bottom: 5px;
    padding-left: 26px;
    background-size: 23px;
  }
  h3.ttl {
    font-size: 16px;
  }
  h4 {
    font-size: 15px;
  }
  .sec01 {
    margin-bottom: 45px;
  }
  .sec01:last-of-type {
    margin-bottom: 0;
  }
  .sec01 .fr {
    margin-bottom: 25px;
  }
  .sec01 .fr.img {
    width: 100%;
    max-width: inherit;
  }
  .sec01 .comment {
    padding: 12px;
  }
  .sec01 dl dt {
    float: left;
    width: 30%;
  }
}
/*  form contact credit personal_sess
-------------------------------------------------- */
.page-contact .sec01:last-of-type {
  margin-bottom: 80px;
}

.page-contact .sec01 .fr.photo {
  width: 36%;
  max-width: 350px;
}

.page-contact .sec01 .fl.txt {
  width: 61%;
}

.page-contact .sec01 .fl.txt img {
  max-width: 300px;
}

.tel-img {
  max-width: 300px;
  margin-bottom: 12px;
}

.contact-note {
  margin: 0 0 25px 1em !important;
  text-indent: -1em;
  color: #7c4800 !important;
  font-size: 20px;
  font-weight: bold;
}

.contact-note.note02 {
  margin: 0 0 0 1em !important;
}

.page-contact h3 {
  margin-bottom: 30px;
  font-size: 20px;
}

.err,
.required {
  color: #f00;
}

.page-contact p.red {
  margin-bottom: 0;
  color: #f00;
}

.wpcf7-not-valid-tip {
  margin-top: 4px;
}

.page-contact .sec01 a.btn--contact {
  display: block;
  width: 500px;
  height: 70px;
  margin: 0 auto;
  text-align: center;
  line-height: 70px;
  font-size: 20px;
  background: url(../img/common/bg_btn_contact.png) left top no-repeat;
  border: none;
  outline: none;
  color: #fff;
}

.page-contact .tbl02 {
  border: none;
  border-collapse: separate;
  border-spacing: 5px;
}

.page-contact .tbl02 th {
  padding: 15px 10px 0 10px;
  padding: 17px;
  background: #ddf0f3;
  text-align: right;
  vertical-align: top;
  border: none;
}

.page-contact .tbl02 td {
  padding: 15px 23px;
  background: #fdfbf8;
  border: none;
}

.policy--area {
  height: 132px;
  margin-bottom: 50px;
  overflow-y: scroll;
  border: 1px solid #c2c2c2;
  background: #fff;
}

.policy--area .inner {
  padding: 15px 15px 0;
}

.policy--area a {
  text-decoration: underline;
  color: #14ae67;
}
.policy--area a:hover {
  text-decoration: none;
}

.page-contact .btn--accept {
  margin-bottom: 44px;
  text-align: center;
}
.page-contact .btn--accept .wpcf7-form-control-wrap {
  left: -3%;
}

.page-contact input,
.page-contact select,
.page-contact textarea {
  width: 100%;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #999999;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 100%;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.page-contact textarea {
  min-width: 90%;
}

.page-contact .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 38px;
}

.page-contact .form--txt {
  width: 5em;
}

.page-contact .btn--accept {
  font-size: 14px;
}
.page-contact .btn--accept input {
  margin-bottom: 5px;
  width: 2em;
}

/*
.page-contact .btn--confirm {
  text-align:center;
  span {
    position: relative;
    margin: 0 auto;
    width: 500px;
    height: 70px;
    display: block;
    &::after {
      position: absolute;
      content: '';
      width: 18px;
      height: 32px;
      top: calc(50% - 14px);
      right: 40px;
      background: url(../img/common/btn_arrow.png) no-repeat 0 0 / contain;
      z-index: 2;
    }
  }
}
*/
.page-contact .submitting .btn_back {
  display: none;
}

.page-contact .btn--confirm {
  text-align: center;
}

.page-contact .btn_confirm {
  margin: 0 auto;
  width: 500px;
  height: 70px;
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  background: url(../img/common/btn_arrow.png) no-repeat 90%/20px 30px, rgb(20, 174, 103);
  border: none;
  border-radius: 30px;
  outline: none;
  cursor: pointer;
}

.page-contact input.btn_confirm:hover {
  background: rgba(20, 174, 103, 0.7);
}

/*
.contact_tel { width:400px; margin: 0 auto; padding:0 0 20px 26px; font-size:48px; color: #027221; font-weight: bold; text-align: center; line-height:1.03; background:url(../img/contact/icn_tel-contact.png) left 0px no-repeat;}
.contact--phone { text-align: center;}

.ymdt, .ymdt2 { margin:0 0 0.8em;}
.ymdt span { margin-right:1em;}
.ymdt2 span.ttl { font-weight:normal;}
.ymdt select { width:80px; padding:3px; border-radius: 3px; box-sizing: border-box;}
*/
.formBtn.formConfirm {
  margin: 40px auto;
  width: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 30px;
}

.formBtn.formConfirm input {
  padding: 15px;
  width: 46%;
  min-width: 300px;
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  border: none;
  border-radius: 30px;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*
    box-shadow: 0 4px rgba(0,0,0,0.2);
  */
  cursor: pointer;
}

.formBtn.formConfirm input:hover {
  opacity: 0.7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.formBtn.formConfirm .btn_back {
  background: url(../img/contact/btn_arrow_left.png) no-repeat 10%, rgba(20, 174, 103, 0.7);
}

.formBtn.formConfirm .btn_submit {
  background: url(../img/contact/btn_arrow.png) no-repeat 90%, rgba(20, 174, 103, 0.7);
}

#compBox {
  margin: 100px 0 100px;
  text-align: center;
}

#compBox h3 {
  margin-bottom: 40px;
  font-size: 24px;
}

#compBox p {
  font-size: 16px;
  line-height: 2;
}

.contact--phone {
  padding: 20px 0;
}

.contact--phone img {
  width: 337px;
  height: auto;
}

/* for contact */
.tbl03 {
  width: 100%;
  margin-bottom: 50px;
  border-bottom: none;
}

.tbl03 th {
  width: 33.33333%;
  padding: 14px 30px;
  border-right: 5px solid #fffbec;
  border-bottom: 5px solid #fffbec;
  background: #e5dac3;
  font-weight: normal;
  text-align: right;
  vertical-align: middle;
}

.tbl03 td {
  padding: 16px 30px 14px 30px;
  border-bottom: 5px solid #fffbec;
  background: #fff;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .page-contact .sec01:last-of-type {
    margin-bottom: 0;
  }
  .contact-note {
    margin: 0 0 25px 1em !important;
    text-indent: -1em;
    color: #7c4800 !important;
    font-size: 18px;
    font-weight: bold;
  }
  .page-contact .sec01 .fr.photo {
    margin-bottom: 20px;
  }
  .page-contact .sec01 .fl.txt, .page-contact .sec01 .fr.photo {
    width: 100%;
    max-width: inherit;
  }
  .page-contact .sec01 .fl.txt img {
    max-width: inherit;
    width: 90%;
    margin: 0 auto;
    display: block;
  }
  .tel-img {
    display: block;
    max-width: inherit;
    width: 90% !important;
    margin: 0 auto 15px auto;
  }
  .page-contact .tbl02 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: 1px dotted #999;
  }
  .page-contact .tbl02 th,
  .page-contact .tbl02 td {
    width: 100%;
    display: block;
    text-align: left;
    padding: 15px 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: none;
  }
  .page-contact .tbl02 th {
    font-size: 16px;
  }
  .page-contact .tbl02 td {
    font-size: 16px;
    border-top: none;
  }
  .sec01 input,
  .sec01 select,
  .sec01 textarea {
    width: 94%;
    font-size: 16px;
  }
  .sec01 .check_accept {
    width: 100%;
  }
  .page-contact .flex {
    width: 94%;
    gap: 0 20px;
  }
  .sec01 .form--name {
    width: 100%;
  }
  .sec01 .form--txt {
    width: 5.5em;
    margin-bottom: 0.5em;
  }
  .page-contact .btn--accept .wpcf7-form-control-wrap {
    left: auto;
  }
  .page-contact .btn--accept .wpcf7-form-control-wrap .wpcf7-list-item {
    width: 100%;
  }
  .page-contact .btn--accept .wpcf7-form-control-wrap .wpcf7-list-item label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-contact .btn--accept .wpcf7-form-control-wrap .wpcf7-list-item label .wpcf7-list-item-label {
    width: auto;
  }
  .page-contact .btn--accept span {
    width: 100%;
    display: block;
  }
  /*
    .sec01 input.btn_confirm,.page-contact .sec01 a.btn--contact { width: 100%; height:0; padding-bottom: 14%;/* 表示画像の高さ ÷ 表示画像の幅 × 100 */ /*margin:0 auto; text-align: center; line-height: 2.3;  border: none; outline:none; background-size: 100% auto;}
*/
  /*
  .sec01 input.btn_confirm { width: 500px; height: 70px; margin:0 auto; text-align: center; line-height:70px; font-size: 20px; background:url(../img/contact/btn_arrow.png) no-repeat right 10% center,rgba(0,71,20,1); border: none; border-radius:35px; outline:none; cursor:pointer; color: #fff;}
  .sec01 input.btn_confirm:hover {background:url(../img/contact/btn_arrow.png) no-repeat right 10% center,rgba(0,71,20,0.7);}
  */
  .sec01 label input {
    width: 20px;
  }
  .sec01 .wpcf7-list-item {
    display: inline-block;
    width: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec01 .btn--accept .wpcf7-list-item {
    width: 16px;
  }
  /*
    .sec01 .wpcf7-list-item:nth-child(7) { width:100%;} 
  */
  .sec01 input.btn_confirm {
    width: 100%;
  }
  .formBtn.formConfirm {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 0;
  }
  .formBtn.formConfirm input,
  .formBtn.formConfirm button {
    font-size: 20px;
    max-width: 300px;
  }
  .formBtn.formConfirm input {
    padding: 15px 15px 12px;
  }
  .contact--phone {
    padding: 10px 8%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .contact--phone img {
    width: 100%;
    height: auto;
  }
  span.wpcf7-list-item {
    margin: 0 !important;
  }
  /* for contact */
  .tbl03 {
    width: 100%;
    margin-bottom: 20px;
    font-size: 13px;
  }
  .tbl03 th {
    display: block;
    width: 100%;
    padding: 10px 3%;
    border-bottom: 3px solid #fffbec;
    background: #e5dac3;
    font-weight: normal;
    text-align: left;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .tbl03 td {
    display: block;
    width: 100%;
    padding: 10px 3%;
    border-bottom: 3px solid #fffbec;
    vertical-align: middle;
    background: #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.policy--area .inner p {
  font-size: 14px;
}

/* credit */
.sec_credit {
  margin-bottom: 100px;
}

.sec_credit input[name=price1] {
  width: 140px;
}

.sec_credit input[name=tel1] {
  width: 300px;
}

#credit_tbl table {
  margin-bottom: 50px;
  width: 100%;
  border: 1px solid #ede4d9;
}

#credit_tbl th {
  padding: 15px 20px;
  width: 30%;
  text-align: left;
  background: #fff8ed;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ede4d9;
}

#credit_tbl td {
  padding: 15px 20px;
  width: 70%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ede4d9;
}

.sec_credit .formBtn.formConfirm,
.sec_personal .formBtn.formConfirm {
  margin: 40px auto;
  width: 100%;
  max-width: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sec_credit .formBtn.formConfirm a,
.sec_personal .formBtn.formConfirm a {
  width: 35%;
  max-width: initial;
}

.sec_credit .formBtn.formConfirm.error_back a,
.sec_personal .formBtn.formConfirm.error_back a {
  margin: 0 auto;
  width: 50%;
}

.sec_credit .formBtn.formConfirm.error_back.top a,
.sec_personal .formBtn.formConfirm.error_back.top a {
  margin: 0 auto;
  width: 50%;
  max-width: initial;
}

.sec_credit .formBtn.formConfirm input,
.sec_credit .formBtn.formConfirm button,
.sec_personal .formBtn.formConfirm input,
.sec_personal .formBtn.formConfirm button {
  margin: 2% 0;
  padding: 15px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background: url(../img/contact/btn_arrow.png) no-repeat 90%, #c6ebfb;
  border: none;
  border-radius: 50px;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*
    box-shadow: 0 4px rgba(0,0,0,0.2);
  */
  cursor: pointer;
}

.sec_credit .formBtn.formConfirm input,
.sec_personal .formBtn.formConfirm input {
  width: 50%;
  max-width: 500px;
}

.sec_credit .formBtn.formConfirm .btn_back,
.sec_personal .formBtn.formConfirm .btn_back {
  background: url(../img/contact/btn_arrow_left.png) no-repeat 10%, #c6ebfb;
}

/* sec_personal */
.sec_personal .w01 {
  width: 140px;
}

.sec_personal input[type=radio] {
  margin-right: 0.5em;
  width: initial;
}

.sec_personal label {
  margin-right: 1em;
}

@media (max-width: 767px) {
  #credit_tbl table {
    display: block;
    border-bottom: none;
  }
  #credit_tbl th {
    width: 100%;
    display: block;
    border: none;
    border-bottom: 1px solid #ede4d9;
  }
  #credit_tbl td {
    width: 100%;
    display: block;
    border: none;
    border-bottom: 1px solid #ede4d9;
  }
  .sec_credit .formBtn.formConfirm,
  .sec_personal .formBtn.formConfirm {
    margin: 40px auto;
    width: 100%;
    max-width: initial;
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sec_credit .formBtn.formConfirm.error_back a,
  .sec_personal .formBtn.formConfirm.error_back a {
    margin: 0 auto 10px;
    width: 100%;
  }
  .sec_credit .formBtn.formConfirm.error_back.top a,
  .sec_personal .formBtn.formConfirm.error_back.top a {
    margin: 0 auto;
    width: 100%;
    max-width: initial;
  }
  .sec_credit .formBtn.formConfirm input,
  .sec_credit .formBtn.formConfirm button,
  .sec_personal .formBtn.formConfirm input,
  .sec_personal .formBtn.formConfirm button {
    width: 100%;
    max-width: 500px;
    font-size: 18px;
  }
}
/*  news--list
-------------------------------------------------- */
.news--list {
  position: relative;
  margin-bottom: 50px;
}

/*
.news--list dl { clear:both; border-bottom:1px dashed #9b7c4f;}
.news--list dl:first-of-type { border-top:1px dashed #9b7c4f;}
*/
.news--list dl {
  clear: both;
}
.news--list dl:first-of-type, .news--list dl:nth-of-type(2n+1) {
  background: #fdfbf8;
}

.news--list a {
  position: relative;
  color: #017386;
  letter-spacing: 0.02em;
  text-decoration: underline;
}
.news--list a::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 9px;
  background: url(../img/common/arrow02.png) no-repeat 0 0/contain;
  top: 6px;
  left: -14px;
}

.news--list a:hover {
  text-decoration: none;
}

/*
.news--list dl dd.cat_icon{
    display: inline-block;
    width: 100px;
    text-align: center;
    border-radius: 5px;
    padding: 0 5px !important;
    margin-right: 30px;
    box-sizing: border-box;
}
.news--list dl dd.cat_icon a{
    color: #333333;
    font-size: 12px;
    text-decoration: none;
}
*/
.news--list .soon {
  padding: 150px 0;
  text-align: center;
}

.news--list dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 18px 40px;
}

.news--list dt {
  width: 10%;
}

.news--list dt {
  width: 16%;
  color: #444;
}

@media (min-width: 641px) and (max-width: 768px) {
  /* tablet用 */
}
@media (max-width: 767px) {
  /* SP用 */
  .news--list dl {
    padding: 20px 3.5%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px 0;
  }
  .news--list dt {
    width: 100%;
  }
  .news--list dd {
    padding-left: 16px;
    line-height: 1.6;
  }
  /*
      .news--list dl dd.cat_icon{
          display: block;
          width: 100px;
          margin-right:0;
          margin-bottom: 10px;
          box-sizing: border-box;
      }
  */
}
/*  single
-------------------------------------------------- */
.entry_head ul {
  display: inline-block;
  float: right;
  margin-bottom: 20px;
}

.entry_head li {
  display: inline-block;
}

.entry_head li.cat_icon {
  display: inline-block;
  width: 100px;
  text-align: center;
  border-radius: 5px;
  padding: 3px 5px;
  margin-left: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.entry_head li.cat_icon a {
  color: #333333;
  font-size: 12px;
  text-decoration: none;
}

.single h3 {
  margin-bottom: 20px;
  padding-right: 5px;
  font-size: 20px;
  border-bottom: 1px dotted #c6ebfb;
}

.screen-reader-text,
.meta-nav {
  display: none !important;
}

.entry-time {
  padding-bottom: 30px;
  font-size: 13px;
  text-align: right;
}

.entry-content {
  margin-bottom: 70px;
}

.entry-content a {
  color: #017386;
  text-decoration: underline;
}

.entry-content a:hover {
  text-decoration: none;
}

.entry-content img {
  width: auto;
  height: auto;
}

.single-thumb {
  float: right;
  width: 40.816%;
  margin: 0 0 40px 4.0816%;
}

@media (max-width: 767px) {
  .entry-content {
    margin-bottom: 12%;
  }
  .single-thumb {
    float: none;
    width: 100%;
    margin: 0 auto 20px;
  }
  .single-thumb img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
}
/*  page-sitemap
-------------------------------------------------- */
/*
#sitemap_list { margin-bottom: 0 !important; }
#sitemap_list2 { margin-bottom: 40px !important; }
.sitemap_disp_level_1 li { padding: 12px 0; background:none !important;}
.sitemap_disp_level_1 > li {border-bottom:1px dotted #ccc; }
.sitemap_disp_level_1 li a {
  padding-left:30px;
  background:url(../img/common/arrow.png) no-repeat 10px center / 8px 7px;
  display:block;
}
*/
.page-sitemap ul.sitemap_list {
  margin: 0 auto 80px;
  line-height: 2;
}

.page-sitemap ul.sitemap_list li a {
  position: relative;
  padding: 20px 20px 20px 58px;
  border-bottom: 1px dotted #ddd;
  display: block;
}

@media (max-width: 767px) {
  .page-sitemap ul.sitemap_list li a {
    padding: 12px 10px 12px 28px;
  }
}
.page-sitemap ul.sitemap_list li a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 8px;
  border-color: transparent transparent transparent #14ae67;
  top: 30px;
  left: 30px;
}

@media (max-width: 767px) {
  .page-sitemap ul.sitemap_list li a::before {
    top: 19px;
    left: 10px;
  }
}
.page-sitemap ul.sitemap_list li:first-of-type a {
  border-top: 1px dotted #ddd;
}

.page-sitemap ul.sitemap_list li ul.sub-menu li a {
  padding: 20px 20px 20px 88px;
}

@media (max-width: 767px) {
  .page-sitemap ul.sitemap_list li ul.sub-menu li a {
    padding: 12px 10px 12px 48px;
  }
}
.page-sitemap ul.sitemap_list li ul.sub-menu li a::before {
  left: 60px;
}

@media (max-width: 767px) {
  .page-sitemap ul.sitemap_list li ul.sub-menu li a::before {
    top: 19px;
    left: 30px;
  }
}
.page-sitemap ul.sitemap_list li ul.sub-menu li:first-of-type a {
  border-top: none;
}

/* about
-------------------------------------------------- */
.page-about .sec01 p {
  letter-spacing: 0.08em;
}

.page-about .sec01 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 22px;
}

.page-about .sec01 .flex .txt {
  max-width: 610px;
}

.page-about .sec01 .flex figure {
  width: 43%;
  max-width: 350px;
}

.page-about .sec01_02 {
  margin-bottom: 0;
}

.page-about .sec01_02 h4.bor {
  padding-top: 5px;
  font-size: 18px;
}

.page-about .sec01_02 .flex {
  margin-bottom: 20px;
}

.page-about .sec01_02 p {
  margin-bottom: 2em;
}
.page-about .sec01_02 p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .page-about .sec01 .flex {
    margin-bottom: 50px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 0;
  }
  .page-about .sec01 .flex .txt {
    width: 100%;
    max-width: auto;
  }
  .page-about .sec01 .flex figure {
    margin: 0;
    width: 100%;
    max-width: auto;
  }
}
/* lawyer
-------------------------------------------------- */
.page-lawyer .sec01 p {
  letter-spacing: 0.01em;
}

.page-lawyer .sec01 figure {
  margin: 0 0 10px 10px;
  width: 350px;
}

.page-lawyer .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.page-lawyer .flex .txt {
  margin-bottom: 0;
  width: 49%;
  max-width: 460px;
}

.page-lawyer .sec .txt {
  padding-bottom: 8px;
}

.page-lawyer .sec01 .txt p {
  margin-bottom: 2em;
}

.page-lawyer .sec ul {
  margin-left: 2em;
  margin-bottom: 2em;
  line-height: 1.67;
}
.page-lawyer .sec ul li {
  list-style-type: disc;
}
@media (max-width: 767px) {
  .page-lawyer .sec ul li {
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .page-lawyer .sec01 figure {
    margin: 0 auto 20px;
    display: block;
  }
  .page-lawyer .flex {
    display: block;
  }
  .page-lawyer .flex .txt {
    margin: 0 auto;
    width: 94%;
    max-width: 460px;
  }
}
/* description
-------------------------------------------------- */
.page-description .sec01 p {
  letter-spacing: 0.08em;
}

.page-description .sec.sec01 {
  margin-bottom: 100px;
}

.page-description .sec01:last-of-type {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .page-description .sec01:last-of-type {
    margin-bottom: 30px;
  }
}

.page-description h3.bor {
  margin-bottom: 30px;
}

.page-description h4 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .page-description h4 {
    font-size: 1.6rem;
  }
}

.page-description .flex {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 22px;
}

.page-description .flex .txt {
  margin-bottom: 0;
}

.page-description .flex figure {
  margin: 0;
  width: 100%;
  max-width: 350px;
}

.page-description .sec.sec01 .ttl {
  margin-bottom: 0;
  margin-left: 0.5em;
  font-weight: 700;
}

.page-description .sec.sec01 .txt_box {
  margin-bottom: 45px;
}

.page-description .sec.sec01 .chk {
  margin-bottom: 30px;
  margin-left: 0.5em;
  line-height: 2;
}

.page-description .sec.sec01 .chk li {
  position: relative;
  padding-left: 1.5em;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-description .sec.sec01 .chk li {
    margin-bottom: 5px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.page-description .sec.sec01 .chk li::before {
  position: absolute;
  content: "✓";
  color: #14ae67;
  top: 0;
  left: 0;
}

.page-description .btn {
  margin: 40px auto 0;
  width: 50%;
  max-width: 500px;
}
@media (max-width: 767px) {
  .page-description .btn {
    width: 100%;
  }
}
.page-description .btn a {
  position: relative;
  height: 70px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  background: #14ae67;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 999px;
}
@media (max-width: 767px) {
  .page-description .btn a {
    width: 100%;
    font-size: 20px;
  }
}
.page-description .btn a::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 16px;
  top: calc(50% - 8px);
  right: 40px;
  background: url(../img/common/btn_arrow.png) no-repeat 0 0/contain;
}

.page-description .btn.last {
  margin: 110px auto 0;
}
@media (max-width: 767px) {
  .page-description .btn.last {
    margin: 55px auto 0;
  }
}

@media (max-width: 767px) {
  .page-description .flex {
    margin-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
}
/* leagal fee
-------------------------------------------------- */
.page-legalfee .sec01 p {
  letter-spacing: 0.01em;
}

.page-legalfee .sec.sec01 {
  margin-bottom: 90px;
}

.page-legalfee .sec.sec01 h3 {
  margin-bottom: 24px;
  padding-bottom: 8px;
  color: #017386;
  font-size: 22px;
  border-bottom: 1px dotted #017386;
}
@media (max-width: 767px) {
  .page-legalfee .sec.sec01 h3 {
    font-size: 20px;
  }
}

.page-legalfee .sec.sec01 h4 {
  margin-top: 40px;
}

.page-legalfee .sec p {
  margin-bottom: 20px;
}

.page-legalfee .sec p.note {
  margin-top: 30px;
  margin-bottom: 0;
}
.page-legalfee .sec p.note + .note {
  margin-top: 0;
}

@media (max-width: 767px) {
  .js-scrollable {
    overflow-x: auto;
    white-space: nowrap;
  }
  .js-scrollable .fee_tbl {
    overflow-x: auto;
    white-space: nowrap;
  }
}

.page-legalfee .sec table.fee_tbl {
  margin-bottom: 40px;
  width: 100%;
  border: 1px solid #282728;
  border-collapse: collapse;
}
.page-legalfee .sec table.fee_tbl th, .page-legalfee .sec table.fee_tbl td {
  padding: 18px;
  letter-spacing: 0.025em;
  border: 1px solid #282728;
}
@media (max-width: 767px) {
  .page-legalfee .sec table.fee_tbl th, .page-legalfee .sec table.fee_tbl td {
    padding: 10px 5px !important;
    font-size: 14px;
  }
}
.page-legalfee .sec table.fee_tbl th {
  width: 200px;
  font-weight: 400;
  text-align: left;
  background: #ddf0f3;
}
.page-legalfee .sec table.fee_tbl td {
  line-height: 1.2;
}
.page-legalfee .sec table.fee_tbl td.td01 {
  width: 105px;
}
@media (max-width: 767px) {
  .page-legalfee .sec table.fee_tbl.fee_tbl01 th {
    width: 120px;
  }
}
@media (max-width: 767px) {
  .page-legalfee .sec table.fee_tbl.fee_tbl01 tr:first-of-type th {
    border-top: none;
  }
}
.page-legalfee .sec table.fee_tbl.fee_tbl02 {
  margin-top: 0;
  margin-bottom: 30px;
}
.page-legalfee .sec table.fee_tbl.fee_tbl02.fee_tbl02_2 {
  margin-top: 80px;
}
.page-legalfee .sec table.fee_tbl.fee_tbl02 th {
  width: calc((100% - 380px) / 2);
  background: rgba(221, 240, 243, 0.3);
}
@media (max-width: 767px) {
  .page-legalfee .sec table.fee_tbl.fee_tbl02 th {
    width: 33.3333333333%;
  }
}
.page-legalfee .sec table.fee_tbl.fee_tbl02 th:first-of-type {
  width: 380px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .page-legalfee .sec table.fee_tbl.fee_tbl02 th:first-of-type {
    width: 33.3333333333%;
  }
}
.page-legalfee .sec table.fee_tbl.fee_tbl02 td {
  border-bottom: 1px solid #282728;
}
.page-legalfee .sec table.fee_tbl.fee_tbl03 {
  margin-bottom: 30px;
}
.page-legalfee .sec table.fee_tbl.fee_tbl03 th {
  width: 380px;
  line-height: 1.6;
  vertical-align: top;
}
.page-legalfee .sec table.fee_tbl.fee_tbl03 td {
  line-height: 1.6;
}
.page-legalfee .sec table.fee_tbl.fee_tbl04 {
  margin-bottom: 30px;
}
.page-legalfee .sec table.fee_tbl.fee_tbl04 th {
  width: 380px;
  line-height: 1.6;
  vertical-align: top;
}
@media (max-width: 767px) {
  .page-legalfee .sec table.fee_tbl.fee_tbl04 th {
    width: 66%;
  }
}
.page-legalfee .sec table.fee_tbl.fee_tbl04 td {
  line-height: 1.6;
}

.page-legalfee .sec .table_head {
  margin-top: 30px;
  padding: 18px;
  width: 100%;
  background: #ddf0f3 !important;
}

.page-legalfee .flex {
  margin-top: 50px;
  padding-bottom: 30px;
  padding-left: 26px;
  padding-right: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .page-legalfee .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
    padding-right: 0;
    gap: 50px 0;
  }
}
.page-legalfee .flex .tel {
  max-width: 360px;
}
.page-legalfee .flex .btn {
  width: 50%;
  max-width: 500px;
}
@media (max-width: 767px) {
  .page-legalfee .flex .btn {
    width: 100%;
  }
}
.page-legalfee .flex .btn a {
  position: relative;
  height: 70px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  background: #14ae67;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 999px;
}
@media (max-width: 767px) {
  .page-legalfee .flex .btn a {
    width: 100%;
    font-size: 20px;
  }
}
.page-legalfee .flex .btn a::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 16px;
  top: calc(50% - 8px);
  right: 40px;
  background: url(../img/common/btn_arrow.png) no-repeat 0 0/contain;
}

/* voice お客様の声
-------------------------------------------------- */
.single-voice .entry_body_main {
  margin: 0 0 40px;
  width: 100%;
}

.single-voice .entry_body_main.eye {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.single-voice .entry_body_main .txt {
  width: 100%;
}

.single-voice .entry_body_main.eye .txt {
  width: calc(100% - 320px);
}

.single-voice .entry_body_main.eye figure {
  margin: 0;
  width: 40%;
  max-width: 300px;
  height: auto;
}

.single-voice table {
  margin-bottom: 40px;
  width: 100%;
  border: 1px solid #ede4d9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.single-voice td:first-of-type {
  padding: 15px 20px;
  width: 30% !important;
  text-align: left;
  font-weight: normal;
  background: #fff8ed;
  border: 1px solid #ede4d9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.single-voice td {
  padding: 15px 20px;
  width: 70% !important;
  border: 1px solid #ede4d9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.single-voice .btn {
  margin: 100px 0 70px;
  text-align: center;
}

.single-voice a.btn02 {
  margin: 0 auto;
  padding: 15px 50px 15px 40px;
  width: 100%;
  max-width: 500px;
  font-size: 24px;
  border-radius: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #c6ebfb url(../img/session/icn_external.png) 88% 45% no-repeat;
}

.single-voice a.btn02 span {
  font-size: 18px;
}

@media (max-width: 767px) {
  .single-voice .entry_body_main.eye {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .single-voice .entry_body_main.eye .txt {
    width: 100%;
  }
  .single-voice .entry_body_main.eye figure {
    margin: 0 auto 20px;
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  .single-voice td:first-of-type,
  .single-voice td {
    padding: 10px 15px;
    width: 100% !important;
    display: block;
  }
  .single-voice .btn {
    margin: 50px 0;
  }
  .single-voice a.btn02 {
    line-height: 1.2;
  }
}
/* about
-------------------------------------------------- */
/*
.page-about article{
  padding-bottom:0;
}

.page-about .sec{
  margin-bottom: 50px;
}

.page-about .flex{
  display:flex;
  justify-content:space-between;
}

.page-about .flex .txt{
  margin-bottom:0;
  width:50%;
  max-width:460px;
}

.page-about .sec01 .flex .txt{
  margin-bottom:0;
  width:70%;
  max-width:initial;
}

.page-about .fig{
  margin-left:20px;
  width:50%;
  max-width:490px;
}

.page-about .sec01 .fig{
  margin-left:20px;
  width:30%;
  max-width:250px;
}

.page-about .sec01 .fig figure span{
  margin-top:10px;
  padding-left:10px;
  font-size:14px;
  border-left:5px solid #ede4d9;
  display:inline-block;
}

.page-about .sec ul{
  margin:0 0 15px 0;
  width:calc(100% - 20px);
  box-sizing:border-box;
}
.page-about .sec li{
  position:relative;
  padding:0 0 0 20px;
  margin-bottom: 10px;
}
.page-about .sec li::before{
  position:absolute;
  content:'●';
  color:#c6ebfb;
  top:0;
  left:0;
}

.page-about .sec h3{
  margin-bottom: 40px;
  font-size:24px;
  font-weight:bold;
}

.page-about .sec p{
  margin-bottom: 30px;
  line-height:2;
}

.page-about .sec01 p{
  margin-bottom: 15px;
}

.page-about .gmap{
  margin-bottom: 30px;
}

@media (max-width: $breakpoint_sp) {
  .page-about .h201{
    font-size: 22px;
    line-height:1.2;
    padding-left:30px;
  }
  .page-about .flex{
    display:block;
  }
  .page-about .flex .txt{
    width:100%;
  }
  .page-about .sec01 .flex .txt{
    width:100%;
  }
  .page-about .flex .fig{
    margin:0 auto;
    width:100%;
    max-width:400px;
  }
  .page-about .sec01 .fig figure{
    margin-left:0;
  }
  .page-about .sec01 .fig figure{
    margin:0 auto;
    width:250px;
  }
}
*/
/* salon 講座・サロン＆入会案内
-------------------------------------------------- */
/*
.page-salon article{
  padding-bottom:0;
}

.page-salon .sec{
  margin-bottom: 50px;
}

.page-salon .sec ul{
  margin:0 0 15px 0;
  padding:0;
  width:calc(100% - 20px);
  box-sizing:border-box;
}
.page-salon .sec li{
  position:relative;
  padding:0 0 0 20px;
  margin-bottom: 10px;
}
.page-salon .sec li::before{
  position:absolute;
  content:'●';
  color:#c6ebfb;
  top:0;
  left:0;
}

.page-salon .sec h3{
  margin-bottom: 25px;
  font-size:20px;
  font-weight:bold;
  border-bottom:1px dotted #c6ebfb;
}

.page-salon .sec p{
  margin-bottom: 45px;
  line-height:2;
}

.page-salon .sec01 .tokuten{
  margin-bottom: 30px;
  padding:30px 40px 20px;
  background:#fff9df;
  box-sizing:border-box;
  border-radius:10px;
}

.page-salon table{
  margin-bottom: 40px;
  width:100%;
  border:1px solid #ede4d9;
  box-sizing:border-box;
}

.page-salon th{
  padding:15px 20px;
  width:30%;
  text-align:left;
  font-weight:normal;
  background:#fff8ed;
  border:1px solid #ede4d9;
  box-sizing:border-box;
}

.page-salon td{
  padding:15px 20px;
  width:70%;
  border:1px solid #ede4d9;
  box-sizing:border-box;
}

.page-salon td a.btn02{
  margin:0 0 10px;
  padding:2px 50px 2px 40px;
  font-size:16px;
  background: #c6ebfb url(../img/common/icn_external.png) 92% 45% no-repeat
}

.page-salon .sec02 .box{
  margin: 20px 0 40px;
}

.page-salon .sec02 .box dl{
  width:100%;
  display:table;
  border:1px solid #ede4d9;
  box-sizing:border-box;
}
.page-salon .sec02 dl.pc{
  display:table;
  border-bottom:none;
}

.page-salon .sec02 dt{
  padding:15px 20px;
  width:50%;
  text-align:left;
  font-weight:normal;
  background:#ffcd81;
  box-sizing:border-box;
  display:table-cell;
}
.page-salon .sec02 dt.sp{
  display:none;
}

.page-salon .sec02 dd{
  padding:15px 20px;
  width:50%;
  box-sizing:border-box;
  display:table-cell;
  vertical-align:middle;
}
.page-salon .sec02 dd.dd01{
  background:#fff8ed;
}

.page-salon .sec02 dt:first-of-type,
.page-salon .sec02 dd:first-of-type{
  border-right:1px solid #ede4d9;
}

.page-salon .sec02 p{
  margin-bottom: 0;
}

.page-salon .sec02 p.ind01{
  padding-left:1em;
  text-indent:-1em;
}


@media (max-width: $breakpoint_sp) {
  .page-salon .h201{
    font-size: 22px;
    line-height:1.2;
    padding-left:30px;
  }
  .page-salon .sec01 .tokuten{
    margin-bottom: 30px;
    padding:15px;
    background:#fff9df;
    box-sizing:border-box;
    border-radius:10px;
  }
  .page-salon th,
  .page-salon td{
    padding:10px 15px;
    width:100%;
    display:block;
  }
  .page-salon td .btn{
    text-align:center;
  }
  .page-salon td a.btn02{
  }
  .page-salon .sec02 .box{
    margin-bottom: 40px;    
  }
  .page-salon .sec02 dl{
    display:block;
  }
  .page-salon .sec02 dl.pc{
    display:none;
  }
  .page-salon .sec02 dt{
    padding:10px 15px;
    width:100%;
    border:1px solid #ede4d9;
    border-bottom:none;
    display:block;
  }
  .page-salon .sec02 dt.sp{
    display:block;
    border:none;
  }
  .page-salon .sec02 dd{
    padding:10px 15px;
    width:100%;
    border-top:1px solid #ede4d9;
    border-bottom:none;
    display:block;
  }
  .page-salon .sec02 dt:first-of-type,
  .page-salon .sec02 dd:first-of-type{
    border-right:none;
  }
}
*/
/* inner_life_balance インナーライフバランス®大人の健康美人ダイエット
-------------------------------------------------- */
/*
.page-inner_life_balance article{
  padding-bottom:0;
}

.page-inner_life_balance .sec{
  margin-bottom: 70px;
}

.page-inner_life_balance .sec h3{
  margin-bottom: 25px;
  font-size:20px;
  font-weight:bold;
  border-bottom:1px dotted #c6ebfb;
}

.page-inner_life_balance .sec p{
  margin-bottom: 25px;
  line-height:1.8;
}

.page-inner_life_balance .sec .box{
  margin-bottom: 40px;
}

.page-inner_life_balance .sec .box figure{
  max-width:490px;
}

.page-inner_life_balance .sec .box.flex{
  display:flex;
  justify-content: space-between;
}

.page-inner_life_balance .sec .box.flex .txt{
  width:calc(100% - 510px);
}

.page-inner_life_balance .sec02 .ttl{
  margin:40px auto;
  width:94%;
  max-width:554px;
}

.page-inner_life_balance .sec04 ul.chk{
  margin: 40px 0;
  width:auto;
  display: flex;
  flex-wrap: wrap;
}

.page-inner_life_balance .sec04 ul.chk li{
  position: relative;
  margin-right: 20px;
  padding-left: 20px;
  display: inline-block;
}

.page-inner_life_balance .sec04 ul.chk > li::before{
  position: absolute;
  content: '';
  width: 20px;
  height: 18px;
  top: 0;
  left: 0;
  background: url(../img/common/icn_chk.png) no-repeat 0 0;
  background-size: 16px 18px;
}

.page-inner_life_balance .sec04 .fact10{
  margin-bottom: 30px;
  padding-top:20px;
}

.page-inner_life_balance .sec05 .box.flex .txt{
  width:calc(100% - 290px);
}

.page-inner_life_balance .sec05 .box.flex figure{
  padding-top: 1em;
}

.page-inner_life_balance .sec08 .box {
  margin-bottom: 0;
}

.page-inner_life_balance .sec09 .arrow{
  margin:50px auto 20px;
  width:100%;
  max-width:600px;
}

.mailmagazine{
  margin-bottom: 60px;
  width:100%;
  border:15px solid #f57785;
  box-sizing:border-box;
  text-align:center;
}
.mailmagazine .barance6{
  margin: 0 auto 50px;
  max-width:842px;
}
.mailmagazine .bg{
  padding:50px 0;
  background:#ffeceb;
}
.mailmagazine p{
  margin-bottom: 40px;
  font-size:30px;
  font-family: YuMincho, 'Yu Mincho', "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.mailmagazine dl.pub_form{
  margin:0 auto 20px;
  width:100%;
  max-width:560px;
  overflow:hidden;
}
.mailmagazine dl.pub_form.pub02{
  margin:0 auto 40px;
}
.mailmagazine .pub_form dt{
  margin-right:5%;
  width:24%;
  font-size:18px;
  font-weight:bold;
  font-family: YuMincho, 'Yu Mincho', "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  float:left;
}
.mailmagazine .pub_form dd{
  width:70%;
  float:left;
  display:flex;
  justify-content: space-between;
}
.mailmagazine .pub_form input[type="text"]{
  width:100%;
  font-size:16px;
  font-family: YuMincho, 'Yu Mincho', "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  border:3px solid #f57785;
  box-sizing:borer-box;
}
.mailmagazine dl.pub_form.pub02 dd{
  display: flex;
  justify-content: space-between;
  box-sizing:border-box;
}
.mailmagazine dl.pub_form.pub02 input[type="text"]{
  width:48%;
  font-size:16px;
  font-family: YuMincho, 'Yu Mincho', "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  box-sizing:border-box;
}

@media (max-width: $breakpoint_sp) {
  .page-inner_life_balance .h201{
    font-size: 22px;
    line-height:1.2;
    padding-left:30px;
  }
  .page-inner_life_balance .sec .box{
    margin-bottom: 40px;    
  }
  .page-inner_life_balance .sec .box.flex{
    display:block;
  }
  .page-inner_life_balance .sec .box.flex .txt{
    width:100%;
  }
  .page-inner_life_balance .sec .box figure.fr{
    margin-bottom: 20px;
    display:block;
  }
  .page-inner_life_balance .sec05 .box.flex{
    display:flex;
    flex-wrap:wrap;
    flex-direction: column-reverse;
  }
  .page-inner_life_balance .sec05 .box.flex figure{
    margin:0 auto 20px;
    padding-top: 0;
    width:94%;
    max-width:266px;
  }

  .arrow img,
  .arrow02 img{
    width:100%;
    max-width:600px;
    height:auto;
  }

  .mailmagazine{
    border:8px solid #f57785;
  }
  .mailmagazine p{
    padding-left:1em;
    padding-right:1em;
    margin-bottom: 40px;
    font-size:20px;
    font-weight:bold;
  }
  .mailmagazine .pub_form dt{
    margin:0 auto;
    width:94%;
    float:none;
  }
  .mailmagazine .pub_form dd{
    margin:0 auto;
    width:94%;
    float:none;
  }
  .mailmagazine input[type="image"]{
    margin:0 auto;
    width:94%;
  }

}
*/
/* session 個人セッション
-------------------------------------------------- */
/*
.page-session article{
  padding-bottom:0;
}

.page-session .sec{
  margin-bottom: 50px;
}

.page-session .sec h3{
  margin-bottom: 25px;
  font-size:20px;
  font-weight:bold;
  border-bottom:1px dotted #c6ebfb;
}

.page-session .sec p{
  margin-bottom: 45px;
}

.page-session .btn{
  text-align:center;
}

.page-session a.btn02{
  margin:0 auto 70px;
  padding:15px 50px 15px 40px;
  width:100%;
  max-width:500px;
  font-size:24px;
  border-radius:40px;
  box-sizing:border-box;
  background: #c6ebfb url(../img/session/icn_external.png) 88% 45% no-repeat
}

.page-session .sec .box{
  margin: 20px 0 40px;
}
.page-session .sec.sec01 .box:last-of-type{
  margin: 20px 0 80px;
}
.page-session .sec.sec02 .box{
  margin: 20px 0 10px;
}

.page-session .sec .box dl{
  width:100%;
  display:table;
  box-sizing:border-box;
}
.page-session .sec dl.pc{
  border-bottom:none;
}

.page-session .sec dt{
  padding:15px 20px;
  width:33%;
  text-align:center;
  font-weight:normal;
  background:#ffcd81;
  box-sizing:border-box;
  display:table-cell;
  border-right:1px solid #ede4d9;
}
.page-session .sec dt.sp{
  display:none;
}

.page-session .sec dd{
  padding:15px 20px;
  width:33%;
  text-align:center;
  box-sizing:border-box;
  display:table-cell;
  border-left:none;
  border-right:1px solid #ede4d9;
  border-bottom:1px solid #ede4d9;
}

.page-session .sec dd.dd01{
  text-align:left;
  background:#fff8ed;
}

.page-session .sec dt:first-of-type,
.page-session .sec dd:first-of-type{
  width:34%;
  border-left:1px solid #ede4d9;
}

.page-session .sec.sec02 dt,
.page-session .sec.sec02 dd{
  width:50%;
}

.page-session .sec p{
  margin-bottom: 0;
}

.page-session .sec p.ind01{
  padding-left:1em;
  text-indent:-1em;
}
.page-session .sec.sec02 p.ind01{
  margin-bottom: 80px;
}

.page-session .sec.sec03 .flex{
  display:flex;
  justify-content: space-between;
}

.page-session .sec.sec03 .flex .tel img{
  margin-bottom: 10px;
  width:238px;
}

.page-session .sec.sec03 ul{
  margin:0 0 50px 20px;
  list-style-type:decimal;
}

.page-session .sec.sec04 .box{
  margin-bottom: 50px;
  border-top:1px solid #ede4d9;
}
.page-session .sec.sec04 .note{
  margin-bottom: 20px;
}

.page-session .sec.sec05 .flex{
  margin-bottom: 70px;
  display:flex;
  justify-content: space-between;
}
.page-session .sec.sec05 .flex .txt{
  width:50%;
  max-width:470px;
}
.page-session .sec.sec05 .flex .txt ul{
  margin:0 0 0 20px;
  list-style-type:disc;
}
.page-session .sec.sec05 .flex figure{
  width:50%;
  max-width:490px;
}

@media (max-width: $breakpoint_sp) {
  .page-session .h201{
    font-size: 22px;
    line-height:1.2;
    padding-left:30px;
  }
  .page-session a.btn02{
    margin:0 auto 30px;
    padding:15px 30px 15px 15px;
    font-size:18px;
    border-radius:20px
  }
  .page-session .sec .box{
    margin-bottom: 40px;    
  }
  .page-session .sec dl{
    display:block;
  }
  .page-session .sec dl.last{
    border-bottom:1px solid #ede4d9;
  }
  .page-session .sec dl.pc{
    display:none;
  }
  .page-session .sec dt{
    padding:10px 15px;
    width:100%;
    border:1px solid #ede4d9;
    border-bottom:none;
    display:block;
  }
  .page-session .sec dt.sp{
    display:block;
    border:none;
  }
  .page-session .sec dd{
    padding:10px 15px;
    width:100%;
    border-top:1px solid #ede4d9;
    border-left:1px solid #ede4d9;
    border-bottom:none;
    display:block;
  }
  .page-session .sec dd.dd01{
    border-right:1px solid #ede4d9 !important;
  }

  .page-session .sec dt:first-of-type,
  .page-session .sec dd:first-of-type{
    width:100%;
    text-align:center;
    border-right:none;
  }

  .page-session .sec.sec02 dt,
  .page-session .sec.sec02 dd{
    width:100%;
  }

  .page-session .sec.sec03 .flex{
    flex-direction: column-reverse;
  }
  .page-session .sec.sec03 .flex figure{
    margin-bottom: 15px;
  }  
  .page-session .sec.sec05 .flex{
    flex-direction: column-reverse;
  }
  .page-session .sec.sec05 .flex figure{
    margin-bottom: 15px;
  }
  .page-session .sec.sec05 .flex .txt{
    width:100%;
  }
  .page-session .sec.sec05 .flex figure{
    width:100%;
  }
}
*/
/* policy プライバシーポリシー
-------------------------------------------------- */
/*
.page-policy .sec01{ margin-bottom: 50px;}
.page-policy .sec01 ul{ padding-left: 15px;}
.page-policy .sec01 li{ text-indent: -1em; margin-left: 1em;}
.page-policy .sec01 li:before{ content: '・';}
*/
@media (max-width: 767px) {
  /* SP用 */
  /*
    .page-policy .sec01{ margin-bottom: 40px;}
    .page-policy .sec01 ul{ padding-left: 0;}
  */
}