/*==========================================
全デバイス共通［common］
　・ヘッダー
　・フッター
  ・ボタン
	・リンク
　・見出し
　・テキスト
　・コンテンツボックス
===========================================*/
:root {
  --text-color: #151515;
  --main-color: #932e44;
  --sub-color: #998000;
  --line-color: #ddd;
  --bg-color: #ded8d4;
  --bg-color2: #a89990;
  --vw: 1vw;
}

html {
  font-size: 62.5%;
}

body {
  color: var(--text-color);
  font-family: 'ZenKakuGothicNew', sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  position: relative;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a:link {
  color: var(--text-color);
  transition-duration: .3s;
}

@media (any-hover: hover) {

  a:hover,
  a:visited:hover,
  .footerNavList li a:hover {
    opacity: .8;
  }
}

/*フォント*/

@font-face {
  font-family: 'ZenKakuGothicNew';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/ZenKakuGothicNew-Medium.woff') format('woff');
}

@font-face {
  font-family: 'ZenKakuGothicNew';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/ZenKakuGothicNew-Bold.woff') format('woff');
}

.lato {
  font-family: "Lato", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* スキップリンク */
.skip-nav {
  margin: 0;
  position: relative;
}

.skip-link a {
  position: absolute;
  top: -120px;
  display: inline-block;
  padding: 2px 10px;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  background: var(--text-color);
  transition: top .3s ease;
  z-index: 999999;
}

.skip-link a:focus-visible {
  left: 0;
  top: 0;
}

/*視覚的には非表示にしつつ、スクリーンリーダでは読む*/
.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
  color: var(--text-color);
}

/*==========================================
 PC［1001px~］
===========================================*/
/*------------
 header
------------*/
.headerWrap {
  margin: 0 auto 10px;
  padding: 10px 0 0;
  width: 100%;
  height: auto;
  transition-duration: .3s;
  transition-property: margin, opacity, visibility;
  opacity: 1;
  visibility: visible;
  border-top: solid 10px var(--bg-color2);
}

.headerWrap.js-fixed {
  margin: 0 auto;
  padding: 0 0;

  position: fixed;
  top: 0;
  z-index: 999;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, margin 0s;
  animation: fadeInHeader 1.5s;
  border-top: none;

}

@keyframes fadeInHeader {
  from {
    opacity: 0;
    visibility: visible;
  }

  to {
    opacity: 1;
    visibility: visible;
  }
}

.headerInner {
  margin: auto;
  width: 100%;
  position: relative;
  transition-duration: .3s;
  align-items: center;
  background-color: #fff;
  justify-content: start;
}

.headerInner .inner {
  width: min(95%, 1000px);
}

/*ロゴ*/
.logoArea {
  width: 240px;
  display: flex;
  align-content: center;
  align-items: center;
  transition-duration: .3s;
}

.logoArea a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition-duration: .3s;
}

@media (any-hover: hover) {
  .logoArea a:hover {
    opacity: .7;
  }
}

.logoArea .logo {
  width: 100%;
  height: 100%;
  pointer-events: auto;
  display: block;
  transition-duration: .3s;
  object-fit: contain;
  object-position: left;
}

/*===global-nav===*/
.global-nav .nav-list {
  width: 100%;
  display: flex;
  align-items: baseline;
  position: relative;
  gap: 25px;
}

.global-nav .nav-list>li {
  /* flex-grow: 1;
  flex-basis: 0;
  z-index: 1;*/
  position: relative;
}

.global-nav .nav-list .nav-item a {
  padding: 35px 0 30px 0;
  height: 100%;
  display: flex;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.25;
  align-items: center;
  flex-direction: column;
  font-size: 1.4rem;
  letter-spacing: 0;
  color: var(--text-color);
  position: relative;
}

/*カレント*/
.global-nav .nav-list .nav-item a.current-menu-item {
  position: relative;
  color: var(--main-color);
}

