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

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

section {
  padding: 12rem 0;
}

.dl-item {
  display: flex;
}

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

.com-btn {
  width: 30rem;
  height: 7rem;
  border-radius: 50vw;
  display: grid;
  place-items: center;
  background: var(--main-color);
  color: var(--white);
  position: relative;
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn:hover {
  opacity: 1;
  transform: scale(0.95);
  background: var(--accent-color);
}

.com-arw {
  position: relative;
}
.com-arw::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 2rem 0 auto;
  margin: auto 0;
}

.com-kado {
  border-radius: 4rem;
}
.com-kado > img {
  border-radius: 4rem;
}

.mail-btn span {
  background: url("../img/common/mail-icon.png") left center/2rem no-repeat;
  padding-left: 3rem;
  box-sizing: border-box;
}

.flex > .ttl01 {
  width: 100%;
}

.ttl01 {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 5rem;
  color: var(--font-color-03);
}

.ttl02 {
  font-size: 3.4rem;
  margin-bottom: 3rem;
  color: var(--font-color-03);
}

.ttl03 {
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
  color: var(--font-color-03);
}

.ttl04 {
  font-size: 2rem;
}

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

.com-tel {
  display: grid;
  justify-items: center;
}
.com-tel a {
  background: url("../img/common/tel-icon.png") left center/auto no-repeat;
  padding-left: 30px;
  box-sizing: border-box;
}

.bg-tag {
  line-height: 1;
  padding: 1rem 2rem;
  border-radius: 50vw;
  color: #fff;
  font-size: 1.4rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.tag-list .tag {
  line-height: 1;
  color: #fff;
  background: var(--orange);
  border-radius: 50vw;
  font-size: 1.4rem;
  padding: 1rem 2rem;
}

time {
  line-height: 1;
  color: var(--accent-color);
}

.com-pd-box {
  padding: 4rem 7rem;
}

.bg-01 {
  background: url(../img/common/pt01.jpg);
  position: relative;
  margin-bottom: 12rem;
  z-index: 1;
}
.bg-01::after {
  content: "";
  display: block;
  width: 100%;
  height: 12rem;
  position: absolute;
  background: url("../img/common/bg-wave.png") center/contain no-repeat;
  inset: auto 0 -11.9rem 0;
  z-index: -1;
  background-size: 100% 100%;
}

.bg-02 {
  background: var(--bg-color);
  position: relative;
  z-index: 1;
}
.bg-02::before {
  content: "";
  display: block;
  width: 100%;
  height: 12rem;
  position: absolute;
  background: url("../img/common/bg-wave-top.png") center/contain no-repeat;
  inset: -11.9rem 0 auto 0;
  z-index: -1;
  background-size: 100% 100%;
}
.bg-02::after {
  content: "";
  display: block;
  width: 100%;
  height: 12rem;
  position: absolute;
  background: url("../img/common/bg-wave-btm.png") center/contain no-repeat;
  inset: auto 0 -11.9rem 0;
  z-index: -1;
  background-size: 100% 100%;
}

.pd-btm {
  padding-bottom: 24rem;
}

.pd-top {
  padding-top: 24rem;
}

.check-li li:nth-child(1) {
  background: url("../img/common/check-01.png") left top/2.4rem no-repeat;
  padding-left: 3.5rem;
  box-sizing: border-box;
}
.check-li li:nth-child(2) {
  background: url("../img/common/check-02.png") left top/2.4rem no-repeat;
  padding-left: 3.5rem;
  box-sizing: border-box;
}
.check-li li:nth-child(3) {
  background: url("../img/common/check-03.png") left top/2.4rem no-repeat;
  padding-left: 3.5rem;
  box-sizing: border-box;
}
.check-li li:nth-child(4) {
  background: url("../img/common/check-04.png") left top/2.4rem no-repeat;
  padding-left: 3.5rem;
  box-sizing: border-box;
}
.check-li li:nth-child(5) {
  background: url("../img/common/check-05.png") left top/2.4rem no-repeat;
  padding-left: 3.5rem;
  box-sizing: border-box;
}

.num-li {
  display: grid;
  gap: 6rem;
}
.num-li li {
  padding-left: 115px;
  gap: 3rem;
}
.num-li li .com-txt {
  padding-left: 2rem;
}

.num {
  border-radius: 50vw;
  display: grid;
  align-content: flex-start;
  width: 8.4rem;
  height: 8.4rem;
  justify-items: center;
  font-size: 1.058em;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  gap: 0.5rem;
  padding-top: 1rem;
}
.num small {
  font-size: 0.44em;
}
.num::before {
  content: "";
  display: block;
  width: 7rem;
  height: 6.4rem;
  position: absolute;
  background: url("../img/common/num-bg.png") center/contain no-repeat;
  inset: auto 0 0rem 0;
  margin: 0 auto;
}

.com-info-dl {
  gap: 1.5rem;
}
.com-info-dl.flex {
  gap: 3rem;
}
.com-info-dl .dl-item {
  gap: 1rem;
  align-items: center;
}

.com-info-box {
  gap: 4rem 3rem;
}
.com-info-box .inst-btn {
  width: 5rem;
}
.com-info-box .inst-btn img {
  display: block;
  width: 100%;
}

#header .com-info-box .com-btn, #footer .com-info-box .com-btn {
  width: 20rem;
  height: 5.4rem;
}
#header .com-info-box .com-btn::after, #footer .com-info-box .com-btn::after {
  width: 1.6rem;
  height: 1.6rem;
  right: 1.4rem;
}
#header .com-info-box .inst-btn, #footer .com-info-box .inst-btn {
  width: 36px;
}

