@charset "UTF-8";
/*アニメーションCSS*/
/*ボーダーが真ん中から左右に広がる*/
/*ボタンの背景が横から出てくる*/
#wrapper {
  min-width: 1280px;
}

/*ここから下がドロワー設定項目 */
/*drawer btn 上下左右で設定可能 */
.sp-menu-btn-wrp {
  cursor: pointer;
  top: 20px;
  right: 40px;
  bottom: auto;
  left: auto;
  background: #fff;
  border-radius: 50vw;
  box-shadow: 0.5rem 0.5rem 2.5rem 0 rgba(55, 26, 14, 0.15);
}

.sp-menu-btn-wrp .sp-menu-btn {
  width: 9rem;
  height: 9rem;
}

.sp-menu-btn-wrp .sp-menu-btn span {
  width: 50%;
  height: 2px;
  background: var(--main-color);
  transform-origin: center;
}

.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 30%;
}

.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}

.sp-menu-btn-wrp .sp-menu-btn .bottom {
  bottom: 30%;
}

.sp-menu-btn-wrp .sp-menu-btn-txt {
  color: #fff;
}

/*active */
.active .sp-menu-btn-wrp .sp-menu-btn span {
  width: 55%;
}

.sp-menu-btn.active .top {
  top: 48.5%;
  transform: translateY(0) translateX(0) rotate(45deg);
}

.sp-menu-btn.active .middle {
  opacity: 0;
}

.sp-menu-btn.active .bottom {
  bottom: 48.5%;
  transform: translateY(0) translateX(0) rotate(-45deg);
}

/*	drawer inbox */
#drawer-nav {
  width: 480px;
  padding: 12rem 3rem 3rem;
  background: var(--bg-pt);
}

#drawer-nav .drawer-logo {
  width: 20rem;
  display: none;
}

#drawer-nav .nav {
  margin-bottom: 3rem;
}

#drawer-nav .nav .drawer-link {
  box-sizing: border-box;
  padding: 2rem;
  border-bottom: 1px solid var(--main-color);
  font-size: 2rem;
  font-weight: 500;
  position: relative;
}
#drawer-nav .nav .drawer-link::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: var(--main-color);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto 0;
}
#drawer-nav .nav .drawer-link.drawer-dropdown::after {
  content: none;
}

#drawer-nav .nav .current a {
  color: var(--font-color);
}
#drawer-nav .nav .current a::after {
  background-color: var(--font-color);
}

/*rink-list */
.drawer-sub-nav__list {
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 2rem;
  text-decoration: underline;
}
.drawer-sub-nav__list li {
  font-size: 1.5rem;
}

.drawer-info {
  margin-top: 5rem;
  gap: 3rem;
}