@media screen and (min-width: 1079px) {

  /*カレント*/
  .global-nav .nav-list .nav-item a.current-menu-item::before {
    content: '';
    margin-inline: auto;
    display: inline-block;
    width: 5px;
    height: 5px;
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    border-radius: 50%;
    background-color: var(--main-color);
  }

  /*PCに反映するスタイル*/
  .global-nav .nav-list .nav-item:hover>a,
  .global-nav .nav-list .nav-item>a:hover {
    color: var(--main-color);
    opacity: 1;
  }

  .global-nav .nav-list .nav-item:hover>a::after {
    transform: rotate(-135deg);
    top: 45px;
  }

  /* サブメニュー*/
  .nav-item_sub {
    padding: 0;
    transform: scale(0.7);
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0.7);
    visibility: hidden;
    opacity: 0;
    transition-duration: .3s;
    width: 300px;
  }

  /* 背景オーバーレイ */

  .nav-item:hover::before,
  .nav-item:focus-within::before {
    content: '';
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    height: calc(100vh - 82px);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    pointer-events: none;
    mix-blend-mode: multiply;
  }

  .nav-item:hover:has(.nav-item_sub)::before,
  .nav-item:focus-within:has(.nav-item_sub)::before {
    opacity: 1;
    visibility: visible;
  }

}

.global-nav .nav-list .nav-item.map {
  align-items: baseline;
}

.global-nav .nav-list .nav-item.map>a {
  padding: 15px;
  background-color: var(--sub-color);
  border-radius: 100vmax;
  color: #fff !important;
  transition-duration: .3s;
  text-decoration: none;
}

@media (any-hover: hover) {
  .global-nav .nav-list .nav-item.map>a:hover {
    opacity: 1;
    background-color: var(--main-color);
  }
}


/*ハンバーガーメニューは非表示*/
.hamburger,
.hamburger-nav {
  display: none;
}

@media print {
  .nav-item_sub {
    display: none;
  }
}

/*headerSnsList*/
.headerSnsList.flex {
  width: 80px;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  gap: 30px;
  z-index: 2;
  background: #fff;
}

/*------------
	footer
------------*/
/*-- footerArea --*/
#footerArea {
  position: relative;
}

.addressArea {
  margin-bottom: 100px;
}

#footerArea>.inner {
  padding: 100px 0 0;
  position: relative;
}

.addressArea h3 {
  margin-bottom: 80px;
}

.footerLogo {
  width: min(100%, 240px);
  height: auto;
}

.footerMenuList {
  display: flex;
  gap: 30px;
}

.footerMenuList a {
  padding: 20px 0;
  display: block;
  width: 100%;
  font-weight: bold;
  color: var(--text-color);
  text-decoration: none;
  transition-duration: .3s;
}

/*-- page top --*/
#pagetop {
  margin: 0;
  display: inline-block;
  position: absolute;
  top: 70px;
  right: 0;
}

#pagetop a {
  width: 100%;
  height: 100%;
  position: relative;
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.4rem;
  font-weight: bold;
}

#pagetop a img {
  margin-bottom: 1em;
  width: 75px;
  height: 75px;
  object-fit: contain;
  display: block;
  transition-duration: .3s;
}

@media (any-hover: hover) {
  #pagetop a:hover img {
    transform: translateY(-5px);
  }
}

/*---small----*/
small {
  width: 100vw;
  margin: 0 calc(50% - calc(var(--vw) * 50));
  display: flex;
  align-items: center;
  border-top: solid 1px var(--line-color);
}

small .inner {
  padding: 30px 0;
}

small.copy {
  font-size: 1.2rem;
  letter-spacing: .15em;
  color: var(--text-color);
}

small.copy span {
  padding-right: .25em;
  font-size: 1.3rem;
}

/*------------
ボタンのスタイル
------------*/
:is(.btm, .btm-link, .btm-bgcolor) :is(a, p) {
  width: 100%;
  text-decoration: none;
  color: var(--text-color);
  display: block;
  font-size: 1.4rem;
  line-height: 1.5;
}

:is(.btm, .btm-bgcolor, .btm-link).fit-content,
:is(.btm).fit-content :is(a, p) {
  width: fit-content;
  min-width: 190px;
}

:is(.btm, .btm-link, .btm-bgcolor).w100 :is(a, p) {
  width: 100%;
}

:is(.btm, .btm-link, .btm-bgcolor).btm-center {
  margin: 2em auto;
}

:is(.btm, .btm-link, .btm-bgcolor).btm-center :is(a, p) {
  margin: 2em auto;
  display: flex;
}

.btm.color-wh a {
  color: #fff;
}

/* 通常btm*/
:is(.btm, .btm-bgcolor) {
  margin: 2.5em 0;
  width: min(100%, 250px);
  position: relative;
  background-color: #fff;
  border-radius: 50px;
  overflow: hidden;
  border: solid 1px var(--line-color);
}

