@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.7rem;
  line-height: 1.5;
}

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

section {
  padding: 100px 0;
}

.dl-item {
  display: flex;
}

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

.com-btn {
  font-size: 2rem;
  width: 48rem;
  height: 6rem;
  margin: 3rem auto 0;
  display: grid;
  place-items: center;
  border-radius: 50vw;
  background: var(--grd-color);
  position: relative;
  color: var(--white);
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 2rem 0 auto;
  margin: auto 0;
}
.flex > .ttl01 {
  width: 100%;
}

.ttl01 {
  text-align: center;
  padding-bottom: 3rem;
  background: url(../img/common/ttl-deco.png) bottom center no-repeat;
  font-size: 5rem;
  letter-spacing: 0.14em;
  margin-bottom: 6rem;
  font-weight: 700;
  color: var(--main-color);
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}

#top-page .ttl01 {
  padding-bottom: 0;
  background: none;
  color: var(--main-color);
}

.ttl02 {
  font-size: 3.4rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.ttl03 {
  font-size: 2.4rem;
  font-weight: 700;
  font-weight: 700;
}

.ttl04 {
  font-size: 2.2rem;
  font-weight: 700;
}

.ttl05 {
  font-size: 2rem;
  font-weight: 700;
}

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

.ttl-bd span {
  position: relative;
  z-index: 1;
}
.ttl-bd span::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.6rem;
  position: absolute;
  background: var(--mark-color);
  border-radius: 50vw;
  inset: auto 0 0 0;
  z-index: -1;
}

.ttl-bd-le {
  display: inline-block;
  padding-left: 1.3rem;
  position: relative;
  z-index: 1;
}
.ttl-bd-le::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 2.4rem;
  position: absolute;
  background: var(--main-color);
  border-radius: 50vw;
  left: 0;
  top: 0.2rem;
  z-index: -1;
}

.ttl-bg {
  border-radius: 1rem;
  background: rgba(120, 192, 222, 0.8);
  color: #fff;
  padding: 1rem 3.5rem;
}

.com-deco-box {
  border-radius: 2.5rem;
  padding: 6rem 5rem;
  background: url(../img/common/box-bd.png) bottom 2rem center no-repeat, url(../img/common/box-bd.png) top 2rem center no-repeat, rgba(255, 255, 255, 0.6);
}

#top-about .com-deco-box {
  background: url(../img/common/box-bd.png) bottom 4rem center no-repeat, rgba(255, 255, 255, 0.6);
}

#about-flow .com-deco-box {
  background: url(../img/about/flow-bd.png) bottom 1rem center no-repeat, url(../img/about/flow-bd.png) top 1rem center no-repeat, rgba(255, 255, 255, 0.6);
}

.bg-deco {
  background: url(../img/common/bg-01.jpg) center/cover;
}

.com-tel {
  display: grid;
  justify-items: start;
}
.com-tel a {
  font-size: 3rem;
  font-weight: 700;
}
.com-tel a::before {
  content: "TEL:";
  font-size: 2.1rem;
  color: var(--main-color);
}

.com-ill-sdw {
  filter: drop-shadow(0.4rem, 0.4rem, 1rem, #c0d3d6);
}

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

.com-kado-02 {
  border-radius: 5rem;
}

.txt-sdw {
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  line-height: 1;
  padding: 0.5rem 1rem;
}

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

#achieve-page .tag-list .tag {
  color: #fff;
  background: var(--ttl-bg-clr);
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-size: 1.6rem;
}

.add-box {
  gap: 4rem;
}
.add-box .sns-list {
  margin: 0;
}

/*infotableスタイル*/
.com-desc-tbl {
  width: 520px;
}
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid var(--bd-color);
}
.com-desc-tbl .dl-item dt {
  color: var(--main-color);
  width: 170px;
}
.com-desc-tbl .dl-item dd {
  width: 330px;
}
.com-desc-tbl .dl-item dd .tel-txt {
  display: inline-flex;
}

.map {
  width: 540px;
  height: 680px;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: var(--bg-color);
  z-index: 100;
  padding: 1rem 3rem;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right .hd-top {
  margin-bottom: 1rem;
}
#header .hd-right #nav .nav-list {
  gap: 35px;
}
#header .hd-right #nav .nav-list .nav-item {
  position: relative;
  font-weight: 700;
}
#header .hd-right #nav .nav-list .nav-item > a {
  padding-bottom: 5px;
  opacity: 1;
  position: relative;
}
#header .hd-right #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;
}
#header .hd-right #nav .nav-list .nav-item > a:hover::after {
  transform: scale(1);
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  position: relative;
  background: var(--bg-color);
}
.top-mv img {
  width: 100%;
}
.top-mv .mv-ct {
  position: absolute;
  width: 36%;
  inset: 0;
  margin: auto;
  display: grid;
  align-content: center;
}
.top-mv .mv-img {
  width: 94.2%;
  margin: 0 auto;
}

