@charset "UTF-8";
/*====================================
　早見表
  $conts-width-l $conts-width-m $conts-width-s
  $color-○○○○ 
  $font-color-black
  $font-family-gothic  $font-family-mincho
  @include(font-l) @include(font-m) @include(font-s)

  @include(full-width)
  @include(flex-column)  @include(flex-center)
  auto-px(min,max,最終可変幅)
====================================*/
/*====================================*/
/*----------------------------------
  Structure
----------------------------------
0. タグ設定
  0.1. ページサイズ
1. ヘッダー
  1.1	ナビゲーション
  1.2 見出し
2. コンテンツ
  2.1. トップへ戻る
3. フッター

====================================*/
/*----------------------------------
	0. タグ設定
------------------------------------*/
/* ------ ベース ------- */
html {
  font-size: 62.5%;
}

body {
  font-size: clamp(16px, 2.083vw, 18px);
  font-weight: normal;
  line-height: 1.9em;
  color: #000;
  font-family: Quicksand, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  position: relative;
}
@media screen and (max-width: 768px) {
  body {
    font-size: clamp(14px, 1.823vw, 16px);
  }
}

/* ------ link ------- */
a {
  color: #03C;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a.textlinkUl {
  text-decoration: underline;
}
a img {
  border: none;
  border: 0;
}
a:hover img.link {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}

/* ------ img ------- */
@media screen and (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
    width: auto;
  }
}
/*----------------------------------
	1. ヘッダー
------------------------------------*/
.header__inner {
  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;
  padding: 5px 3% 5px;
  position: relative;
}

@media screen and (max-width: 480px) {
  .header__inner {
    padding: 10px 0 4px 10px;
  }
}
.header__title .top-description {
  color: #313333;
  font-size: 10px;
  line-height: 1;
  position: absolute;
  top: 5px;
  left: 3%;
}
.header__title h1 {
  padding-top: 10px;
  font-size: initial;
}
.header__title h1 a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.header__title h1 img {
  max-width: 100%;
}
@media screen and (max-width: 1000px) {
  .header__title h1 {
    width: clamp(160px, 20.833vw, 250px);
  }
}

.header-number {
  text-align: right;
}
.header-number span {
  font-size: clamp(12px, 2.5vw, 14px);
  display: inline-block;
  margin-right: 2em;
  line-height: 1.5;
}
.header-number img {
  vertical-align: bottom;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, transparent), color-stop(30%, rgba(255, 242, 31, 0.5)));
  background: linear-gradient(transparent 30%, rgba(255, 242, 31, 0.5) 30%);
}

.nav-cover {
  padding-right: 100px;
}
@media screen and (max-width: 1000px) {
  .nav-cover {
    padding-right: clamp(60px, 7.813vw, 100px);
  }
}
.nav-cover .header-contact {
  position: absolute;
  top: 0;
  right: 0;
}
.nav-cover .header-contact img {
  max-width: 100%;
  width: 125px;
  height: 115px;
}
@media screen and (max-width: 1000px) {
  .nav-cover .header-contact {
    width: clamp(90px, 11.719vw, 125px);
  }
}

/*----------------------------------
	1.1. ナビゲーション
------------------------------------*/
/* フォントサイズ */
/* フォントの色 */
/* SP版背景 */
/* SP版ハンバーガーメニューの色 */
#nav li a {
  display: block;
  color: #000;
  position: relative;
  font-size: clamp(15px, 1.5vw, 18px);
}

#nav li a:hover {
  text-decoration: none;
  opacity: 0.7;
}

#nav .menu-item-has-children > a:after,
#nav .menu-item-has-children > a:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 10px;
  height: 1px;
  background: #000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#nav .menu-item-has-children > a:after {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

#nav .menu-item-has-children > a.open:before {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}

#nav .menu-item-has-children > a.open:after {
  background: transparent;
}

#nav .menu-item-has-children .sub-menu {
  display: none;
}