:is(.btm, .btm-bgcolor)::before,
:is(.btm, .btm-bgcolor)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

:is(.btm, .btm-bgcolor)::before {
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: all .5s ease;
  transition-property: transform;
  border-radius: 50px;
}

:is(.btm, .btm-bgcolor)::after {
  width: 10px;
  height: 10px;
  background-color: var(--main-color);
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  left: inherit;
  border-radius: 50%;
  transition: 0.3s;
}

:is(.btm, .btm-bgcolor) :is(a, p) {
  min-height: 65px;
  padding: 1.5em 65px 1.5em 2em;
  align-items: center;
  transition-duration: .3s;
  display: flex;
  z-index: 1;
  position: relative;
  font-weight: bold;
}

@media (any-hover: hover) {
  :is(.btm, .btm-bgcolor) :is(a, p):hover {
    opacity: 1;
  }

  :is(.btm, .btm-bgcolor):hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }

  :is(.btm, .btm-bgcolor):hover::after {
    transform: translate(5px, -50%);
  }
}

/* btm-bgcolor*/
.btm-bgcolor {
  background-color: var(--main-color);
}

.btm-bgcolor::before {
  background-color: #FF4A4A;
}

.btm-bgcolor::after {
  background-color: #fff;
}

.btm-bgcolor :is(a, p) {
  color: #fff;
}

/*------------
 リンク
------------*/
main a:not(.no-icon)[href$=".pptx"]:after,
main a:not(.no-icon)[href$=".ppt"]:after,
main a:not(.no-icon)[href$=".pdf"]:after,
main a:not(.no-icon)[href$=".doc"]:after,
main a:not(.no-icon)[href$=".docx"]:after,
main a:not(.no-icon)[href$=".xls"]:after,
main a:not(.no-icon)[href$=".xlsm"]:after,
main a:not(.no-icon)[href$=".xlsx"]:after,
main a:not(.no-icon)[href^="https://"][target="_blank"]:after,
main a:not(.no-icon)[href^="http://"][target="_blank"]:after {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 0 5px;
}

.cardLinkBox a[target="_blank"] .ttl-text::after,
main a:not(.no-icon)[href^="http://"][target="_blank"]:after,
main a:not(.no-icon)[href^="https://"][target="_blank"]:after {
  content: url("../images/icon-blank.svg");
  width: 15px;
  height: 15px;
}

.btm a:not(.no-icon)[href$=".pdf"][target="_blank"]:after,
main a:not(.no-icon)[href$=".pdf"]:after {
  content: url("../images/icon-pdf.svg");

}

.btm a:not(.no-icon)[href$=".docx"][target="_blank"]:after,
.btm a:not(.no-icon)[href$=".doc"][target="_blank"]:after,
main a:not(.no-icon)[href$=".doc"]:after,
main a:not(.no-icon)[href$=".docx"]:after {
  content: url("../images/icon-word.svg");
}

.btm a:not(.no-icon)[href$=".xls"][target="_blank"]:after,
.btm a:not(.no-icon)[href$=".xlsm"][target="_blank"]:after,
.btm a:not(.no-icon)[href$=".xlsx"][target="_blank"]:after,
main a:not(.no-icon)[href$=".xls"]:after,
main a:not(.no-icon)[href$=".xlsm"]:after,
main a:not(.no-icon)[href$=".xlsx"]:after {
  content: url("../images/icon-excel.svg");
}

.btm a:not(.no-icon)[href$=".pptx"][target="_blank"]:after,
.btm a:not(.no-icon)[href$=".ppt"][target="_blank"]:after,
main a:not(.no-icon)[href$=".pptx"]:after,
main a:not(.no-icon)[href$=".ppt"]:after {
  content: url("../images/icon-ppt.svg");
}

.access-icon a[href^="https://"][target="_blank"]::after {
  content: url("../images/icon-pin.svg") !important;
  width: 25px !;
  height: 25px !important;
}

/*------------
 コンテンツ
------------*/
.sp-on,
.tb-on {
  display: none;
}

.inner {
  margin: 0 auto;
  width: min(85%, 1000px);
}

/*--見出し--*/
:where(main, footer) :where(h2, h3, h4, h5, h6) {
  margin: 0 0 1.25em;
  font-size: clamp(2.8rem, 2.733rem + 0.33vw, 3rem);
  line-height: 1.25;
  font-weight: bold;
  position: relative;
}