/*Flexbox */
.flex {
  display: -webkit-box;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*折り返し */
.flx-wrp {
  flex-wrap: wrap;
}

/*逆順 */
.flx-rr {
  flex-direction: row-reverse;
}

/*積み重なるように配置 */
.flx-column {
  flex-direction: column;
}

/*水平方向の揃え */
/*初期値 */
.flx-strt {
  -webkit-justify-content: start;
  justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between） */
.flx-btw {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around） */
.flx-ard {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

/*水平揃え　末揃え */
.flx-end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

/*水平揃え　中央揃え */
.flx-center {
  -webkit-justify-content: center;
  justify-content: center;
}

/*垂直方向の揃え */
/*水平揃え　上揃え */
.flx-alitem-strt {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

/*水平揃え　高さ揃え */
.flx-alitem-strch {
  -webkit-align-items: stretch;
  align-items: stretch;
}

/*水平揃え　縦・横の中央揃え */
.flx-alitem-c {
  -webkit-align-items: center;
  align-items: center;
}

/*水平揃え　下揃え */
.flx-alitem-end {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

/*水平揃え　ベースライン揃え */
.flx-alitem-base {
  -webkit-align-items: baseline;
  align-items: baseline;
}

/*複数行にした揃え方 */
/*初期値 */
.flx-alcont-strt {
  -webkit-align-content: flex-start;
  align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え */
.flx-alcont-strch {
  -webkit-align-content: stretch;
  align-content: stretch;
}

/*親要素の終点から配置。下揃え */
.flx-alcont-end {
  -webkit-align-content: flex-end;
  align-content: flex-end;
}

/*中央揃え */
.flx-alcont-c {
  -webkit-align-content: center;
  align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置 */
.flx-alcont-s-btw {
  -webkit-align-content: space-between;
  align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置 */
.flx-alcont-s-ard {
  -webkit-align-content: space-around;
  align-content: space-around;
}

/* 並び順変更 */
.flex-order-1 {
  order: 1;
}

.flex-order-2 {
  order: 2;
}

/*pcスタイル */
.inbox {
  width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
}

.pc-none {
  display: none;
}

.current a {
  color: var(--main-color);
}

a[href*="tel:"] {
  pointer-events: none;
}

/*-------▽▽フォント▽▽----------*/
body {
  font-size: 1.6rem;
  line-height: 1.5;
}

/*--------△△フォント△△---------*/
/*======================================================
 * ▽▽---共通スタイル---▽▽
 * =======================================================*/
html {
  scroll-padding: 100px;
}

section {
  padding: 100px 0;
}

.dl-item {
  display: flex;
}

.com-txt {
  line-height: 2;
}
.com-txt:not(:last-of-type) {
  margin-bottom: 3rem;
}

.com-btn {
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--bd-color);
}
.flex > .ttl01 {
  width: 100%;
}

.ttl01 {
  font-size: 4.4rem;
  letter-spacing: 0.15em;
  margin-bottom: 5rem;
}

.ttl02 {
  font-size: 3rem;
  letter-spacing: 0.15em;
}

.ttl03 {
  font-size: 2.2rem;
  letter-spacing: 0.2em;
}
.ttl03 span {
  letter-spacing: 0.2em;
}

.ttl04 {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}

.txt-cap {
  font-size: 1.4rem;
}

.ttl-deco-01 {
  border-top: 1px solid var(--bd-color);
  border-bottom: 1px solid var(--bd-color);
  padding: 1.5rem;
}

.ttl-deco-02 {
  border-left: 3px solid var(--main-color);
  padding-left: 1rem;
}

#top-page .ttl01, .sv .ttl01 {
  font-size: 5.3rem;
  gap: 3rem;
}
#top-page .ttl01 .en, .sv .ttl01 .en {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 6.5rem;
}
#top-page .ttl01 .ja, .sv .ttl01 .ja {
  font-size: 2.8rem;
  letter-spacing: 0.3em;
}

.com-tel {
  display: grid;
  justify-items: start;
}
.com-tel .tel-ttl {
  width: 100%;
  padding: 0.5rem;
}
.com-tel a {
  font-weight: 500;
  font-size: 4rem;
  background: url("../img/common/tel-icon.png") left center/2rem no-repeat;
  padding-left: 2.8rem;
  box-sizing: border-box;
}

.add-info.flex {
  gap: 1rem;
}

.sdw-01 {
  box-shadow: 1.2rem 1.2rem 2.5rem 0 rgba(55, 26, 14, 0.15);
}

.kado-01 {
  border-radius: 2rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag-list .tag {
  line-height: 1;
  font-size: 1.4rem;
  padding: 0.5rem 1.5rem;
  text-align: center;
  border: 1px solid var(--main-color);
}

time {
  line-height: 1;
  padding: 0.5rem 0;
}

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid #fff;
}
.com-desc-tbl .dl-item dt {
  text-align: center;
  width: 255px;
  padding: 2.5rem 3rem;
  display: grid;
  align-content: center;
}
.com-desc-tbl .dl-item dd {
  width: 825px;
  padding: 2.5rem 3rem;
}
.com-desc-tbl .dl-item dd .tel-txt {
  display: inline-flex;
  margin-left: 2rem;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
#top-page main {
  background: var(--bg-pt-02);
}

/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
}
#header .hd-logo {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 2rem;
}
#header .hd-logo img {
  display: block;
}

.hd-nav {
  padding: 1.5rem 0 0.5rem;
  background: var(--bg-pt-02);
}
.hd-nav .inbox {
  width: 1280px;
}
.hd-nav .com-tel a {
  font-size: 3.4rem;
}
.hd-nav .nav-list {
  gap: 1rem;
}
.hd-nav .nav-list .nav-item {
  position: relative;
  line-height: 1;
}
.hd-nav .nav-list .nav-item:not(:last-child) {
  padding-right: 1rem;
  border-right: 2px solid var(--bd-color);
}
.hd-nav .nav-list .nav-item > a {
  padding-bottom: 5px;
  opacity: 1;
  position: relative;
}
.hd-nav .nav-list .nav-item > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--main-color);
  position: absolute;
  bottom: 0;
  transform: scale(0);
  transition: 0.5s;
}
.hd-nav .nav-list .nav-item > a:hover::after {
  transform: scale(1);
}

