@charset "UTF-8";
a {
  opacity: 1;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

/*---------- 以下共通スタイル ----------*/
html {
  /* スムーズスクロール */
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #59452c;
  min-width: 350px;
  margin: 0 auto;
  position: relative;
  /*   背景固定 */
}
body.fixed {
  overflow: hidden;
  position: relative;
  z-index: 701;
}

a,
img,
button {
  display: block;
}

img {
  max-width: 100%;
  width: auto;
}

/*----- brクラス -----*/
.br_pc {
  display: none;
}

.br_sp {
  display: block;
}

/*----- textクラス -----*/
/*
概要:
テキストの色、配置の変更
*/
.text-center {
  text-align: center;
}

/*----- displayクラス -----*/
/*
概要:
block,inline,inline-blockに変更
*/
.inline {
  display: inline;
}

/*----- telクラス -----*/
/*
概要:
基本的なtelのスタイル,iconやcolor,sizeなど
詳細な余白等は別指定
*/
.tel {
  line-height: 1;
  pointer-events: none;
  font-weight: 700;
  pointer-events: none;
  letter-spacing: 0;
}
.tel > span {
  font-weight: 700;
  font-size: 0.7em;
  display: inline-block;
  margin-right: 0.35em;
}

/*----- object-fitクラス -----*/
/*
imgにobjectfit:contain or objectfit:coverを与える

概要:
imgにobjectfitおよびobjectpositonを与える

マークアップ例:
<div class="contain-img contain-img-center">
<img src="">
</div>
*/
.contain-img {
  /* 比率で画像サイズを指定するためのクラス */
  /*
  width,height:0;,padding-topを別指定する
  */
}
.contain-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contain-img-center > img {
  -o-object-position: center center;
     object-position: center center;
}
.contain-img-left > img {
  -o-object-position: left center;
     object-position: left center;
}
.contain-img-right > img {
  -o-object-position: right center;
     object-position: right center;
}
.contain-img-fit {
  position: relative;
  overflow: hidden;
}
.contain-img-fit > img {
  position: absolute;
  -o-object-position: center center;
     object-position: center center;
  top: 0;
  left: 0;
}

.cover-img {
  /* 比率で画像サイズを指定するためのクラス */
  /*
  width,height:0;,padding-topを別指定する
  */
}
.cover-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cover-img-center > img {
  -o-object-position: center center;
     object-position: center center;
}
.cover-img-left > img {
  -o-object-position: left center;
     object-position: left center;
}
.cover-img-right > img {
  -o-object-position: right center;
     object-position: right center;
}
.cover-img-fit {
  position: relative;
  overflow: hidden;
}
.cover-img-fit > img {
  position: absolute;
  -o-object-position: center center;
     object-position: center center;
  top: 0;
  left: 0;
}

/*----- innerクラス -----*/
.inner {
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

/*----- secクラス -----*/
/*
概要:
sectionごとに共通化できる、タイトル、余白などを指定
*/
.sec {
  padding: 60px 0;
}
.sec-title {
  font-weight: 700;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  display: flex;
  flex-direction: column;
}
.sec-title.center {
  align-items: center;
}
.sec-title__ja {
  font-size: clamp(22px, 5vw, 32px);
  letter-spacing: 0.1em;
  line-height: 1;
  color: #ee7100;
  display: block;
  width: 100%;
  text-align: center;
}
.sec-title__en {
  font-size: 12px;
  line-height: 1;
  display: block;
  margin-top: 12px;
  padding: 0 12px;
  position: relative;
}
.sec-title__en::before, .sec-title__en::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #0086f7;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.sec-title__en::after {
  right: 0;
}
.sec-title__en::before {
  left: 0;
}
.sec-title.title-mg-b {
  margin-bottom: 35px;
}
.sec-title__deco::after {
  content: "";
  width: 100%;
  height: 4px;
  display: block;
  margin: 12px auto 0;
  background: url(../img/title_deco.png) no-repeat center/contain;
}
.sec-content p {
  line-height: 1.8;
}
.sec-content p:not(:last-child) {
  margin-bottom: 1em;
}

.sub-title {
  font-size: clamp(18px, 4.2857vw, 28px);
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 700;
  color: #0086f7;
  letter-spacing: 0.12em;
  line-height: 1;
  padding-bottom: 0.8em;
  border-bottom: 1px solid #0086f7;
  position: relative;
  text-align: center;
  margin-bottom: 25px;
}
.sub-title::before, .sub-title::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #0086f7;
  position: absolute;
  bottom: -1px;
  transform: translateY(50%);
}
.sub-title::after {
  right: 0;
}
.sub-title::before {
  left: 0;
}