/*---------------------------△△---MV---△△------------------------*/
#top-about {
  background: url(../img/top/about-wave.png) bottom/100% no-repeat, url(../img/top/about-bg.jpg) center/cover;
}
#top-about .com-deco-box {
  padding: 4rem 2rem 10rem;
  margin-top: 9rem;
}
#top-about .com-deco-box .ttl01 {
  background: url(../img/top/about-bd-le.png) left/35rem no-repeat, url(../img/top/about-bd-le.png) right/35rem no-repeat;
  font-size: 4rem;
}
#top-about .com-deco-box ul {
  gap: 9rem;
}
#top-service {
  background: url(../img/top/srv-ill.png) top 4rem center no-repeat, var(--bg-color);
}
#top-service .inbox .ttl01 {
  background: url(../img/top/srv-bd-le.png) left/38rem no-repeat, url(../img/top/srv-bd-le.png) right/38rem no-repeat;
  font-size: 4.2rem;
}
#top-service .inbox ul {
  margin-top: 5rem;
  gap: 1.2rem;
}
#top-service .inbox ul li {
  gap: 1rem;
}

#top-other {
  background: url(../img/top/other-bg.png) bottom/100% no-repeat, var(--bg-color);
}
#top-other .inbox a {
  width: 520px;
  height: 280px;
}
#top-other .inbox a .ttl02 {
  width: 26rem;
  padding: 1rem 0;
  box-shadow: 0.5rem 0.5rem 0 var(--main-color);
  transition: 0.3s;
}
#top-other .inbox a:hover {
  transform: scale(0.95);
}
#top-other .inbox a:hover .ttl02 {
  transform: scale(1.05);
}
#top-other .inbox .other-01 {
  background: url(../img/top/other-01.jpg) center/cover;
}
#top-other .inbox .other-02 {
  background: url(../img/top/other-02.jpg) center/cover;
}

#top-info .ttl01 {
  font-size: 5.2rem;
}
/*--------▽▽---NEWS---▽▽---------- */
#top-news {
  padding: 8rem 0;
  background: url(../img/top/news-bg.jpg) center/cover;
}
#top-news .inbox {
  position: relative;
  padding: 4rem;
}
#top-news .inbox .ttl01 {
  margin: 0;
  padding: 0;
  font-size: 4.8rem;
}
#top-news .inbox .news-list {
  width: 750px;
}
#top-news .inbox .news-list .news-item:not(:last-child) {
  border-bottom: 1px solid var(--main-color);
}
#top-news .inbox .news-list .news-item a {
  font-weight: 400;
  padding: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#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 {
  width: 540px;
}
#top-news .inbox .news-list .news-item a .tag-list .tag::before {
  content: "|";
}
#top-news .inbox .com-btn {
  width: 22rem;
  font-size: 1.7rem;
}

/*------------△△---NEWS---△△---------*/
.pagetop {
  position: fixed;
  z-index: 100;
  right: 2.5rem;
  bottom: 8rem;
}

#footer {
  position: relative;
}
#footer .ft-area {
  padding: 5rem 0;
}
#footer .ft-area .ft-le {
  gap: 5rem;
}
#footer .ft-area .ft-ri {
  gap: 7.5rem;
}
#footer .ft-area .ft-ri .nav-list {
  display: grid;
  gap: 2rem;
}
#footer .ft-area .ft-ri .nav-list .nav-item {
  line-height: 1;
}
#footer .copyright {
  padding: 2rem;
  font-size: 1.2rem;
  background: var(--main-color);
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#about-commitment ul li:not(:last-child) {
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--bd-color);
  margin-bottom: 4rem;
}
#about-commitment ul li .txt-box {
  width: 640px;
}
#about-commitment ul li .txt-box .ttl03 {
  margin-bottom: 2rem;
}

#about-staff ul {
  gap: 4rem;
}
#about-staff ul li {
  padding: 4rem 6rem;
}
#about-staff ul li .img-box {
  width: 23rem;
}
#about-staff ul li .txt-box {
  width: 690px;
}
#about-staff ul li .txt-box .ttl05 {
  margin-bottom: 2rem;
}
#about-flow ul li {
  width: 25rem;
  padding: 4rem 1.5rem;
  align-content: start;
  gap: 2rem;
}
#about-flow ul li:not(:last-child)::after {
  content: "";
  display: block;
  width: 1.4rem;
  height: 7.5rem;
  position: absolute;
  background-color: var(--accent-color);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  margin: auto 0;
  inset: 0 -2rem 0 auto;
  margin: auto 0;
}
#about-flow ul li .ttl03 {
  gap: 1rem;
}
#about-flow ul li .ttl03 span {
  padding: 0 1rem;
}