.add-box {
  gap: 3rem;
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  position: relative;
}
.top-mv .mv-ct {
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
}
.top-mv .mov-box {
  width: 100%;
}
.top-mv .mov-box video {
  width: 100%;
}
.top-mv .mov-box .com-txt {
  letter-spacing: 0.14em;
}

/*---------------------------△△---MV---△△------------------------*/
#top-concept {
  background: url(../img/top/ccpt-bg.jpg) center/cover;
  mask-image: linear-gradient(to bottom, transparent 0, #000 4.5rem, #000 calc(100% - 4.5rem), transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 4.5rem, #000 calc(100% - 4.5rem), transparent);
}
#top-concept .inbox .txt-box {
  background: url(../img/top/ccpt-txt-bg.png) center/100% 100% no-repeat;
  padding: 1010px;
  margin: 0 auto;
  padding: 9rem 11rem;
  font-weight: 500;
}

#top-about {
  background: url(../img/top/about-bg.png) bottom/100% no-repeat;
}
#top-about .inbox .txt-box {
  width: 575px;
}
#top-about .inbox .txt-box .dl-box {
  padding: 2.5rem;
  gap: 1.5rem;
  margin-top: 4rem;
}
#top-about .inbox .txt-box .dl-box dl {
  display: grid;
  gap: 1rem;
}
#top-about .inbox .txt-box .dl-box dl:not(:last-child) {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bd-color);
}
#top-about .inbox .txt-box .dl-box dl dt {
  line-height: 1;
}
#top-about .inbox .img-01 {
  margin-right: -7rem;
}
#top-about .inbox .img-02 {
  margin-left: -8rem;
}
#top-about .inbox .img-03 {
  margin-top: -20rem;
  margin-right: 15rem;
}