@media only screen and (max-width: 768px) {
  .overlay {
    width: 0;
    height: 0;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    background: rgba(255, 255, 255, 0.7);
  }
  .overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  #main {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    min-height: 100vh;
  }
  #main.open {
    position: fixed;
    width: 100%;
  }
  #menu_btn {
    top: 14px;
    right: 1.5%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
    position: fixed;
    z-index: 9999;
    width: 50px;
    height: 50px;
    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;
  }
  .menu-trigger {
    width: 18px;
    height: 16px;
    position: relative;
  }
  .menu-trigger span {
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 7px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
            transform: translateY(8px) rotate(-45deg);
  }
  #menu_btn.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-7px) rotate(45deg);
            transform: translateY(-7px) rotate(45deg);
  }
  #nav {
    width: 280px;
    height: 100%;
    overflow: auto;
    padding: 50px 0;
    background-color: #fff21f;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 12;
    -webkit-transform: translate(280px);
            transform: translate(280px);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  #nav.open {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  #nav li {
    padding: 0 20px;
  }
  #nav li a {
    position: relative;
    padding: 20px;
    color: #000;
  }
  #nav .menu-item-has-children > a:first-of-type {
    position: relative;
    padding-right: 2em;
  }
  #nav .menu-item-has-children > a.open:first-of-type {
    color: #000;
  }
  #nav .menu-item-has-children .sub-menu {
    margin-bottom: 20px;
  }
  #nav .menu-item-has-children .sub-menu li {
    padding: 0;
    margin-bottom: 20px;
  }
  #nav .menu-item-has-children .sub-menu li a {
    padding: 0 20px 0 30px;
  }
  #nav .menu-item-has-children .sub-menu li:last-child {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 769px) {
  #menu_btn, .overlay {
    display: none;
  }
  #nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  #nav ul li {
    position: relative;
  }
  #nav ul li a {
    padding: 0.5em;
  }
  #nav ul li:not(:last-child) {
    margin-right: 10px;
  }
  #nav .current-menu-item a {
    color: #000;
  }
  #nav .menu-item-has-children > a {
    padding-right: 40px;
  }
  #nav .menu-item-has-children > a.open:first-of-type,
  #nav .current-menu-item a {
    color: #000;
  }
  #nav .current-menu-item li a {
    color: #000;
  }
  #nav li ul.sub-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #fff;
    position: absolute;
    width: 140px;
    left: 50%;
    top: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 10px 0;
  }
  #nav li ul.sub-menu li {
    width: 100%;
  }
  #nav li ul.sub-menu li a {
    line-height: 1.6em;
    color: #000;
    padding: 0.5em 20px;
    font-size: 90%;
  }
  #nav li ul.sub-menu li a:hover {
    color: #83759a;
  }
}
@media screen and (min-width: 768px) and (max-width: 850px) {
  #nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
  }
  #nav ul a {
    padding: 1.5em 0.5em;
  }
}
/*----------------------------------
	1.1. ぱんくず
------------------------------------*/
.bread-clumb {
  max-width: 1200px;
  margin: 0 auto 80px;
  width: 92%;
}

.bread-clumb ul li {
  display: inline-block;
  -webkit-transform: rotateZ(0.03deg);
          transform: rotateZ(0.03deg);
}

.bread-clumb ul span {
  padding: 0 10px;
}

.bread-clumb ul span.en {
  display: none;
}

@media screen and (max-width: 480px) {
  .bread-clumb {
    margin-bottom: 40px;
  }
}
/*----------------------------------
	1.2. 見出し
------------------------------------*/
p {
  margin-bottom: 1em;
  font-size: clamp(14px, 2.917vw, 16px);
  line-height: 1.7em;
  -webkit-transform: rotateZ(0.03deg);
          transform: rotateZ(0.03deg);
}

/* 共通 */
.h-style01 {
  font-size: clamp(22px, 2.865vw, 32px);
  font-weight: bold;
  padding: 1em 1.3em;
  margin-bottom: 1.5em;
  position: relative;
}
@media screen and (max-width: 480px) {
  .h-style01 {
    padding: 0.7em 1em;
  }
}
.h-style01::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border: solid 1px #000;
  top: 0;
  left: 0;
  z-index: 2;
}
.h-style01::after {
  content: "";
  position: absolute;
  display: block;
  width: clamp(260px, 33.854vw, 314px);
  aspect-ratio: 314/73;
  background: url(../images/h-style01.svg) no-repeat;
  background-size: cover;
  right: -20px;
  bottom: -20px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .h-style01::after {
    width: clamp(170px, 35.417vw, 260px);
  }
}
@media screen and (max-width: 480px) {
  .h-style01::after {
    right: -10px;
    bottom: -10px;
  }
}

.h-style02 {
  font-size: clamp(18px, 2.344vw, 24px);
  font-weight: bold;
  padding: 0.5em 1em 0.5em 1.5em;
  margin-bottom: 1.5em;
  background: url(../images/h-style02.svg) no-repeat left center, -webkit-gradient(linear, left top, right top, from(rgb(255, 242, 31)), color-stop(20%, rgb(255, 242, 31)), color-stop(60%, rgba(255, 242, 31, 0.7)), to(rgba(255, 242, 31, 0)));
  background: url(../images/h-style02.svg) no-repeat left center, linear-gradient(90deg, rgb(255, 242, 31) 0%, rgb(255, 242, 31) 20%, rgba(255, 242, 31, 0.7) 60%, rgba(255, 242, 31, 0) 100%);
  background-size: auto 100%, auto;
}