.under-page .sec-title {
  margin-bottom: 40px;
}

/*----- common-tableクラス -----*/
/*
    余白、幅、色、並びなどを共通化したスタイル
*/
.common-table {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
}
.common-table tr {
  display: block;
}
.common-table__head {
  display: block;
  box-sizing: border-box;
}
.common-table__data {
  display: block;
  box-sizing: border-box;
}

/*---------- common-tableここまで ----------*/
/*----------- headerここから -----------*/
.header {
  padding: 10px 15px;
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 101;
}
.header-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.header-logo {
  min-width: 190px;
  max-width: 240px;
  width: 40%;
}
.header-logo img {
  width: 100%;
}
.header__description {
  width: calc(100vw - 30px - 60px);
  font-size: 10px;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
  line-height: 1.3;
  min-width: 270px;
}

/*----------- headerここまで -----------*/
/*---------- 以下navmenu ----------*/
.nav-menu {
  display: none;
}

/*---------- navmenuここまで ----------*/
/*----------- ▽ totop ▽ -----------*/
.to-top {
  width: 50px;
  position: fixed;
  right: 15px;
  z-index: 100;
  bottom: 5%;
}
.to-top img {
  width: 100%;
}

/*----------- △ totop △ -----------*/
/*----------- ▽ footer ▽ -----------*/
.footer {
  width: 100%;
  box-sizing: border-box;
  padding: 100px 0 20px;
  background: url(../img/shape_page_bottom.png) no-repeat bottom right/cover;
}
.footer-inner {
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-nav {
  display: none;
}
.footer-logo {
  width: 240px;
  margin-bottom: 15px;
}
.footer-logo > img {
  width: 100%;
}
.footer__address {
  margin-bottom: 20px;
  font-size: 13px;
  text-align: center;
}
.footer__instagram {
  width: 42px;
  margin: 0 auto;
}
.footer__instagram.pc {
  display: none;
}
.footer-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}
.footer .btn-tel {
  max-width: 300px;
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  border: 1px solid #0086f7;
  padding: 0.7em 0;
  border-radius: 5em;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.footer .btn-tel:hover {
  background-color: #0086f7;
  color: #fff;
  opacity: 1;
}
.footer .btn-mail {
  max-width: 300px;
  width: 100%;
  font-weight: 700;
  background-color: #e5004f;
  color: #fff;
  padding: 1.0625em 1em;
  border-radius: 5em;
}
.footer .btn-mail span {
  display: inline-block;
  padding-left: 2.25em;
  position: relative;
}
.footer .btn-mail span::before {
  content: "";
  width: 1.5em;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("../img/icon_mail_white.png") no-repeat center/contain;
}
.footer .btn-external {
  font-weight: 700;
  width: 100%;
  background-color: #0086f7;
  color: #fff;
  margin-bottom: 20px;
  padding: 1.0625em 1em;
  border-radius: 5em;
}
.footer .btn-external span {
  display: inline-block;
  padding-left: 2.75em;
  position: relative;
}
.footer .btn-external span::before {
  content: "";
  width: 1.5625em;
  height: 1.5625em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("../img/icon_external_white.png") no-repeat center/contain;
}
.footer .copy-right {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  width: 100%;
  text-align: center;
  display: block;
  margin-top: 60px;
}
.footer .copy-right.pc {
  display: none;
}

/*----------- △ footer △ -----------*/
/*--------------- ▼ mobile-nav ▼ ---------------*/
.mobile-nav-btn {
  position: fixed;
  z-index: 1001;
  top: 10px;
  right: 15px;
  background: #f7a300;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  /*activeクラスが付与されると線が回転して×に*/
}
.mobile-nav-btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  background: #fff;
  width: 45%;
  border-radius: 5px;
}
.mobile-nav-btn span:nth-of-type(1) {
  top: 15px;
}
.mobile-nav-btn span:nth-of-type(2) {
  top: 23px;
}
.mobile-nav-btn span:nth-of-type(3) {
  top: 31px;
}
.mobile-nav-btn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.mobile-nav-btn.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}
.mobile-nav-btn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.mobile-nav {
  position: fixed;
  visibility: hidden;
  z-index: 1000;
  box-sizing: border-box;
  overflow-y: auto;
  transition: all 0.6s;
  text-align: center;
  background-color: #ffffff;
  padding: 60px 15px;
  /*----- fade -----*/
  /*----- slideIn 右から -----*/
  /*----- slideIn 上から -----*/
  /*----- slideIn 左から -----*/
  /*----- slideIn 下から -----*/
}
.mobile-nav.fade {
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.mobile-nav.fade.active {
  opacity: 1;
  visibility: visible;
}
.mobile-nav.slideInRight {
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
}
.mobile-nav.slideInRight.active {
  visibility: visible;
  right: 0;
}
.mobile-nav.slideInDown {
  top: -100%;
  left: 0;
  width: 100%;
  height: 80%;
}
.mobile-nav.slideInDown.active {
  visibility: visible;
  top: 0;
}
.mobile-nav.slideInLeft {
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
}
.mobile-nav.slideInLeft.active {
  visibility: visible;
  left: 0;
}
.mobile-nav.slideInUp {
  bottom: -100%;
  left: 0;
  height: 100%;
  width: 100%;
}
.mobile-nav.slideInUp.active {
  visibility: visible;
  bottom: 0;
}
.mobile-nav__logo {
  width: 200px;
  margin: 0 auto 20px;
  transition: all 0.3s;
}
.mobile-nav__logo:hover {
  opacity: 0.7;
}
.mobile-nav__logo > img {
  width: 100%;
}
.mobile-nav__list {
  margin-bottom: 40px;
}
.mobile-nav__item:not(:last-child) {
  margin-bottom: 5px;
}
.mobile-nav__item.toggle .mobile-nav__link::after {
  transform: translateY(-50%) rotate(135deg);
}
.mobile-nav__instagram {
  width: 42px;
  margin: 0 auto;
}
.mobile-nav__link {
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.8em 1em;
  border-bottom: 1px solid #59452c;
  transition: all 0.3s;
}
.mobile-nav__link::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #f7a300;
  border-right: 2px solid #f7a300;
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%) rotate(45deg);
}
.mobile-nav__link:hover {
  color: #f7a300;
}
.mobile-nav__tel {
  font-size: 20px;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 20px;
}
.mobile-nav__address {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.2;
}
.mobile-nav .btn-tel {
  max-width: 300px;
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  border: 1px solid #0086f7;
  padding: 0.7em 0;
  border-radius: 5em;
  letter-spacing: 0;
  margin: 0 auto 10px;
}
.mobile-nav .btn-tel:hover {
  background-color: #0086f7;
  color: #fff;
  opacity: 1;
}
.mobile-nav .btn-mail {
  max-width: 300px;
  width: 100%;
  font-weight: 700;
  margin: 0 auto 10px;
  background-color: #e5004f;
  color: #fff;
  padding: 1.0625em 1em;
  border-radius: 5em;
}
.mobile-nav .btn-mail span {
  display: inline-block;
  padding-left: 2.25em;
  position: relative;
}
.mobile-nav .btn-mail span::before {
  content: "";
  width: 1.5em;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("../img/icon_mail_white.png") no-repeat center/contain;
}
.mobile-nav .btn-external {
  max-width: 300px;
  width: 100%;
  background-color: #0086f7;
  font-weight: 700;
  color: #fff;
  padding: 1.0625em 1em;
  border-radius: 5em;
  margin: 0 auto;
  margin-bottom: 20px;
}
.mobile-nav .btn-external span {
  display: inline-block;
  padding-left: 2.75em;
  position: relative;
}
.mobile-nav .btn-external span::before {
  content: "";
  width: 1.5625em;
  height: 1.5625em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("../img/icon_external_white.png") no-repeat center/contain;
}
.mobile-nav .dropdown-menu {
  top: 100%;
  width: 100%;
}
.mobile-nav .dropdown-menu__item > a {
  width: 90%;
  padding: 0.8em 1em;
  border-bottom: 1px solid #59452c;
  margin-left: auto;
  text-align: left;
  position: relative;
}
.mobile-nav .dropdown-menu__item > a::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  display: block;
  border-top: 2px solid #f7a300;
  border-right: 2px solid #f7a300;
  transform-origin: center center;
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: rotate(45deg) translate(-50%, -50%);
}