#top-ranking .inbox .txt-cap {
  margin: 4rem 0rem 1rem;
}
#top-ranking .rank-box:not(:last-of-type) {
  margin-bottom: 8rem;
}
#top-ranking .rank-box .ttl02 {
  margin-bottom: 7rem;
}
#top-ranking .rank-box .rank-li {
  gap: 5rem;
}
#top-ranking .rank-box .rank-li .rank-item {
  width: 325px;
  gap: 1rem;
  position: relative;
}
#top-ranking .rank-box .rank-li .rank-item::after {
  content: "";
  display: block;
  width: 7.5rem;
  height: auto;
  aspect-ratio: 1.25;
  position: absolute;
  top: -4.5rem;
  left: 0;
  z-index: 10;
}
#top-ranking .rank-box .rank-li .rank-item:nth-child(1)::after {
  background: url(../img/top/rank-01.png) center/contain no-repeat;
}
#top-ranking .rank-box .rank-li .rank-item:nth-child(2)::after {
  background: url(../img/top/rank-02.png) center/contain no-repeat;
}
#top-ranking .rank-box .rank-li .rank-item:nth-child(3)::after {
  background: url(../img/top/rank-03.png) center/contain no-repeat;
}
#top-ranking .rank-box .rank-li .rank-item .com-img {
  width: 100%;
  aspect-ratio: 1.41;
}
#top-menu {
  background: var(--wave-btm);
}
#top-menu .menu-box {
  width: 1280px;
  height: 43rem;
  background: linear-gradient(rgba(245, 242, 238, 0.7) 0.8rem, transparent 1.7rem, transparent calc(100% - 1.7rem), rgba(245, 242, 238, 0.7) calc(100% - 0.8rem)), url(../img/top/menu.png) left/auto 100% no-repeat, url(../img/top/menu-bnr.jpg) right/cover;
}
#top-menu .menu-box::after {
  content: "";
  display: block;
  width: 7rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/common/btn-arw-wt.png") center/contain no-repeat;
  bottom: 4rem;
  right: 3rem;
}
#top-menu .menu-box .ttl01 {
  width: auto;
  margin-left: 70rem;
}
#top-menu .menu-box .ttl01 .en {
  font-size: 6.4rem;
}
#top-service ul {
  gap: 2.6%;
}
#top-service ul li {
  width: 29.5%;
}
#top-service ul li a {
  width: 100%;
  font-size: 6.666px;
}
@media (min-width: 1280px) {
  #top-service ul li a {
    font-size: 0.5208333333vw;
  }
}
#top-service ul li a::after {
  content: "";
  display: block;
  width: 7em;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  bottom: 3rem;
  right: 3em;
}
#top-service ul li a .img-box img {
  width: 100%;
}
#top-service ul li a .txt-box {
  padding: 2.5rem 3em;
}
#top-service ul li a .txt-box .ttl02 {
  font-size: 3.6em;
}
#top-service ul li a .txt-box p {
  font-size: 1.6em;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  position: relative;
}
#top-news .inbox .ttl01 {
  font-size: 4.8rem;
  margin-bottom: 3rem;
}
#top-news .inbox > p {
  letter-spacing: 0.2em;
}
#top-news .inbox .news-list {
  width: 100%;
  gap: 2rem;
  margin-top: 3rem;
}
#top-news .inbox .news-list .news-item a {
  display: flex;
  flex-wrap: wrap;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox .news-list .news-item a .com-img {
  width: 170px;
  height: auto;
}
#top-news .inbox .news-list .news-item a time {
  line-height: 1;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .news-list .news-item a .tag-list {
  justify-content: end;
}
#top-news .inbox .news-list .news-item a .txt-box {
  width: 910px;
  padding: 2rem 2.5rem;
  gap: 1rem;
}
#top-news .inbox .com-btn {
  position: absolute;
  right: 0;
  top: 5rem;
  margin-right: 7rem;
}
#top-news .inbox .com-btn::after {
  content: "";
  display: block;
  width: 5rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  top: -1.5rem;
  right: -7rem;
}

/*------------△△---NEWS---△△---------*/
.pagetop {
  position: fixed;
  z-index: 100;
  right: 10px;
  bottom: 20px;
}