:where(main, footer) h3 {
  font-size: clamp(2rem, 1.833rem + 0.83vw, 2.5rem);
}

:where(main, footer) h4 {
  font-size: clamp(1.8rem, 1.727rem + 0.36vw, 2rem);
}

:where(main, footer) h5 {
  font-size: clamp(1.6rem, 1.527rem + 0.36vw, 1.8rem);
}

:where(main, footer) h6 {
  font-size: 1.6rem;
}

h2.h2-ttl {
  padding-bottom: 20px;
  margin-bottom: 1.5em;
  position: relative;
  font-size: clamp(3rem, 2.6087rem + 1.7391vw, 4rem);
}

h2.h2-ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 5px;
  background-color: var(--main-color);
}

/*------------
	 テキスト関連
------------*/
.indent {
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}

.m-top0 {
  margin-top: 0;
}

.m-top1em {
  margin-top: 1em;
}

:where(#contentArea) :is(ul, ol, dl, .box).m-bottom0,
.m-bottom0 {
  margin-bottom: 0;
}

.m-bottom1em {
  margin-bottom: 1em;
}

.m-bottom2em {
  margin-bottom: 2em;
}

.m-bottom3em {
  margin-bottom: 3em;
}

.m-bottom5em {
  margin-bottom: 5em;
}

.p-all-1em {
  padding: 1em;
}


.text-small {
  font-size: 1.2rem;
}

.text-lead {
  font-size: clamp(2rem, 1.7692rem + 1.0256vw, 3rem);
  line-height: 1.5;
  font-weight: bold;
}

.text-bold {
  font-weight: bold;
}

.text-wh {
  color: #fff;
}

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

.text-right {
  text-align: right;
}

.text-fit-content {
  margin-inline: auto;
  width: fit-content;
}

ruby rt {
  margin-bottom: .5em;
}

:where(main) p {
  line-height: 1.8;
  font-size: clamp(1.4rem, 1.327rem + 0.36vw, 1.6rem);
}

.has-main-color-color {
  color: var(--main-color);
}

.has-sub-color-color {
  color: var(--sub-color);
}

.has-bg-color-color {
  color: var(--bg-color);
}

.has-text-color-color {
  color: var(--text-color);
}

.has-line-color-color {
  color: var(--line-color);
}

.has-bold-color-color {
  color: #FF4A4A
}

.has-main-color-background-color {
  background-color: var(--main-color);
}

.has-sub-color-background-color {
  background-color: var(--sub-color);
}

.has-bg-color-background-color {
  background-color: var(--bg-color);
}

.has-text-color-background-color {
  background-color: var(--text-color);
}

.has-line-color-background-color {
  background-color: var(--line-color);
}

.has-bold-color-background-color {
  background-color: #FF4A4A;
}

mark {
  font-style: normal;
}


/*--ボックス--*/
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex.flex-start {
  justify-content: flex-start;
  gap: 1em;
}

.grid {
  display: grid;
  gap: 40px 25px;
}

.box {
  margin: 2em 0;
  padding: 2em;
  border-radius: clamp(10px, 3vmax, 30px);
  position: relative;
}

.box.bg-color {
  background-color: var(--bg-color);
}

.box.bg-color-wh {
  background-color: #fff;
}

.box.border {
  border: solid 1px var(--sub-color);
}

.box.shadow {
  box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.box :is(.btm, .btm-bgcolor) {
  margin: 1.5em 0;
}

:is(.wp-block-quote, .box) :is(p, ol, ul, dl, .wp-block-image, .wp-block-gallery):first-of-type {
  margin-top: 0;
}

:is(.wp-block-quote, .box) :is(p, ol, ul, dl, .wp-block-image, .wp-block-gallery):last-of-type {
  margin-bottom: 0;
}

.grid.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid.col-4 {
  grid-template-columns: repeat(4, 1fr);
}


/*------------
 dlのスタイル
------------*/
dl {
  margin: 1em 0 2em;
  line-height: 1.8;
  display: flex;
  flex-wrap: wrap;
}

dt {
  margin-bottom: 1.5em;
  padding: 0 1.5em 1.5em 0;
  font-weight: bold;
  width: 20%;
  border-bottom: solid 1px var(--line-color);
  font-size: clamp(1.4rem, 1.327rem + 0.36vw, 1.6rem);
  position: relative;
}

dt::before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: var(--main-color);
  position: absolute;
  bottom: -1px;
  left: 0;
}

dd {
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  word-break: break-all;
  width: 80%;
  border-bottom: solid 1px var(--line-color);
  font-size: clamp(1.4rem, 1.327rem + 0.36vw, 1.6rem);
}


/*------------
 ulのスタイル
------------*/
:where(#main) ul {
  margin: 1em 0 2em;
  line-height: 1.8;
  font-size: clamp(1.4rem, 1.333rem + 0.33vw, 1.6rem);
}

:where(#main) ul:not(.splide__list, .col-3, .col-2, .col-4) li:not(.btm-bgcolor, .btm) {
  padding: 0 0 0 2rem;
  position: relative;
}

:where(#main) ul:not(.splide__list, .col-3, .col-2, .col-4) li:not(.btm-bgcolor, .btm):before {
  content: '';
  width: .5rem;
  height: .5rem;
  background-color: var(--main-color);
  border-radius: 50%;
  position: absolute;
  top: 1rem;
  left: 0;
}

/*横並び*/
ul:not(.splide__list, .col-3, .col-2, .col-4).flex {
  justify-content: flex-start;
}

ul:not(.nav-item_sub >ul, .splide__list, .col-3, .col-2, .col-4).flex li {
  margin-right: 1em;
}

/*矢印リスト*/
.arrowList li::before {
  content: none !important;
}

.arrowList li a {
  padding-left: 30px;
}

.arrowList li a::before {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url('../images/icon-arrow.svg');
  position: absolute;
  top: 10px;
  left: 0;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
}

/*------------
 olのスタイル
------------*/
:where(#main) ol {
  margin: 1em 0 2em;
  counter-reset: count 0;
  line-height: 1.8;
  font-size: clamp(1.4rem, 1.327rem + 0.36vw, 1.6rem);
}

:where(#main) ol li {
  padding: 60px 0 40px 3em;
  position: relative;
  border-bottom: solid 1px var(--line-color);
}


:where(#main) ol li:last-child {
  margin-bottom: 0;
  font-weight: normal;
}

:where(#main) ol>li:before {
  content: "0" counter(count) "";
  counter-increment: count 1;
  position: absolute;
  left: 0;
  top: 20px;
  font-family: lato;
  color: var(--main-color);
  font-size: clamp(2rem, 1.833rem + 0.83vw, 2.5rem);
}

:where(#main) ol li::after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  bottom: -1px;
}


/*------------
 テーブルのスタイル
------------*/

table {
  width: 100%;
  font-size: clamp(1.4rem, 1.327rem + 0.36vw, 1.6rem);
  line-height: 1.8;
  background-color: #fff;
  overflow: hidden;
}


:is(th, td) {
  padding: 1.5em;
  vertical-align: middle;
  font-weight: bold;
  text-align: left;
  border: none;
  border-bottom: solid 2px var(--bg-color);
}

th {
  background-color: var(--bg-color);
  border-bottom: solid 2px #fff;
}

table tr:last-child :is(th, td) {
  border: none;
}

td {
  font-weight: normal;
}

table.thw30 th,
.thw30 th {
  width: 30%;
}

table.sp-th100 td,
.sp-th100 td {
  padding: 1em;
  vertical-align: middle;
}

table p:last-child {
  margin-bottom: 0;
}

.sp-th100 th {
  width: 30%;
}



/*--------
　テキストのスタイル関連
---------*/
:where(main) p {
  margin-bottom: 1em;
}

:where(main, footer) :where(h2, h3, h4, h5, h6) {
  margin: 1.25em 0;
}

/*インデント*/
.indentback {
  text-indent: -1em;
  padding-left: 1em;
}

/*iframe*/
.iframe {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}

.iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*------------
 imgのスタイル
------------*/
.img100 {
  width: 100%;
  height: auto;
}

.img30 {
  width: 30%;
  min-width: 250px;
  height: auto;
}

.max-400img {
  width: min(100%, 400px);
  height: auto;
}

.max-300img {
  width: min(100%, 300px);
  height: auto;
}

.max-200img {
  width: min(100%, 200px);
  height: auto;
}

.img_block {
  display: block;
  margin: 0 auto;
}

.img_block.m-bottom3em {
  margin: 0 auto 3em;
}

.img_block.m-bottom2em {
  margin: 0 auto 2em;
}

.img_block.m-bottom1em {
  margin: 0 auto 1em;
}

figcaption {
  font-size: 1.4rem;
}

.img-radius img,
.img-radius {
  border-radius: 1vmax;
}

.float_right {
  margin: 10px 0 10px 10px;
  float: right;
  z-index: 1;
  position: relative;
}

.cf::after {
  content: "";
  display: block;
  clear: both;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

/*==========================================
 tb［541px-1080px以下］
===========================================*/
@media screen and (max-width: 1080px) {

  /*------------
	 header
	------------
  .open .headerWrap {
    z-index: 998;
  }*/
  .headerWrap {
    margin: 0 auto;
    border: none;
  }

  .headerWrap.js-fixed,
  .headerWrap {
    padding: 0;
    background: inherit;
  }

  .headerInner {
    height: 85px;
    padding: 10px 5% 10px 15px;
    justify-content: start;
  }

  .headerInner .inner {
    margin: 0;
  }

  .global-nav {
    display: none;
    top: 86px;
  }

  .hamburger-nav {
    margin: 0;
    padding: 50px 0 100px;
  }

  .hamburgerLine {
    width: 30px;
    top: 25px;
  }

  .hamburgerLine:before {
    top: -10px;
  }

  .hamburgerLine:after {
    top: 10px;
    right: 0;
  }

  .hamburgerText::before {
    top: -15px;
  }

  /*hamburger menu*/

  /* hamburger */
  .hamburger-nav {
    display: none;
    position: relative;
  }

  .hamburger {
    margin: 0 0 0 auto;
    display: block;
    height: 85px;
    width: 85px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    border: none;
    background: var(--main-color);
    transition: .5s;
    touch-action: none;
  }

  .hamburgerLine {
    display: block;
    height: 2px;
    width: 45px;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    transition: 0.5s;
  }

  .hamburgerLine:before,
  .hamburgerLine:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #fff;
    transition: inherit;
  }

  .hamburgerLine:before {
    top: -15px;
  }

  .hamburgerLine:after {
    top: 15px;
    right: 0;
  }

  /*アクティブ*/
  .open .hamburger {
    background: var(--main-color);
  }

  .open .hamburgerLine {
    background: inherit;
    background: var(--main-color);
  }

  .open .hamburgerLine::before {
    top: 0;
    transform: rotate(45deg);
    background-color: #fff;
  }

  .open .hamburgerLine::after {
    top: 0;
    transform: rotate(-45deg);
    width: 100%;
    background-color: #fff;
  }

  /*ENDアクティブ*/

  /*中身*/
  .hamburger-nav {
    margin: 0 0 0;
    padding: 80px 0 100px;
    height: 100%;
    width: 100%;
    position: fixed;
    right: -100%;
    top: 85px;
    overflow: scroll;
    visibility: hidden;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto;
    transition-duration: .5s;
    transition-timing-function: ease-out;
    display: block;
    z-index: 99999;
    background-size: auto auto;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .open .hamburger-nav {
    right: 0;
    overflow-x: hidden;
    visibility: visible;
  }

  .is-fixed .hamburger-nav {
    top: 0;
  }

  /*hamburger menu*/

  .hamburger-list {
    margin: 0 auto 50px;
    width: 80%;
  }

  .hamburger-list>.nav-item {
    position: relative;
    border-bottom: solid 1px var(--line-color);
  }

  .hamburger-list .nav-item a {
    padding: 2em .5em;
    color: var(--text-color);
    text-decoration: none;
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
  }

  .hamburger-list .nav-item:has(.button)>a {
    width: calc(100% - 70px);
  }

  .hamburger-list .parent {
    display: block;
    width: 100%;
  }

  .hamburger-list .button {
    padding: 1em;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    background-color: inherit;
    font-weight: bold;
    font-family: 'ZenKakuGothicNew', sans-serif;
    background-color: var(--main-color);
    font-size: 1.8rem;
    text-align: left;
  }

  .hamburger-list .button::before,
  .hamburger-list .button::after {
    content: '';
    position: absolute;
    background: #fff;
    top: 2.25em;
    right: 5px;
    width: 20px;
    height: 2px;
    transition: all 0.3s;
  }

  .hamburger-list .button::before {
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    margin: auto;
    right: 0;
    left: 0;
  }

  .hamburger-list .button::after {
    width: 20px;
    margin: auto;
    right: 0;
    left: 0;
  }

  .hamburger-list .button.open::before {
    transform: translate(-0%, -50%);
  }

  .hamburger-list .button.open::after {
    opacity: 0;
  }

  .hamburger-list .map {
    margin: 3em auto;
    border: none;
  }

  .hamburger-list .map a {
    margin-inline: auto;
    padding: 1.5em 2em;
    width: fit-content;
    text-align: center;
    background-color: var(--sub-color);
    border-radius: 50vmax;
    color: #fff;
  }


  /*------------
		footer
	------------*/

  /*------------
		 コンテンツ
	------------*/
  .tb-on {
    display: block;
  }

  .tb-none {
    display: none;
  }

  /*------------
		 テキスト
	------------*/
  /*------------
  カラム
  ------------*/
  .grid.col-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid:is(.col-3.tb-col-3, .col-4) {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid:is(.col-2.tb-w100) {
    grid-template-columns: repeat(1, 1fr);
  }

  /*------------
  input
  ------------*/
  /* iOSでのデフォルトスタイルをリセット */
  input[type="submit"],
  input[type="button"] {
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
  }

  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration {
    display: none;
  }

  input[type="submit"]:focus,
  input[type="button"]:focus {
    outline-offset: -2px;
  }

  a[href^="tel:"] {
    pointer-events: auto;
    text-decoration: underline;
  }

  select {
    margin: .5em 1px;
    width: 99%;
    max-width: 400px;
    height: 40px;
    padding: 0 30px 0 10px;
    border-radius: 1vmax;
    background: #fff;
    outline: solid 1px var(--sub-color);
    font-size: 16px;
    border: none;
    background-image: url(images/icon-arrow.png);
    background-repeat: no-repeat;
    background-size: 12px 10px;
    background-position: right 10px center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: var(--text-color);
  }

}


/*==========================================
 sp［580px以下］
===========================================*/

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

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

  .headerInner {
    height: 70px;
  }

  .logoArea {
    width: 200px;
  }

  /*hamburger*/

  .hamburger {
    height: 70px;
    width: 70px;
  }


  .hamburgerLine {
    width: 25px;
    top: 30px;
  }

  .hamburgerLine::before {
    top: -10px;
  }

  .hamburgerLine::after {
    top: 10px;
  }

  .hamburger-menu {
    width: 80%;
  }

  .hamburger-nav {
    top: 70px;
    padding: 30px 0 100px;
  }

  .hamburger-list .nav-item:not.map a {
    padding: 1.5em .5em;
    font-size: 1.4rem;
  }


  .hamburger-list .button {
    width: 56px;
    height: 56px;
  }

  .hamburger-list .button::before,
  .hamburger-list .button::after {
    top: 29px;
  }

  .hamburger-list .nav-item_sub li a {
    font-size: 1.3rem;
  }

  .hamburger-list .nav-item_sub li a::before {
    width: 20px;
    height: 20px;
  }

  /*------------
		footer
	------------*/
  .footerMenuList {
    flex-direction: column;
    gap: 0;
  }

  /*pagetop*/
  #pagetop {
    top: 100px;
    z-index: 1;
  }

  #pagetop a img {
    width: 55px;
    height: 55px;
  }

  /*------------
		 コンテンツ
	------------*/
  main {
    padding: 0;
  }

  .sp-on {
    display: block;
  }

  .sp-none,
  .pc-on {
    display: none;
  }

  /*------------
  カラム
  ------------*/

  :is(.grid.col-2, .col-3.sp-w100, .col-3.tb-col-3.sp-w100) {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid.col-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /*------------
  dlのスタイル
  ------------*/

  dt {
    width: 100%;
    padding: 0 0 1.5em 0;
  }

  dd {
    width: 100%;
    border: none;
  }

  /*------------
	 テーブルのスタイル
	------------*/
  .wp-block-table {
    border: none;
  }

  :is(th, td) {
    line-height: 1.6;
    padding: 1em;
  }

  /*th td 100%*/
  .sp-th100 :is(th, td) {
    display: block;
    width: 100%;
  }

  .sp-th100 :is(th, td) {
    border: none;
  }

  .wp-block-table table th,
  th {
    padding: 1em;
  }

  .js-scrollable table {
    width: 700px;
  }




}