/*infotableスタイル*/
.com-desc-tbl {
  font-family: var(--sans-font);
  font-weight: 500;
}
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 2px solid var(--yellow);
}
.com-desc-tbl .dl-item dt {
  color: var(--orange);
  width: 220px;
  padding: 0 4rem;
}
.com-desc-tbl .dl-item dd {
  width: 720px;
  line-break: loose;
}

#about-info .com-desc-tbl {
  width: 54rem;
  padding: 7rem 6rem;
}
#about-info .com-desc-tbl dt {
  width: 8rem;
  padding: 0;
}
#about-info .com-desc-tbl dd {
  width: 33rem;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: #d8e9ff;
  z-index: 100;
  padding: 1.5rem 3rem;
}
#header .hd-logo {
  width: 24rem;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right #nav {
  margin-top: 1.5rem;
}
#header .hd-right #nav .nav-list .nav-item {
  position: relative;
  border-right: 1px solid var(--accent-color);
}
#header .hd-right #nav .nav-list .nav-item > a {
  padding: 0 2rem 5px;
  opacity: 1;
  position: relative;
}
#header .hd-right #nav .nav-list .nav-item > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  position: absolute;
  bottom: 0;
  transform: scale(0);
  transition: 0.5s;
}
#header .hd-right #nav .nav-list .nav-item > a:hover::after {
  transform: scale(1);
}
#header .hd-right #nav .nav-list .nav-item:last-child {
  border: none;
  padding-left: none;
}
#header .hd-right #nav .current {
  color: var(--accent-color);
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  background: url(../img/top/mv-bg.jpg) center/cover;
  height: 43vw;
  min-height: 550px;
  padding-top: 5%;
}
.top-mv img {
  width: 100%;
}
.top-mv .mv-ct {
  width: 31.25%;
  margin-left: 17%;
}

/*---------------------------△△---MV---△△------------------------*/
#top-about .inbox {
  width: 1280px;
  gap: 6rem;
}
#top-about .txt-box {
  width: 580px;
}
#top-about .img-01 {
  position: absolute;
  left: -13.5rem;
  bottom: -33rem;
}
#top-about .img-02 {
  position: absolute;
  right: -16rem;
  bottom: -45rem;
}