#footer {
  padding: 6.5rem 0 10rem;
  position: relative;
  margin-top: 14.5rem;
  background: var(--bg-pt);
}
#footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 14.5rem;
  position: absolute;
  background: var(--wave-top);
  top: -14.3rem;
  left: 0;
  z-index: -1;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: start;
  gap: 4rem;
}
#footer .ft-area .ft-le .ft-info-box {
  display: grid;
  gap: 3rem;
}
#footer .ft-area .ft-le .ft-info-box .ft-info {
  display: grid;
  gap: 5px;
}
#footer .ft-area .ft-ri {
  display: grid;
  justify-items: end;
  width: 50%;
  gap: 4rem;
}
#footer .ft-area .ft-ri .ft-nav {
  gap: 8.5rem;
}
#footer .ft-area .ft-ri .ft-nav .nav-list {
  display: grid;
  gap: 3rem;
}
#footer .ft-area .ft-ri .ft-nav .nav-list .nav-item {
  line-height: 1;
}
#footer .copyright {
  font-size: 1.2rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#course .course-li {
  gap: 12rem;
  margin-top: 7rem;
}
#course .course-li li:nth-child(even) {
  flex-direction: row-reverse;
}
#course .course-li li .img-box {
  position: relative;
  z-index: 1;
}
#course .course-li li .img-box::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("../img/common/img-deco.png") center/contain no-repeat;
  bottom: -2rem;
  right: -2rem;
  z-index: -1;
}
#course .course-li li .txt-box {
  width: 540px;
}
#course .course-li li .txt-box .ttl02 {
  line-height: 1;
  margin-bottom: 3rem;
}
#course .course-li li .txt-box dl {
  gap: 1.2rem;
}
#course .course-li li .txt-box dl .dl-item {
  justify-content: space-between;
  align-items: start;
  line-height: 1.2;
  position: relative;
}
#course .course-li li .txt-box dl .dl-item:not(:last-child)::after {
  content: "";
  display: block;
  width: 1rem;
  height: auto;
  aspect-ratio: 0.733;
  position: absolute;
  background: url("../img/course/arw.png") center/contain no-repeat;
  top: 4.5rem;
  left: 4rem;
}
#course .course-li li .txt-box dl .dl-item dt {
  font-weight: 500;
  width: 9rem;
  padding: 0.5rem;
}
#course .course-li li .txt-box dl .dl-item dd {
  width: 43rem;
  min-height: 6.5rem;
  padding-top: 0.5rem;
}

#menu .txt-ri {
  margin: 2rem 0;
}
#menu .menu-li {
  gap: 9.5rem;
}
#menu .menu-li li dl .dl-item {
  padding: 2.5rem 0;
}
#menu .menu-li li dl .dl-item dt {
  width: 920px;
}
#menu .menu-li li dl .dl-item dd {
  max-width: 150px;
}
#menu .post-blank-txt {
  margin-top: 3rem;
}

.sec-btn-li {
  margin-top: 10rem;
}
.sec-btn-li li {
  width: 33.3%;
}
.sec-btn-li li a {
  justify-items: center;
  gap: 1rem;
  padding-bottom: 2.5rem;
  font-size: 1.9rem;
}
.sec-btn-li li a::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  border-bottom: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  transform: rotate(45deg);
  position: relative;
  transition: 0.3s;
}
.sec-btn-li li a:hover::after {
  transform: rotate(45deg) translateY(1rem) translateX(1rem);
}

.map {
  height: 450px;
  margin-top: 7rem;
}

#access-info {
  background: var(--wave-top);
  padding-bottom: 22rem;
}

#access .ttl02 {
  margin-top: 5rem;
  margin-bottom: 2rem;
}
#access .ttl02 span {
  display: inline-block;
  margin-right: 2.5rem;
}

#access-park {
  padding-top: 17rem;
  background: var(--wave-btm);
  background-size: 100% 12rem;
}

#spot ul {
  gap: 7rem 6rem;
}
#spot ul li {
  width: 320px;
  gap: 1rem;
}
#spot ul li .ttl03 {
  line-height: 1.2;
}
#spot ul li .com-img {
  aspect-ratio: 1.6;
}
#spot ul li p {
  font-size: 1.5rem;
}

#contact .mark {
  background: linear-gradient(to top, #ebe4c2, #ebe4c2 1.2rem, transparent 1.2rem, transparent);
}
#contact .ttl02 {
  margin-top: 8rem;
  margin-bottom: 2rem;
}
#contact .insta {
  width: 550px;
  height: 110px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-left: 4rem;
  margin-top: 3rem;
}
#contact .insta::after {
  content: "";
  display: block;
  width: 1.7rem;
  height: 1.3rem;
  position: absolute;
  background: url("../img/common/site-arw.png") center/contain no-repeat;
  position: static;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  display: grid;
  align-content: center;
  justify-items: center;
  height: 50rem;
  background-size: cover;
  background-position: center;
}
.sv .sv-catch {
  margin-bottom: 0;
  width: 73.9%;
  min-width: 1180px;
}
.sv .sv-catch .en {
  font-weight: 300;
  line-height: 1;
}
.course-sv {
  background-image: url(../img/sv/course.jpg);
}