.srv-btn-box {
  padding: 13rem 0 10rem;
}
.srv-btn-box ul {
  gap: 3rem;
}
.srv-btn-box .com-btn {
  margin: 0;
  width: 340px;
}

.service-area {
  padding: 3rem 0;
}
.service-area:last-child {
  padding-bottom: 10rem;
}
.service-area .com-deco-box .txt-box {
  width: 520px;
}
.service-area .com-deco-box .txt-box .com-txt {
  margin-top: 2rem;
}
.service-area .com-deco-box ul {
  width: 100%;
  gap: 3rem;
  margin-top: 4rem;
}
.service-area .com-deco-box ul li .ttl05 {
  margin-bottom: 1rem;
}
.service-area .com-deco-box ul li dl .dl-item {
  justify-content: space-between;
  padding: 1.5rem 3rem;
}
.service-area .com-deco-box ul li dl .dl-item:not(:last-child) {
  border-bottom: 1px solid var(--bd-color);
}
#faq ul {
  gap: 4rem;
}
#faq ul li .ttl05 {
  margin-bottom: 2rem;
}
#faq ul li .ttl05::before {
  content: "Q.";
}
#faq ul li .com-txt {
  padding: 0 2rem;
}

#achieve .achieve-list {
  gap: 6rem 3rem;
  margin-top: 7rem;
}
#achieve .achieve-list .achieve-item {
  width: 340px;
}
#achieve .achieve-list .achieve-item a {
  gap: 1rem;
}
#achieve .achieve-list .achieve-item a .com-img {
  width: 100%;
  aspect-ratio: 1.45;
}

.achieve-box {
  gap: 2rem;
  padding: 6rem 4rem;
}
.achieve-box .ttl02 {
  font-size: 2.8rem;
}
.achieve-box .bfaf-box .ttl05 {
  line-height: 1;
  margin-top: 1rem;
}
.achieve-box .bfaf-box .com-img {
  aspect-ratio: 1.45;
}
.achieve-box .bf-box {
  position: relative;
}
.achieve-box .bf-box::before {
  content: "";
  display: block;
  width: 3.5rem;
  height: 7rem;
  position: absolute;
  background-color: var(--accent-color);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  margin: auto 0;
  inset: 0 -6rem 0 auto;
  margin: auto 0;
}
.achieve-box .bf-box .com-img {
  width: 406px;
}
.achieve-box .af-box .com-img {
  width: 510px;
}
.achieve-box .flow-box {
  margin-top: 5rem;
}
.achieve-box .flow-box ul {
  margin-top: 2rem;
  gap: 2rem;
}
.achieve-box .flow-box ul li {
  width: 320px;
  aspect-ratio: 1.45;
}
.achieve-box .voice-box {
  margin-top: 5rem;
  gap: 3rem 0;
}
.achieve-box .voice-box .ill-box {
  width: 200px;
}
.achieve-box .voice-box .txt-box {
  width: 760px;
  padding: 3rem;
  position: relative;
  background: #e9f5f9;
}
.achieve-box .voice-box .txt-box::before {
  content: "";
  display: block;
  width: 2rem;
  height: 4rem;
  position: absolute;
  background-color: #e9f5f9;
  clip-path: polygon(0 50%, 100% 0%, 100% 100%);
  margin: 0 auto;
  left: -2rem;
  top: 8rem;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  position: relative;
  padding: 2rem 0;
}
.sv .sv-catch {
  font-size: 5.4rem;
  width: 68rem;
  height: 18rem;
  background: url(../img/sv/bg.png) bottom no-repeat, rgba(255, 255, 255, 0.95);
  border: 0.6rem solid #cdebf6;
  display: grid;
  align-content: center;
  justify-items: center;
  font-weight: 700;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 100;
  color: #1da2d8;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
.sv .sv-catch::before {
  content: "";
  display: block;
  width: 13.5rem;
  height: auto;
  aspect-ratio: 0.77;
  position: absolute;
  background: url("../img/sv/deco-le.png") center/contain no-repeat;
  left: 0;
  top: -4rem;
}
.sv .sv-catch::after {
  content: "";
  display: block;
  width: 11.8rem;
  height: auto;
  aspect-ratio: 1.55;
  position: absolute;
  background: url("../img/sv/deco-ri.png") center/contain no-repeat;
  top: -2rem;
  right: 0;
}
.sv .sv-catch .ft-wt {
  position: absolute;
  bottom: 0;
  display: block;
  font-size: 2.8rem;
}
.sv .sv-img {
  width: 91.6%;
  height: 460px;
  border: 1rem solid #fff;
  margin: 0 auto;
}

/*---------------------------△△---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---△△------------------------*/