#top-worries .top-box {
  width: 100%;
}
#top-worries .check-li {
  justify-content: center;
  align-content: center;
  background: url(../img/top/worries-bg.png) center/100% 100% no-repeat;
  width: 900px;
  margin: 0 auto;
  padding: 10rem 7rem 14rem;
  gap: 2rem;
}
#top-worries .ill {
  position: absolute;
  bottom: 0;
  right: 0;
}
#top-worries .btm-box {
  margin-top: 10rem;
  background: url(../img/top/contact-le.png) left bottom no-repeat, url(../img/top/contact-ri.png) right bottom no-repeat, var(--bg-color-02);
}
#top-worries .btm-box .ttl01 {
  margin-top: -3rem;
}
#top-worries .btm-box .com-info-box {
  padding: 3rem 28rem 10rem;
}
#top-worries .btm-box .com-info-box .com-info-dl {
  padding-bottom: 2rem;
  border-bottom: 2px solid #fff;
}

.voice-li {
  display: grid;
  gap: 2rem;
}
.voice-li li {
  padding: 4rem 8rem;
}
.voice-li li .com-img {
  width: 13rem;
  aspect-ratio: 1;
}
.voice-li li .txt-box {
  width: 760px;
  gap: 1rem 0;
}
.voice-li li .txt-box .ttl03 {
  margin: 0;
}
.voice-li li .dot::before {
  content: "・";
}

#top-voice .com-btn {
  margin: 5rem auto 0;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news {
  padding-bottom: 0;
}
#top-news .inbox {
  position: relative;
}
#top-news .inbox .ttl01 {
  width: 300px;
  margin: 0;
  padding: 0;
  display: grid;
  align-items: center;
}
#top-news .inbox .news-list {
  width: 690px;
  min-height: 320px;
}
#top-news .inbox .news-list .news-item:not(:last-child) {
  border-bottom: 2px solid var(--yellow);
  margin-bottom: 2rem;
}
#top-news .inbox .news-list .news-item:first-child {
  border-bottom: 2px solid var(--yellow);
}
#top-news .inbox .news-list .news-item a {
  padding: 0 0 2rem;
  gap: 1rem;
  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: 200px;
  height: 150px;
}
#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 .txt-box {
  width: 720px;
  gap: 10px 20px;
}
#top-news .inbox .com-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

/*------------△△---NEWS---△△---------*/
#top-other ul li a {
  width: 34rem;
  height: 18rem;
  font-size: 3.2rem;
  border-radius: 3.2rem;
  margin: 0;
  z-index: 1;
}
#top-other ul li a::before {
  content: "";
  display: block;
  width: 94%;
  height: 94%;
  position: absolute;
  background: url("../img/top/other-dot.png") center/contain no-repeat;
  inset: 0;
  margin: auto;
}
#top-other ul li a .ill {
  position: absolute;
  bottom: -2rem;
  left: 2rem;
  z-index: 10;
  transition: 0.3s;
}
#top-other ul li a:hover {
  transform: scale(0.98);
  opacity: 0.8;
}
#top-other ul li a:hover .ill {
  transform: rotate(-10deg) scale(1.05);
}

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