.menu-sv {
  background-image: url(../img/sv/menu.jpg);
}

.access-sv {
  background-image: url(../img/sv/access.jpg);
}

.spot-sv {
  background-image: url(../img/sv/spot.jpg);
}

.news-sv {
  background-image: url(../img/sv/news.jpg);
}

.contact-sv {
  background-image: url(../img/sv/contact.jpg);
}

.complete-sv {
  background-image: url(../img/sv/complete.jpg);
}

.privacy-sv {
  background-image: url(../img/sv/privacy.jpg);
}

.site-sv {
  background-image: url(../img/sv/site.jpg);
}

.e404-sv {
  background-image: url(../img/sv/e404.jpg);
}

/*---------------------------△△---SV---△△------------------------*/
/*---------------------------▽▽---breadcrumbs---▽▽------------------------*/
.breadcrumbs-area {
  position: relative;
  z-index: 10;
}
.breadcrumbs-area .breadcrumbs {
  position: absolute;
  left: 0;
  right: 0;
  top: 15px;
  font-size: 1.5rem;
}
.breadcrumbs-area .breadcrumbs li:not(:first-child)::before {
  content: ">";
  padding: 0 15px;
}

/*---------------------------△△---breadcrumbs---△△------------------------*/
/*-----------▽▽---select---▽▽--------*/
.select-area {
  width: 300px;
  height: 50px;
  margin-left: auto;
  margin-right: 0;
}
.select-area .select-box {
  font-size: 1.5rem;
}
.select-area .select-box option {
  font-size: 1.5rem;
}
/*------------△△---select---△△---------*/
/*--------------------その他共通ページ --------------------*/
.com-other-page {
  padding: 100px 0;
}

/*---------------------------▽▽---site.html---▽▽------------------------*/
/*---------------------------△△---site.html---△△------------------------*/
/*---------------------------▽▽---404.html---▽▽------------------------*/
/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
/*---------------------------△△---privacy.html---△△------------------------*/
/*---------------------------▽▽---news.html---▽▽------------------------*/
#news .select-area {
  margin-bottom: 40px;
}
#news .select-area .select-box {
  padding: 10px 0;
  background: none;
}
#news .news-area {
  margin-bottom: 60px;
}
#news .news-area .news-list .news-item {
  border-bottom: 1px solid color-mix(in srgb, var(--main-color) 50%, transparent);
  line-height: 1.5;
}
#news .news-area .news-list .news-item a {
  display: block;
  padding: 30px 0;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box {
  display: flex;
  line-height: 1.5;
  gap: 20px;
  font-size: 1.5rem;
  margin-bottom: 20px;
  align-items: flex-start;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box time {
  width: 120px;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 900px;
}
#news .news-area .news-list .news-item a .news-txt-box .list-ttl {
  font-weight: 500;
  font-size: 2.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
#news .news-area .news-list .news-item a .news-txt-box .list-txt {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
#news .news-area .news-list .news-item .thumbnail-on {
  display: flex;
  justify-content: space-between;
}
#news .news-area .news-list .news-item .thumbnail-on .thumb {
  width: 200px;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box {
  width: 840px;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box .tag-list {
  width: 740px;
}

/*detail */
#detail .detail-box {
  margin-bottom: 50px;
}
#detail .detail-box .data-box {
  display: flex;
  line-height: 1.5;
  gap: 30px;
  font-size: 1.5rem;
  margin-bottom: 70px;
  align-items: center;
}
#detail .detail-box .data-box time {
  width: 120px;
}
#detail .detail-box .data-box .tag-list {
  width: 780px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#detail .detail-box .data-box .tag-list .tag a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