/*--------------- ▲ mobile-nav ▲ ---------------*/
/*----------- ▽ btn class ▽ -----------*/
/*
概要:
ボタンのスタイル
色やアイコン、サイズでクラス分けしてあり、組み合わせて使う
マークアップ例:
矢印付き、角丸、Mサイズのボタン
<a class="btn btn-primary btn-round btn-arrow btn-medium">
*/
.btn {
  display: block;
  line-height: 1;
  text-align: center;
}
.btn-primary {
  background-color: #e5004f;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}
.btn-border {
  border: 1px solid #0086f7;
}
.btn-medium {
  max-width: 260px;
  padding: 1.125em 1em;
}
.btn-center {
  margin: 0 auto;
}
.btn-round {
  border-radius: 5em;
}
.btn-more {
  line-height: 56px;
  width: 56px;
  background-color: #e5004f;
  font-weight: 700;
  color: #fff;
  font-size: 11px;
  text-align: center;
  position: relative;
  border-radius: 50%;
}
.btn-more::before, .btn-more::after {
  content: "";
  width: 8px;
  height: 2px;
  position: absolute;
  top: 50%;
  transition: all 0.3s;
}
.btn-more::before {
  background-color: #fff;
  right: 0;
  transform: translate(0, -50%);
}
.btn-more::after {
  background-color: #e5004f;
  right: 0;
  transform: translate(100%, -50%);
}
.btn-more:hover {
  opacity: 1;
  transform: scale(1.05);
}
.btn-more:hover::before {
  width: 0px;
}
.btn-more:hover::after {
  width: 16px;
}

/*----------- △ btn class △ -----------*/
/*----------- ▽ pagenation ▽ -----------*/
.pagenation {
  display: flex;
  justify-content: center;
}
.pagenation li {
  width: 3em;
  height: 3em;
  display: block;
  line-height: 3em;
  text-align: center;
  margin: 0 6px;
  background-color: #fff;
  color: #e5004f;
  border: 1px solid #e5004f;
  border-radius: 50%;
  color: #333;
  font-weight: 700;
}
.pagenation li span {
  color: #e5004f;
  display: block;
  margin: 0 auto;
  transform: translate(1px, -2px);
}
.pagenation .current {
  background-color: #e5004f;
  font-weight: 600;
}
.pagenation .current span {
  color: #fff;
}

/*----------- △ pagenation △ -----------*/
/*---------- 以下breadclumbクラス ----------*/
.bread-clumb {
  padding-top: 16px;
}
.bread-clumb ul {
  display: flex;
  width: 100%;
  font-size: 12px;
}
.bread-clumb li {
  padding-right: 3em;
  position: relative;
}
.bread-clumb li a {
  display: block;
  white-space: nowrap;
  max-width: 8em;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}
.bread-clumb li a:hover {
  color: #f7a300;
}
.bread-clumb li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bread-clumb li:not(:last-child)::after {
  content: ">";
  width: 1em;
  height: 1em;
  display: block;
  margin-right: 1em;
  position: absolute;
  top: 0;
  right: 0;
}

/*---------- breadclumbクラスここまで ----------*/
/*------------ prevnextここから --------------*/
.prev-next__area {
  display: flex;
  max-width: 796px;
  margin: 40px auto 0;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  padding: 20px 0;
  border-top: 1px solid #59452c;
}
.prev-next__link {
  display: flex;
  align-items: center;
}
.prev-next__link.prev::before {
  content: "";
  display: block;
  margin-right: 0.8em;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #59452c;
  border-left: 2px solid #59452c;
  transform: rotate(-45deg);
}
.prev-next__link.next::after {
  content: "";
  display: block;
  margin-left: 0.8em;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #59452c;
  border-right: 2px solid #59452c;
  transform: rotate(45deg);
}
.prev-next__link.back {
  padding: 0 12px;
  border-left: 1px solid #59452c;
  border-right: 1px solid #59452c;
  margin: 0 30px;
}
.prev-next__link.prev, .prev-next__link.next, .prev-next__link.back {
  transition: all 0.3s;
}
.prev-next__link.prev::before, .prev-next__link.prev::after, .prev-next__link.next::before, .prev-next__link.next::after, .prev-next__link.back::before, .prev-next__link.back::after {
  transition: all 0.3s;
}
.prev-next__link.prev:hover, .prev-next__link.next:hover, .prev-next__link.back:hover {
  color: #f7a300;
}
.prev-next__link.prev:hover::before, .prev-next__link.prev:hover::after, .prev-next__link.next:hover::before, .prev-next__link.next:hover::after, .prev-next__link.back:hover::before, .prev-next__link.back:hover::after {
  border-color: #f7a300;
}

/*------------ prevnextここまで --------------*//*# sourceMappingURL=common_sp.css.map */