#footer {
  position: relative;
  z-index: 1;
  background: #fff;
}
#footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 27.7rem;
  position: absolute;
  background: url(../img/common/bg-ft-le.png) left bottom/28.75% no-repeat, url(../img/common/bg-ft-ri.png) right bottom/36% no-repeat;
  top: -27.6rem;
  left: 0;
  z-index: -1;
}
#footer .map {
  height: 44rem;
}
#footer .ft-area {
  padding: 100px 0;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: start;
  width: 40%;
  gap: 4rem;
}
#footer .ft-area .ft-le .ft-logo {
  width: 24rem;
}
#footer .ft-area .ft-le .ft-info-box .ft-info {
  display: grid;
  gap: 5px;
}
#footer .ft-area .ft-ri {
  width: 50%;
  gap: 5rem 8rem;
}
#footer .ft-area .ft-ri .nav-list {
  display: grid;
  gap: 3rem;
}
#footer .ft-area .ft-ri .nav-list .nav-item {
  line-height: 1;
}
#footer .ft-area .ft-ri .nav-list .current {
  color: var(--accent-color);
}
#footer .copyright {
  color: var(--font-color-02);
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#about-reason .inbox {
  gap: 11rem;
}
#about-reason .intro-box::after {
  content: "";
  display: block;
  width: 4.8rem;
  height: auto;
  aspect-ratio: 1.2;
  position: absolute;
  background: url("../img/common/aka-hart.png") center/contain no-repeat;
  position: static;
  margin: 5rem auto 0;
}
#about-reason .top-box {
  gap: 0 4rem;
}
#about-reason .top-box .area-box {
  align-content: center;
  width: 37.5rem;
  height: 33.5rem;
  background: url(../img/about/reason-area-bg.png) center/contain no-repeat;
}
#about-reason .top-box .area-box .ttl02::before {
  content: "";
  display: block;
  width: 2.7rem;
  height: auto;
  aspect-ratio: 0.7;
  position: absolute;
  background: url("../img/about/reason-pin.png") center/contain no-repeat;
  position: static;
  margin: 0 auto 0.5rem;
}
#about-reason .top-box .area-box dl {
  gap: 2rem;
}

#about-service ul {
  gap: 7rem;
}
#about-service ul li .txt-box {
  width: 57rem;
}
#about-service ul li .ttl02 {
  margin-bottom: 2rem;
}
#about-service ul li .ttl02 span {
  display: inline-block;
  padding: 2.5rem 4rem;
}
#about-service ul li .ttl02 .bg-gre {
  background: url(../img/about/job-ttl-01.png) center/contain no-repeat;
}
#about-service ul li .ttl02 .bg-ora {
  background: url(../img/about/job-ttl-02.png) center/contain no-repeat;
}

/*03*/
#oneday-spot .spot-list {
  gap: 5rem 0;
}
#oneday-spot .spot-list li {
  display: grid;
  justify-items: start;
}
#oneday-spot .spot-list li a {
  width: 50rem;
}
#oneday-spot .spot-list li a .com-img {
  width: 100%;
  aspect-ratio: 1.47;
  margin-bottom: 2rem;
}
#oneday-spot .spot-list li a .ttl03 {
  margin-bottom: 1rem;
}

.spot-item .link-txt {
  width: auto !important;
  display: inline-block;
  margin-top: 1.5rem;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid var(--main-color);
  display: inline-block;
  padding-right: 3.5rem;
  background: url(../img/oneday/link-arw.png) right/2.4rem no-repeat;
}

.spot-detail {
  width: 88rem;
  margin: 0 auto;
}
.spot-detail .com-img {
  width: 100%;
  aspect-ratio: 1.46;
  margin-bottom: 5rem;
}

#oneday-flow .ttl01 {
  margin-bottom: 11rem;
}
#oneday-flow .flow-box {
  padding-bottom: 9rem;
  border: 4px dashed var(--yellow);
}
#oneday-flow .flow-box .ttl02 {
  margin-top: -9rem;
}
#oneday-flow .flow-box .ttl02 span {
  background: url(../img/oneday/flow-ttl.png) center/contain no-repeat;
  display: inline-block;
  padding: 2.5rem 4rem;
}
#oneday-flow ol {
  display: grid;
  gap: 4rem;
}
#oneday-flow ol li .time {
  color: var(--yellow);
  line-height: 1;
  text-align: center;
  display: grid;
  justify-items: inherit;
  padding-top: 1.5rem;
  width: 9rem;
  height: 6.6rem;
  font-size: 2.6rem;
  background: url(../img/oneday/flow-icon.png);
}
#oneday-flow ol li .txt-box {
  width: 820px;
  padding-top: 1.5rem;
}
#oneday-flow ol li .txt-box .ttl04 {
  margin-bottom: 2rem;
}
#oneday-flow .img-box {
  position: absolute;
  bottom: -4rem;
  right: -3rem;
}