#detail .detail-box .thumb {
  margin-bottom: 20px;
  width: 400px;
  height: 300px;
}
#detail .detail-box .detail-ttl {
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 0 0 20px;
  text-align: left;
  border-bottom: 2px solid #555;
}
#detail .detail-box .detail-txt {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 30px 0 60px;
}
#detail .detail-box .detail-txt img {
  margin: 10px;
}

/*pagenation*/
.pagenation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px 0 30px;
}
.pagenation li {
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  font-size: 1.8rem;
}
.pagenation li a, .pagenation li span {
  line-height: 1;
  padding: 12px 18px;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
}
.pagenation-detail {
  position: relative;
  height: 50px;
  margin-top: 60px;
}
.pagenation-detail p a {
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1;
  box-sizing: border-box;
  padding: 18px 0;
  height: 50px;
  position: absolute;
}
.pagenation-detail .left a {
  top: 0;
  left: 0;
  width: 70px;
}
.pagenation-detail .right a {
  top: 0;
  right: 0;
  width: 70px;
}
.pagenation-detail .center a {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 160px;
}

/*---------------------------△△---news.html---△△------------------------*/
/*---------------------------▽▽---contact.html---▽▽------------------------*/
#contact .contact-ttl {
  margin-bottom: 100px;
  text-align: center;
}
#contact .table-wrapper {
  margin-bottom: 50px;
}
#contact .table-wrapper .contact-form-table tr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
#contact .table-wrapper .contact-form-table tr th {
  font-weight: 700;
  width: 300px;
  box-sizing: border-box;
  padding: 16px 10px;
  font-size: 1.5rem;
}
#contact .table-wrapper .contact-form-table tr th .required-mark {
  padding: 2px 4px;
  font-weight: 500;
}
#contact .table-wrapper .contact-form-table tr td {
  width: 770px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 500;
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
#contact .table-wrapper .contact-form-table tr td input, #contact .table-wrapper .contact-form-table tr td textarea, #contact .table-wrapper .contact-form-table tr td select, #contact .table-wrapper .contact-form-table tr td .error-text, #contact .table-wrapper .contact-form-table tr td .contact-address-txt {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  width: 100%;
}
#contact .table-wrapper .contact-form-table tr td label {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
#contact .table-wrapper .contact-form-table tr td .select-area {
  margin: 0;
}
#contact .table-wrapper .contact-form-table tr td .select-area select {
  width: auto;
}
#contact .table-wrapper .contact-form-table tr td .p-postal-code {
  width: 80px;
}
#contact .table-wrapper .contact-form-table tr td .birth-txt {
  width: 80px;
}
#contact .table-wrapper .contact-form-table tr td .error-text {
  font-weight: 500;
}
#contact .table-wrapper .contact-form-table tr .check-box-confirmation {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#contact .table-wrapper .contact-form-table tr .h-adr input {
  height: 45%;
}
#contact .privacy-agree {
  display: block;
}
#contact .privacy-agree a {
  text-decoration: underline;
}

.check {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin: 50px auto;
}
.check .contact-recaptcha-wrap {
  margin: 0;
}

.contact-submits-wrap .contact-check-btn {
  width: 300px;
  height: 74px;
  background: none;
  color: #fff;
  background: var(--main-color);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}
.contact-submits-wrap .contact-back-btn {
  border: none;
  background: #bebebe;
  margin-bottom: 50px;
  font-size: 1.6rem;
}

.complete-area .ttl01 {
  margin-bottom: 100px;
}

.complete-box {
  color: var(--font-color);
  line-height: 1.5;
  text-align: center;
}
.complete-box a {
  display: inline-block;
  text-decoration: underline;
  margin: 30px 0;
}

input[type=button][disabled],
input[type=submit][disabled] {
  opacity: 0.7;
  pointer-events: none;
}

/*---------------------------△△---contact.html---△△------------------------*/