.h-style03 {
  font-size: clamp(16px, 2.083vw, 20px);
  font-weight: bold;
  margin-bottom: 1em;
}
.h-style03::before {
  content: "";
  display: inline-block;
  background: url(../images/icon-list02.svg) no-repeat left center;
  background-size: auto 100%;
  aspect-ratio: 1/1;
  width: 1em;
  margin-right: 0.7em;
}

/*----------------------------------
	2. コンテンツ
------------------------------------*/
.conts__cell--0 {
  padding: 0;
}

.conts__cell--tb20 {
  padding: 20px 0;
}

.conts__cell--t20 {
  padding-top: 20px;
}

.conts__cell--b20 {
  padding-bottom: 20px;
}

.conts__cell--tb40 {
  padding: 40px 0;
}

.conts__cell--t40 {
  padding-top: 40px;
}

.conts__cell--b40 {
  padding-bottom: 40px;
}

.conts__cell--tb60 {
  padding: 60px 0;
}

.conts__cell--t60 {
  padding-top: 60px;
}

.conts__cell--b60 {
  padding-bottom: 60px;
}

.conts__cell--tb80 {
  padding: 80px 0;
}

.conts__cell--t80b40 {
  padding: 80px 0 40px;
}

.conts__cell--t80 {
  padding-top: 80px;
}

.conts__cell--b80 {
  padding-bottom: 80px;
}

.conts__inner {
  max-width: 1000px;
  margin: 0 auto 0;
  width: 90%;
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: red;
}

/*----------------------------------
  2.1. トップへ戻る
------------------------------------*/
.top-return {
  text-align: right;
  margin: 0 30px 0;
}

/*----------------------------------
	3. フッター
------------------------------------*/
.page-bottom {
  background: url(../images/naminami.svg) repeat-x bottom, url(../images/pb-bg01.jpg) no-repeat center bottom;
  background-size: auto 55px, auto;
  padding-bottom: 400px;
}
@media screen and (max-width: 1140px) {
  .page-bottom {
    padding: 0 3% clamp(200px, 41.667vw, 400px);
    background-size: auto clamp(20px, 4.167vw, 55px), 90%;
  }
}
.page-bottom__bnr {
  max-width: 1140px;
  margin: 0 auto 80px;
}
.page-bottom__bnr img {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .page-bottom__bnr {
    margin: 0 auto clamp(40px, 8.333vw, 80px);
  }
  .page-bottom__bnr .column-box__40 {
    width: 43%;
  }
  .page-bottom__bnr .column-box__50 {
    width: 54%;
  }
}
@media screen and (max-width: 600px) {
  .page-bottom__bnr .column-box__40 {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .page-bottom__bnr .column-box__50 {
    width: 100%;
    text-align: center;
  }
  .page-bottom__bnr .column-box__50 img {
    margin-bottom: 10px;
  }
}
.page-bottom__tel {
  text-align: center;
}
.page-bottom__tel p {
  font-size: clamp(22px, 2.865vw, 30px);
  margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
  .page-bottom__tel p {
    font-size: clamp(20px, 4.167vw, 22px);
  }
}
.page-bottom__tel a {
  color: #000;
  font-size: clamp(50px, 6.51vw, 70px);
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .page-bottom__tel a {
    font-size: clamp(40px, 8.333vw, 50px);
  }
}

#site-footer {
  background-color: #fff21f;
  margin-top: 0px !important;
  padding-top: 40px !important;
}

.footer-nav {
  font-size: clamp(16px, 3.333vw, 18px);
  max-width: 800px;
  width: 94%;
  margin: 0 auto 60px;
}
.footer-nav 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;
}
@media screen and (max-width: 768px) {
  .footer-nav ul {
    max-width: 470px;
    margin: auto;
  }
  .footer-nav li {
    width: 31%;
    text-align: center;
    padding: 0.5em 0;
  }
}
@media screen and (max-width: 320px) {
  .footer-nav ul {
    display: block;
  }
  .footer-nav li {
    width: 100%;
  }
}

.footer-info {
  max-width: 1000px;
  width: 94%;
  margin: 0 auto 40px;
}
.footer-info address {
  text-align: center;
}
.footer-info .footer-logo {
  display: inline-block;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  max-width: 420px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .footer-info .footer-logo {
    max-width: clamp(230px, 47.917vw, 420px);
  }
  .footer-info .footer-logo img {
    width: 100%;
  }
}
.footer-info .footer-sns {
  max-width: 400px;
  margin: auto;
}
.footer-info .footer-sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer-info .footer-sns li {
  width: 28%;
}