#recruit-about .about-li {
  margin-top: 13rem;
  gap: 5rem 0;
}
#recruit-about .about-li > li {
  width: 500px;
}
#recruit-about .about-li > li .img-box {
  margin-bottom: 2rem;
}
#recruit-about .about-li .list-box {
  display: grid;
  align-content: center;
  outline: 4px dashed var(--yellow);
  outline-offset: -1.5rem;
}
#recruit-about .about-li .list-box .check-li {
  align-content: center;
  justify-content: center;
  gap: 3rem;
}

#recruit-service .txt-box {
  width: 740px;
}
#recruit-service ul {
  display: grid;
  gap: 0.5rem;
}
#recruit-service ul li {
  margin: 0;
  padding-left: 2rem;
  position: relative;
}
#recruit-service ul li::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  border-radius: 50vw;
  left: 0.5rem;
  top: 2.2rem;
}
#recruit-service ul li:nth-child(odd)::before {
  background: var(--green);
}
#recruit-service ul li:nth-child(even)::before {
  background: var(--orange);
}
/*---------------------------▽▽---SV---▽▽------------------------*/
.sv-area {
  background-size: cover;
  background-position: right;
  height: 50rem;
  display: grid;
  align-content: center;
}

.sv .sv-catch {
  width: 76rem;
  border: 8px solid #fff;
  border-radius: 2rem;
  position: relative;
  background: var(--orange);
  font-size: 5.8rem;
  text-align: center;
  padding: 0.8rem;
}
.sv .sv-catch::before {
  content: "";
  display: block;
  width: 4rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/sv/ct-le.png") center/contain no-repeat;
  left: -2.5rem;
  top: 1.5rem;
}
.sv .sv-catch::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/sv/ct-ri.png") center/contain no-repeat;
  right: 2rem;
  bottom: -2rem;
}

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

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

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

.voice-sv {
  background-image: url(../img/sv/voice.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-map .site-list li {
  font-size: 1.8rem;
}
#site-map .site-list li a {
  display: block;
  padding: 20px 10px;
  border-bottom: 2px solid color-mix(in srgb, var(--main-color) 50%, transparent);
  color: var(--font-color);
  position: relative;
}
#site-map .site-list li a::after {
  content: "";
  display: block;
  width: 10px;
  height: 12px;
  background: var(--main-color);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto 0;
}
#site-map .site-list li a:hover {
  background: color-mix(in srgb, var(--main-color) 50%, transparent);
}

/*---------------------------△△---site.html---△△------------------------*/
/*---------------------------▽▽---404.html---▽▽------------------------*/
#notfound .inbox .com-txt {
  text-align: center;
}
#notfound .inbox .com-txt a {
  text-decoration: underline;
  color: var(--font-color);
}

/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
#privacy .privacy-box {
  margin-bottom: 50px;
  padding: 0;
}
#privacy .privacy-box .ttl02 {
  text-align: left;
  padding: 10px 30px;
  margin-bottom: 20px;
  background: var(--main-color);
  color: #fff;
  border-radius: 1.5rem;
}

/*---------------------------△△---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;
  margin-bottom: 20px;
  align-items: flex-start;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box time {
  width: 100px;
  padding: 1rem 0;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 980px;
}
#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;
  padding: 1rem 0;
}
#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;
  border: 2px solid var(--main-color);
  font-size: 1.8rem;
  background: #fff;
}
.pagenation li a, .pagenation li span {
  line-height: 1;
  padding: 12px 18px;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
}
.pagenation .current {
  background: var(--main-color);
  color: #fff;
}

.pagenation-detail {
  position: relative;
  height: 50px;
  margin-top: 60px;
}
.pagenation-detail p a {
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 18px 0;
  height: 50px;
  background: var(--main-color);
  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---△△------------------------*/