/*==========================================
全デバイス共通［common］
　・ヘッダー
　・フッター
  ・ボタン
	・リンク
　・見出し
　・テキスト
　・コンテンツボックス
===========================================*/
:root {
  --text-color: #451A00;
  --main-color: #FDD600;
  --line-color: #ddd;
  --bg-color: #F1E9DE;
  --vw: 1vw;
}

html {
  font-size: 62.5%;
}

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

*,
*: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: 'NotoSansJP';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/NotoSansJP-Medium.woff') format('woff');
}

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

/*視覚的には非表示にしつつ、スクリーンリーダでは読む*/
.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-bottom: 5em;
  padding: 0 5%;
  background-color: var(--main-color);
  clip-path: ellipse(85% 100% at 50% 0%);
}

.headerInner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding-bottom: 350px;
  position: relative;
  overflow: hidden;
  background-image: url('../images/mainImg01.webp'), url('../images/mainImg02.webp');
  background-repeat: repeat-y;
  background-position: left -50px, right -120px;
  background-size: 250px auto;
}

.ttl-img {
  margin: 40px auto 0;
  width: min(580px, 100%);
  display: block;
}

.mainImg {
  width: min(550px, 100%);
  height: auto;
  margin: auto;
  position: absolute;
  display: block;
  object-fit: cover;
  right: 0;
  left: 0;
  top: 0;
  bottom: -450px;
}

/*------------
 h2-ttlimg
------------*/
.h2-ttlimg {
  margin: 0 auto;
}

.h2-ttlimg img {
  width: min(300px, 100%);
  display: block;
  margin: 0 auto;
}

/*------------
 map
------------*/
.wrapper {
  position: relative;
  height: auto;
  width: min(100%, 1200px);
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}


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

/*------------
	footer
------------*/
footer .wrap {
  padding: 5em 0;
  background-color: var(--main-color);
  border-radius: 250px 250px 0 0;
}

.snsList.flex {
  margin: 0 auto 5em;
  align-items: self-start;
  justify-content: center;
  gap: 2em;
}

.share-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.share-icon img:first-child {
  width: 70px;
  height: 70px;
  display: block;
  margin-bottom: 1em;
  transition: transform 0.3s ease;
}

button.share-icon {
  padding: 0;
  margin: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;

}

@media (any-hover: hover) {
  .share-icon:hover img:first-child {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
  }
}

/*linkArea*/
.linkArea {
  margin: auto;
  width: min(100%, 1000px);
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.linkArea a {
  text-decoration: none;
}

.linkArea .textArea {
  width: calc(100% - 220px);
  padding: 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 2em;
}

.linkArea .textArea img {
  width: min(300px, 100%);
  height: auto;
  align-self: baseline;
}

.linkArea .textArea span {
  width: 100%;
  position: relative;
}

.linkArea .textArea span:after {
  content: url("../images/icon-blank.svg");
  width: 15px;
  height: 15px;
  display: inline-block;
  margin: 0 5px;
}

.linkAreaImg {
  width: 220px;
  aspect-ratio: 3 / 1;
  height: auto;
  object-fit: cover;
  display: block;
}

.footer-logo {
  margin: 0 auto 5em;
  width: min(500px, 100%);
  height: auto;
  display: block;
}

/*---small----*/

small.copy {
  margin: 2em auto;
  font-size: 1.2rem;
  text-align: center;
  display: block;
}

/*------------
ボタンのスタイル
------------*/
/* 通常btm*/
.btm {
  margin: 2.5em auto;
  width: min(100%, 300px);
  position: relative;
  border-radius: 50px;
  overflow: hidden;
}

.btm a {
  padding: 2em;
  color: var(--text-color);
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: var(--main-color);
}

@media (any-hover: hover) {
  .btm:hover a {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
}

/*------------
 リンク
------------*/
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%, 1200px);
}

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

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

: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-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);
}

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

.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(.col-3, .col-2, .col-4, .snsList) li:not(.btm-bgcolor, .btm) {
  padding: 0 0 0 2rem;
  position: relative;
}

:where(#main) ul:not(.col-3, .col-2, .col-4, .snsList) 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;
}

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


/*hr*/
/*インデント*/
.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;
}

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

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
------------*/
  .headerInner {
    background-size: 150px auto;
  }

  /*------------
		 コンテンツ
	------------*/
  .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 {
    clip-path: ellipse(98% 100% at 50% 0%);
  }

  .headerInner {
    padding-bottom: 150px;
    background-size: 100px auto;
  }

  .ttl-img {
    margin: 0 auto;
  }

  .mainImg {
    width: min(350px, 100%);
    bottom: -380px;
  }

  .main-copy {
    text-align: justify;
  }


  /*------------
		footer
	------------*/
  footer .wrap {
    border-radius: 100px 100px 0 0;
  }

  .snsList.flex li {
    width: 40%;
  }

  /*linkArea*/
  .linkArea .textArea {
    width: 100%;
  }

  .linkAreaImg {
    width: 100%;
    aspect-ratio: 2/1;
    object-position: bottom;
  }

  /*------------
		 コンテンツ
	------------*/
  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;
  }


}