@charset "UTF-8";
/*アニメーションCSS*/
/*ボーダーが真ん中から左右に広がる*/
/*ボタンの背景が横から出てくる*/
#wrapper {
  min-width: 1280px;
}

.select-area {
  position: relative;
}
.select-area .select-box {
  position: relative;
  font-family: var(--selif-font);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #262626;
  padding: 3% 0;
  background: none;
  border: none;
  border-bottom: 2px solid #555;
  font-size: 3vw;
  font-weight: 500;
}
.select-area::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  border-right: 1px solid #262626;
  border-bottom: 1px solid #262626;
  transform: rotate(45deg);
  right: 10px;
  bottom: 20px;
}

/*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;
}

html {
  scroll-padding: 60px;
}

/*-------▽▽フォント▽▽----------*/
body {
  font-size: 1.6rem;
  line-height: 1.3;
}

/*--------△△フォント△△---------*/
/*======================================================
 * ▽▽---共通スタイル---▽▽
 * =======================================================*/
.ttl01 {
  text-align: center;
  padding-bottom: 35px;
  position: relative;
  margin-bottom: 50px;
}
.ttl01 .en-deco {
  color: var(--sub-color);
  font-size: 5.6rem;
  font-family: var(--en-font-02);
}
.ttl01 .en {
  color: var(--main-color);
  font-size: 9rem;
  line-height: 0.97;
  font-weight: 400;
  font-family: var(--en-font);
  margin-bottom: 15px;
  display: block;
}
.ttl01 .ja {
  font-size: 3.8rem;
  font-weight: 300;
  display: block;
}
.ttl01::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  position: absolute;
  background: var(--main-color);
  inset: auto 0 0 0;
  margin: 0 auto;
}
.ttl01.txt-left {
  text-align: left;
}
.ttl01.txt-left::after {
  inset: auto auto 0 10px;
}

.ttl02 {
  font-size: 3rem;
  font-weight: 300;
  position: relative;
  text-align: center;
  color: var(--main-color);
  padding-bottom: 20px;
}
.ttl02::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  position: absolute;
  background: var(--main-color);
  inset: auto 0 0 0;
  margin: 0 auto;
}
.ttl02.txt-left {
  text-align: left;
}
.ttl02.txt-left::after {
  inset: auto auto 0 0;
}

.com-txt {
  line-height: 1.625;
  margin-bottom: 25px;
}

.com-tel {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
  color: var(--main-color);
  background: url("../img/common/tel-icon.png") left center/auto no-repeat;
  padding-left: 30px;
  box-sizing: border-box;
}

.com-btn {
  display: grid;
  place-items: center;
  width: 380px;
  height: 74px;
  background: var(--accent-color);
  position: relative;
  margin-top: 50px;
}
.com-btn::after {
  content: "";
  display: block;
  width: 22px;
  height: 8px;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 auto 0 20px;
  margin: auto 0;
  transition: 0.3s;
}
.com-btn:hover {
  background: var(--accent-color-02);
  opacity: 1;
}
.com-btn:hover::after {
  transform: translateX(10px);
}

.com-bd {
  border: 20px solid #fff;
  outline: 1px solid rgba(143, 180, 137, 0.5);
  background: var(--bg-color);
}

/*infotableスタイル*/
.com-desc-tbl {
  background: var(--bg-color);
  padding: 40px 100px;
}
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  line-height: 1.625;
}
.com-desc-tbl .dl-item:not(:last-child), .com-desc-tbl .dl-item:first-child {
  border-bottom: 1px solid var(--sub-color);
}
.com-desc-tbl .dl-item dt {
  color: var(--main-color);
  width: 150px;
}
.com-desc-tbl .dl-item dd {
  width: 720px;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
/*エントランスのスタイル*/
#entrance-page #header .hd-right .hd-add .hd-tel {
  padding: 16px 20px;
}

#header {
  padding: 15px 30px;
  align-items: center;
  position: fixed;
  background: #fff;
  z-index: 100;
  width: 100%;
}
#header .hd-logo {
  width: 256px;
}
#header .hd-right {
  width: 880px;
  gap: 20px;
}
#header .hd-right .hd-add {
  display: grid;
  place-items: end;
}
#header .hd-right .hd-add .hd-tel {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 6px 20px;
  background: #ecf5eb;
}
#header .hd-right .hd-add #nav {
  margin-top: 15px;
}
#header .hd-right .hd-add #nav .nav-list .nav-item {
  line-height: 1;
  position: relative;
  padding: 0 20px 0;
  border-right: 1px solid var(--font-color-02);
}
#header .hd-right .hd-add #nav .nav-list .nav-item:last-child {
  border: none;
  padding-right: 0;
}
#header .hd-right .hd-add #nav .nav-list .nav-item .drop-down {
  transition: 0.3s;
  gap: 5px;
  padding-left: 20px;
  position: relative;
  cursor: pointer;
}
#header .hd-right .hd-add #nav .nav-list .nav-item .drop-down::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  border-right: 1px solid var(--font-color);
  border-bottom: 1px solid var(--font-color);
  transform: rotate(45deg);
  inset: 3px auto 0 0;
}
#header .hd-right .hd-add #nav .nav-list .nav-item .drop-down:hover {
  color: var(--main-color);
}
#header .hd-right .hd-add #nav .nav-list .nav-item .drop-down.current {
  color: var(--main-color);
}
#header .hd-right .hd-add #nav .nav-list .nav-item .nav-child-list {
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  width: 100%;
  position: absolute;
  left: 0px;
  top: 30px;
  z-index: 50;
  background: var(--accent-color);
  transition: 0.5s;
}
#header .hd-right .hd-add #nav .nav-list .nav-item .nav-child-list .child-item:not(:last-child) {
  border-bottom: 1px solid var(--sub-color);
}
#header .hd-right .hd-add #nav .nav-list .nav-item .nav-child-list .child-item a {
  display: block;
  padding: 10px 20px;
}
#header .hd-right .hd-add #nav .nav-list .nav-item .nav-child-list .child-item a::after {
  content: none;
}
#header .hd-right .hd-add #nav .nav-list .nav-item .nav-child-list .child-item a:hover {
  opacity: 1;
  color: #fff;
  background: var(--main-color);
}
#header .hd-right .hd-add #nav .nav-list .nav-item .nav-child-list .child-item.current {
  background: var(--sub-color);
}
#header .hd-right .hd-add #nav .nav-list .nav-item .nav-child-list .child-item.current a {
  color: #fff;
}
#header .hd-right .hd-add #nav .nav-list .nav-item:hover .nav-child-list {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
#header .hd-right .hd-add #nav .nav-list .nav-item.current a {
  color: var(--main-color);
}
#header .hd-right .hd-add #nav .nav-list .nav-item.current a::after {
  transform: scale(1);
}
#header .hd-right .hd-btn-list {
  gap: 20px;
}
#header .hd-right .hd-btn-list .btn-item.mail-btn a {
  width: 60px;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background: var(--accent-color);
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  margin-top: 101px;
  display: grid;
  place-items: center;
  height: 37vw;
  min-height: 474px;
  background: url(../img/top/mv-bg.jpg) center/cover;
  position: relative;
  z-index: 1;
}
.top-mv::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(108, 149, 101, 0.54);
  inset: 0;
  z-index: -1;
}
/*---------------------------△△---MV---△△------------------------*/
/*----------▽▽---entrance---▽▽----------*/
.ent-mv {
  margin-top: 101px;
  width: 100%;
  height: calc(100vh - 132px);
}
.ent-mv .ent-item {
  width: 33.333%;
}
.ent-mv .ent-item .ent-btn {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.ent-mv .ent-item .ent-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: center/cover;
  z-index: -1;
  transition: 0.5s;
}
.ent-mv .ent-item .ent-btn .ttl01 {
  width: 89%;
  max-width: 570px;
  min-height: 310px;
  padding: 20px 10px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.84);
  display: grid;
  place-items: center;
  align-content: center;
  box-shadow: 0 0 12px 12px rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(83, 127, 75, 0.3);
}
.ent-mv .ent-item .ent-btn .ttl01 .en {
  font-size: 6.6rem;
  margin-bottom: 30px;
}
.ent-mv .ent-item .ent-btn .ttl01 .ja {
  font-size: 2.6rem;
  margin-bottom: 35px;
}
.ent-mv .ent-item .ent-btn .ttl01 .ja span {
  display: inline-block;
}
.ent-mv .ent-item .ent-btn .ttl01::after {
  position: static;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--main-color);
  background: url(../img/common/btn-arw.png) center/22px no-repeat;
  bottom: 55px;
}
.ent-mv .ent-item .ent-btn:hover::after {
  transform: scale(1.05);
}
.ent-mv #official-site .ent-btn::after {
  background-image: url(../img/ent/off.jpg);
}
.ent-mv #hiroko-site .ent-btn::after {
  background-image: url(../img/ent/hiroko.jpg);
}
.ent-mv #horse-site {
  position: relative;
}
/* .ent-mv #horse-site::after {
  content: "※準備中";
  color: #fff;
  font-size: 3.2rem;
  font-weight: 300;
  width: 100%;
  height: 100%;
  position: absolute;
  display: grid;
  place-items: center;
  background: rgba(79, 85, 77, 0.8);
  inset: 0;
} */
.ent-mv #horse-site .ent-btn::after {
  background-image: url(../img/ent/horse.jpg);
}
.ent-mv #horse-site .ent-btn .ttl01 .en {
  font-size: 5.4rem;
}

/*----------△△---entrance---△△----------*/
/*----------▽▽---top-greeting---▽▽----------*/
#top-greeting {
  max-width: 1920px;
  margin: 120px auto;
  position: relative;
}
#top-greeting .inbox {
  width: 1280px;
}
#top-greeting .inbox .txt-box {
  width: 665px;
  margin-left: auto;
}
#top-greeting .inbox .txt-box .gree-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 45.3125%;
  height: 510px;
}
/*----------△△---top-greeting---△△----------*/
.bg-ri {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(to left, var(--bg-color) calc(50% + 640px), #fff calc(50% + 640px), #fff 100%);
}
.bg-ri::after {
  content: "";
  display: block;
  width: 6.25%;
  height: 169px;
  position: absolute;
  background: url("../img/common/deco-leaf.png") center/contain no-repeat;
  background-position: bottom;
  z-index: 10;
  right: 0;
  top: -145px;
}

/*-------------▽▽---top-about---▽▽----------*/
#top-about {
  margin: 120px 0;
}
#top-about .inbox .gree-img {
  position: absolute;
  overflow: unset;
  width: 33.333%;
  height: 440px;
  max-width: 640px;
  left: calc(50% + clamp(130px, 11.4vw, 220px));
  bottom: -70px;
  z-index: 1;
}
#top-about .inbox .gree-img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid rgba(143, 180, 137, 0.5);
  right: -60px;
  top: -60px;
  z-index: -1;
}
#top-about .inbox .com-txt {
  max-width: 600px;
}
/*-------------△△---top-about---△△----------*/
/*-------------▽▽---top-symptom---▽▽----------*/
#top-symptom {
  background: #f4f4f4;
  padding: 120px 0 520px;
  position: relative;
}
#top-symptom::after {
  content: "";
  display: block;
  width: 100%;
  height: 400px;
  position: absolute;
  background: url("../img/top/bg-whide.jpg") center/contain no-repeat;
  background-size: cover;
  bottom: 0;
}
#top-symptom .inbox .sptm-img-box {
  display: grid;
  place-items: center;
  padding: 45px 0 60px;
  background: #fff;
  border: 15px solid #f4f4f4;
  outline: 1px solid rgba(143, 180, 137, 0.5);
}
#top-symptom .inbox .com-btn {
  margin: 50px auto 0;
}

/*-------------△△---top-symptom---△△----------*/
/*-------------▽▽---top-horse---▽▽----------*/
#top-horse {
  padding: 120px 0;
  background: url(../img/top/horse-ill.png) right top 50px/17.5% no-repeat;
}
#top-horse .inbox {
  gap: 0 50px;
}
#top-horse .inbox .ttl01 {
  width: 100%;
}
#top-horse .inbox .horse-img {
  width: 526px;
}
#top-horse .inbox .txt-box {
  width: 496px;
}
/*-------------△△---top-horse---△△----------*/
/*-------------▽▽---other-list---▽▽----------*/
#other-list {
  position: relative;
}
#other-list::after {
  content: "";
  display: block;
  width: 10.3%;
  height: 228px;
  position: absolute;
  background: url("../img/common/ohter-ill.png") center/contain no-repeat;
  left: 0;
  bottom: 320px;
  background-position: bottom;
}
#other-list .other-item {
  width: 50%;
  height: 320px;
  overflow: hidden;
}
#other-list .other-item a {
  background: center/cover;
  width: 100%;
  height: 100%;
  padding: 75px;
}
#other-list .other-item a .other-ttl {
  font-size: 4.6rem;
  font-weight: 300;
  width: 400px;
  height: 170px;
  border: 1px solid rgba(83, 127, 75, 0.3);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
  box-shadow: 0 0 15px 15px rgba(255, 255, 255, 0.8);
}
#other-list .other-item a .other-ttl span {
  position: relative;
  padding-left: 60px;
}
#other-list .other-item a .other-ttl span::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  background-size: auto;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  inset: 0 auto 0 0;
  margin: auto 0;
}
#other-list .other-item:hover a {
  transform: scale(1.05);
}
#other-list .voice a {
  background-image: url(../img/common/voice-bg.jpg);
}
#other-list .question a {
  background-image: url(../img/common/ques-bg.jpg);
}

/*-------------△△---other-list---△△----------*/
/*-------------▽▽---top-news---▽▽----------*/
#top-news {
  margin-top: 120px;
}
#top-news .inbox {
  align-items: center;
}
#top-news .inbox .ttl01 {
  position: relative;
  width: 320px;
  min-height: 310px;
  margin: 0;
  padding: 33px 0;
}
#top-news .inbox .ttl01 .en-deco {
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(-15deg);
}
#top-news .inbox .news-list {
  width: 690px;
  padding: 20px 40px;
  background: var(--bg-color);
}
#top-news .inbox .news-list .news-item:not(:last-child), #top-news .inbox .news-list .news-item:first-child {
  border-bottom: 1px solid var(--sub-color-02);
}
#top-news .inbox .news-list .news-item a {
  display: flex;
  flex-wrap: wrap;
  padding: 16px 0;
}
#top-news .inbox .news-list .news-item a .tag-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}
#top-news .inbox .news-list .news-item a .tag-list .tag {
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 300;
  color: #fff;
  padding: 5px 10px;
  background: var(--sub-color);
}
#top-news .inbox .news-list .news-item a time {
  color: var(--main-color);
  width: 90px;
}
#top-news .inbox .news-list .news-item a .news-list-ttl {
  width: 520px;
}
#top-news .inbox .com-btn {
  width: 320px;
  position: absolute;
  left: 0;
  bottom: 0;
}

/*-------------△△---top-news---△△----------*/
/*-------------▽▽---top-info---▽▽----------*/
#top-info {
  padding-top: 120px;
}
#top-info .inbox {
  margin-bottom: 120px;
  background: url(../img/common/leaf-le.png) top 25px left 120px no-repeat, url(../img/common/leaf-ri.png) top 25px right 120px no-repeat;
}
#top-info .map {
  width: 100%;
  height: 400px;
  background: #000;
}
#top-info .map iframe {
  width: 100%;
  height: 100%;
}

/*-------------△△---top-info---△△----------*/
/*-------------▽▽---footer---▽▽----------*/
#entrance-page #footer .ft-btm .inbox {
  display: block;
}
#entrance-page #footer .ft-btm .inbox .copyright {
  text-align: center;
}

#footer {
  background: #f4f4f4;
}
#footer .ft-area {
  padding: 80px 0;
}
#footer .ft-area .ft-le {
  width: 430px;
  gap: 25px 60px;
}
#footer .ft-area .ft-le .ft-logo {
  width: 270px;
  margin-right: 140px;
}
#footer .ft-area .ft-le .nav-list {
  font-size: 1.4rem;
}
#footer .ft-area .ft-le .nav-list .nav-item {
  padding-left: 10px;
  position: relative;
  margin-bottom: 12px;
}
#footer .ft-area .ft-le .nav-list .nav-item::before {
  content: "";
  display: block;
  width: 2px;
  height: 2px;
  position: absolute;
  background: #000;
  border-radius: 50%;
  left: 0;
  top: 9px;
  margin: auto 0;
}
#footer .ft-area .ft-le .nav-list .nav-item .drop-down {
  margin-bottom: 12px;
}
#footer .ft-area .ft-le .nav-list .nav-item .nav-child-list .child-item {
  padding-left: 15px;
  position: relative;
  margin-bottom: 12px;
}
#footer .ft-area .ft-le .nav-list .nav-item .nav-child-list .child-item::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  position: absolute;
  background: #000;
  left: 0;
  top: 9px;
  margin: auto 0;
}
#footer .ft-area .ft-le .list-wrapper .office-btn {
  display: grid;
  place-items: center;
  width: 200px;
  height: 40px;
  border: 1px solid var(--main-color);
  margin-top: 20px;
}
#footer .ft-area .ft-le .list-wrapper .office-btn span {
  background: url("../img/common/off-icon.png") left center/auto no-repeat;
  padding-left: 20px;
  box-sizing: border-box;
}
#footer .ft-area .ft-le .list-wrapper .office-btn:hover {
  opacity: 1;
  background: var(--sub-color);
  color: #fff;
}
#footer .ft-area .ft-ri {
  width: 575px;
}
#footer .ft-btm {
  padding: 6px 0;
  background: var(--sub-color);
}
#footer .ft-btm .inbox .ft-sub-nav-list {
  gap: 40px;
}
#footer .ft-btm .inbox .ft-sub-nav-list .nav-item {
  font-size: 1.4rem;
  padding-left: 10px;
  position: relative;
}
#footer .ft-btm .inbox .ft-sub-nav-list .nav-item::before {
  content: "";
  display: block;
  width: 2px;
  height: 2px;
  position: absolute;
  background: #000;
  border-radius: 50%;
  left: 0;
  top: 9px;
  margin: auto 0;
}
#footer .ft-btm .inbox .ft-sub-nav-list .nav-item:hover {
  opacity: 1;
  color: #fff;
}
#footer .ft-btm .inbox .copyright {
  font-size: 1.4rem;
  font-weight: 300;
}

.com-contact-ttl {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 300;
  width: 500px;
  margin-left: auto;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.com-contact-ttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background: #c2c2c2;
  inset: 0;
  margin: auto;
  z-index: -1;
}
.com-contact-ttl span {
  background: #f4f4f4;
  padding: 0 20px;
}

.com-contact-box {
  gap: 20px;
  width: 500px;
  padding: 30px 40px;
  margin-left: auto;
  margin-bottom: 65px;
  background: #fff;
}
.com-contact-box .ft-tel {
  text-align: center;
  width: 225px;
}
.com-contact-box .ft-tel img {
  display: inline-block;
}
.com-contact-box .com-contact-btn-list {
  gap: 20px;
}
.com-contact-box .com-contact-btn-list .btn-item.mail-btn a {
  width: 60px;
  aspect-ratio: 1;
  background: var(--accent-color);
  display: grid;
  place-items: center;
}

.com-sns-list {
  flex-wrap: wrap;
}
.com-sns-list .sns-item {
  padding: 10px 20px;
  gap: 20px;
  border-left: 1px solid #c2c2c2;
}
.com-sns-list .sns-item .sns-ttl {
  font-size: 1.4rem;
}
.com-sns-list .sns-item a {
  display: block;
}

/*-------------△△---footer---△△----------*/
/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  margin-top: 101px;
  width: 100%;
  height: clamp(280px, 21.875vw, 420px);
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.sv::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(108, 149, 101, 0.6);
  inset: 0;
  z-index: -1;
}
.sv .sv-catch {
  color: #fff;
  font-size: 5.6rem;
  text-align: center;
  font-weight: 300;
  width: 700px;
  background: rgba(83, 127, 75, 0.6);
  box-shadow: 0 0 10px 10px rgba(83, 127, 75, 0.6);
  position: relative;
}
.sv .sv-catch::before {
  content: "";
  display: block;
  width: 165px;
  height: 118px;
  position: absolute;
  background: url("../img/sv/ill-le.png") center/contain no-repeat;
  left: -30px;
  top: -5px;
}
.sv .sv-catch::after {
  content: "";
  display: block;
  width: 130px;
  height: 126px;
  position: absolute;
  background: url("../img/sv/ill-ri.png") center/contain no-repeat;
  right: -30px;
  top: -35px;
}
.about-sv {
  background-image: url(../img/sv/about.jpg);
}

.reason-sv {
  background-image: url(../img/sv/reason.jpg);
}

.horse-sv {
  background-image: url(../img/sv/horse.jpg);
}

.voice-sv {
  background-image: url(../img/sv/voice.jpg);
}

.question-sv {
  background-image: url(../img/sv/question.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);
}
.e404-sv .sv-catch {
  font-size: 5rem;
}

/*---------------------------△△---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---△△------------------------*/
/*-------------▽▽---com-sec-list---▽▽----------*/
.com-sec-list {
  margin: 120px auto 0;
  gap: 30px;
  justify-content: center;
}
.com-sec-list .sec-item {
  width: 340px;
}
.com-sec-list .sec-item .com-btn {
  width: 340px;
  margin: 0;
}

/*-------------△△---com-sec-list---△△----------*/
/*-------------▽▽---about.html---▽▽----------*/
#about {
  padding: 120px 0;
}
#about .inbox .txt {
  margin-bottom: 70px;
}
#about .inbox .about-box {
  padding: 60px 50px;
  margin-bottom: 70px;
  position: relative;
}
#about .inbox .about-box::before {
  content: "";
  display: block;
  width: 192px;
  height: 222px;
  position: absolute;
  background: url("../img/about/deco-le.png") center/contain no-repeat;
  top: -50px;
  left: 20px;
}
#about .inbox .about-box::after {
  content: "";
  display: block;
  width: 226px;
  height: 261px;
  position: absolute;
  background: url("../img/about/deco-ri.png") center/contain no-repeat;
  bottom: -174px;
  right: -10px;
}
#about .inbox .about-box .ttl02 {
  padding-bottom: 35px;
  margin-bottom: 40px;
}
#about .inbox .about-box .com-txt {
  margin: 0;
}
#about .inbox .about-box-02 {
  padding: 40px 50px;
  align-items: center;
}
#about .inbox .about-box-02 .about-list {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
  position: relative;
  z-index: 1;
}
#about .inbox .about-box-02 .about-list::after {
  content: "";
  display: block;
  width: 220px;
  height: 220px;
  position: absolute;
  border-radius: 50%;
  border: 14px solid rgba(211, 230, 209, 0.6);
  z-index: -1;
  inset: 50px 0 0 0;
  margin: auto;
}
#about .inbox .about-box-02 .about-list .about-item {
  width: 50%;
  display: grid;
  place-items: center;
  gap: 10px;
}
#about .inbox .about-box-02 .about-list .about-item .about-li-ttl {
  font-size: 2.8rem;
  width: 120px;
  aspect-ratio: 1;
  background: var(--accent-color-02);
  display: grid;
  place-items: center;
  border-radius: 50%;
}
#about .inbox .about-box-02 .about-list .about-item .txt {
  margin: 0;
  position: relative;
}
#about .inbox .about-box-02 .about-list .about-item .txt::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  position: absolute;
  background: var(--main-color);
  inset: -20px 0 auto 0;
  margin: 0 auto;
}
#about .inbox .about-box-02 .about-list .about-item.item-top {
  width: 100%;
}
#about .inbox .about-box-02 .about-list .about-item.item-top .about-li-ttl {
  order: 2;
}
#about .inbox .about-box-02 .about-list .about-item.item-top .txt::after {
  inset: auto 0 -20px 0;
}
#about .inbox .about-box-02 .txt-box {
  width: 50%;
}
#about .inbox .about-box-02 .txt-box .ttl02 {
  padding-bottom: 35px;
  margin-bottom: 40px;
}
#about .inbox .about-box-02 .txt-box .com-txt {
  margin: 0;
}

#about-method .inbox .com-txt {
  margin-bottom: 70px;
}
#about-method .inbox .mtd-list {
  gap: 30px;
}
#about-method .inbox .mtd-list .mtd-item {
  width: 340px;
  min-height: 350px;
  border: 1px solid var(--sub-color);
  padding: 42px 20px;
}
#about-method .inbox .mtd-list .mtd-item .ttl02 {
  margin-bottom: 25px;
}
#about-method .inbox .mtd-list .mtd-item .com-txt {
  margin: 0;
}

#about-comparison {
  padding: 120px 0;
}
#about-comparison .inbox .cmpa-tbl tbody tr {
  height: 108px;
}
#about-comparison .inbox .cmpa-tbl tbody tr th {
  text-align: center;
  width: 240px;
  padding: 15px 10px;
  line-height: 1.625;
  vertical-align: middle;
}
#about-comparison .inbox .cmpa-tbl tbody tr th:first-child {
  width: 115px;
  color: var(--main-color);
}
#about-comparison .inbox .cmpa-tbl tbody tr td {
  line-height: 1.625;
  text-align: center;
  vertical-align: middle;
  width: 240px;
  border-left: 1px solid var(--sub-color-02);
  padding: 15px 10px;
}
#about-comparison .inbox .cmpa-tbl tbody tr td:last-child {
  background: #fffceb;
}
#about-comparison .inbox .cmpa-tbl tbody tr:nth-child(even) {
  background: var(--bg-color);
}
#about-comparison .inbox .cmpa-tbl tbody tr:nth-child(even) td:last-child {
  background: var(--accent-color-02);
}
#about-comparison .inbox .cmpa-tbl tbody tr.tbl-hed {
  height: 60px;
}
#about-comparison .inbox .cmpa-tbl tbody tr.tbl-hed th {
  color: #fff;
  font-size: 2.2rem;
  padding: 12px 0;
  background: var(--sub-color);
}
#about-comparison .inbox .cmpa-tbl tbody tr.tbl-hed th:last-child {
  background: var(--main-color);
}
#about-comparison .inbox .cmpa-tbl tbody tr.tbl-hed th:not(:first-child) {
  border-left: 1px solid var(--sub-color-02);
}

/*-------------△△---about.html---△△----------*/
/*-------------▽▽---reason-symptom---▽▽----------*/
#reason-symptom {
  padding: 120px 0;
}
#reason-symptom .inbox .com-txt {
  margin-bottom: 60px;
}
#reason-symptom .inbox .com-bd {
  padding: 60px 10px;
}
#reason-symptom .inbox .com-bd .sptm-list {
  justify-content: center;
}
#reason-symptom .inbox .com-bd .sptm-list .sptm-item .sptm-img {
  text-align: center;
  margin-bottom: 20px;
}
#reason-symptom .inbox .com-bd .sptm-list .sptm-item .ttl02 {
  padding: 0;
  margin-bottom: 15px;
}
#reason-symptom .inbox .com-bd .sptm-list .sptm-item .ttl02::after {
  width: 1px;
  height: 20px;
  inset: -30px 0 auto 0;
  margin: 0 auto;
}
#reason-symptom .inbox .com-bd .sptm-list .sptm-item .com-txt {
  margin: 0;
}
#reason-symptom .inbox .com-bd .sptm-list-top {
  gap: 30px;
  margin-bottom: 40px;
}
#reason-symptom .inbox .com-bd .sptm-list-top .sptm-item {
  width: 290px;
}
#reason-symptom .inbox .com-bd .sptm-list-bottom {
  gap: 40px;
}
#reason-symptom .inbox .com-bd .sptm-list-bottom .sptm-item {
  width: 224px;
}

/*-------------△△---reason-symptom---△△----------*/
.com-li {
  gap: 60px 30px;
}
.com-li .com-li-item {
  width: 340px;
  min-height: 326px;
  padding: 45px 18px;
  border: 1px solid var(--sub-color);
  position: relative;
}
.com-li .com-li-item::before {
  counter-increment: num 1;
  content: counter(num, decimal-leading-zero);
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  font-weight: 300;
  display: grid;
  place-items: center;
  width: 60px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sub-color);
  position: absolute;
  inset: -30px 0 auto 0;
  margin: 0 auto;
}
.com-li .com-li-item .ttl02 {
  margin-bottom: 25px;
}
.com-li .com-li-item .com-txt {
  margin: 0;
}

/*-------------▽▽---reason---▽▽----------*/
#reason .inbox .ttl01 {
  margin-bottom: 80px;
}

/*-------------△△---reason---△△----------*/
/*-------------▽▽---horse---▽▽----------*/
#horse-worries {
  background: var(--bg-color);
  padding: 120px 0;
}
#horse-worries .inbox {
  align-items: center;
}
#horse-worries .inbox .ttl01 {
  width: 100%;
}
#horse-worries .inbox .worr-img {
  width: 520px;
}
#horse-worries .inbox .worr-list {
  width: 600px;
  padding: 40px 40px 40px 100px;
  border: 1px solid var(--sub-color);
  margin-left: -45px;
}
#horse-worries .inbox .worr-list .worr-item {
  background: url("../img/horse/check.png") left center/auto no-repeat;
  padding-left: 30px;
  box-sizing: border-box;
}
#horse-worries .inbox .worr-list .worr-item:not(:last-child) {
  margin-bottom: 12px;
}

#horse-communication {
  padding-bottom: 90px;
  background: #fff;
  z-index: 1;
}
#horse-communication::before {
  content: "";
  display: block;
  width: 30.2%;
  height: clamp(294px, 22.9vw, 440px);
  position: absolute;
  background: url("../img/horse/anicom-bg.png") center/contain no-repeat;
  max-width: 580px;
  left: calc(50% + clamp(240px, 19.7vw, 380px));
  bottom: -115px;
  z-index: -1;
}
#horse-communication .inbox {
  justify-content: space-between;
}
#horse-communication .inbox .ttl01 {
  width: 100%;
}
#horse-communication .inbox .ttl01 .en {
  font-size: 6rem;
}
#horse-communication .inbox .txt-box {
  width: 435px;
}
#horse-communication .inbox .anicom-img {
  width: 580px;
}

#horse-menu {
  padding: 50px 0 120px;
  background: url(../img/horse/ill-le.png) left top/17.5% no-repeat;
}
#horse-menu .inbox .menu-box {
  background: var(--bg-color);
  padding: 45px 100px;
}
#horse-menu .inbox .menu-box .menu-item {
  gap: 6px 0;
  padding: 12px 0;
}
#horse-menu .inbox .menu-box .menu-item:not(:last-child) {
  border-bottom: 1px solid var(--sub-color);
}
#horse-menu .inbox .menu-box .menu-item .menu-ttl {
  font-size: 2rem;
  width: 700px;
}
#horse-menu .inbox .menu-box .menu-item .price {
  font-size: 2rem;
  width: 150px;
  text-align: right;
}
#horse-menu .inbox .menu-box .menu-item .com-txt {
  width: 100%;
  padding-left: 20px;
  margin: 0;
}
#horse-menu .inbox .menu-box .com-txt {
  margin: 0;
}

#horse-merit::after {
  content: none;
}
#horse-merit .inbox .ttl01 {
  margin-bottom: 80px;
}
#horse-merit .inbox .ttl01 .en {
  font-size: 6rem;
}
#horse-merit .inbox .mrt-list .mrt-item {
  padding-top: 50px;
  padding: 45px 20px;
}
#horse-merit .inbox .mrt-list .mrt-item .mrt-img {
  /* width: 240px;
  height: 140px; */
  display: grid;
  place-items: center;
  background: #e5f0e4;
  margin: 0 auto 25px;
}
/*-------------△△---horse---△△----------*/
/*-------------▽▽---voice---▽▽----------*/
.voice-area {
  padding: 120px 0;
}
.voice-area .inbox .tag-name {
  font-size: 3rem;
  font-weight: 300;
  width: 480px;
  margin: 0 auto 30px;
  padding: 5px 0 6px;
  background: var(--sub-color);
}
.voice-area .inbox .voice-box {
  background: var(--bg-color);
  padding: 45px 100px;
}
.voice-area .inbox .voice-box article:not(:last-child) {
  border-bottom: 1px solid var(--sub-color);
}
.voice-area .inbox .voice-box article a {
  display: block;
  padding: 16px 0;
  position: relative;
}
.voice-area .inbox .voice-box article a::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  background-size: 14px;
  border-radius: 50%;
  border: 1px solid var(--sub-color);
  right: 0;
  top: 15px;
}
.voice-area .inbox .voice-box article a:hover {
  opacity: 1;
  transform: translate(15px);
}
.voice-area .inbox .voice-ttl {
  font-size: 2rem;
  margin-bottom: 10px;
  padding-right: 40px;
}
.voice-area .inbox .com-txt {
  text-align: justify;
  padding: 0 20px;
  margin: 0;
}

/*-------------detail詳細ページ----------*/
.voice-detail .inbox article {
  background: var(--bg-color);
  padding: 60px 100px;
}
.voice-detail .inbox article .voice-ttl {
  border-top: 1px solid var(--sub-color);
  border-bottom: 1px solid var(--sub-color);
  padding: 12px 0;
  margin-bottom: 25px;
}
.voice-detail .inbox article .list-txt {
  margin-bottom: 30px;
}
.voice-detail .inbox article .img-list {
  gap: 20px;
}
.voice-detail .inbox article .img-list .img {
  width: 430px;
}

/*-------------△△---voice---△△----------*/
/*-------------▽▽---question---▽▽----------*/
#question {
  padding: 120px 0;
}
#question .inbox article .ques-ttl {
  font-size: 3rem;
  font-weight: 300;
  background: var(--sub-color);
  width: 480px;
  padding: 5px 0 6px;
  margin: 50px auto 30px;
}
#question .inbox article .com-bd {
  padding: 50px 80px;
}
#question .inbox article .com-bd .ques-list .ques-item {
  padding: 12px 0;
}
#question .inbox article .com-bd .ques-list .ques-item:not(:last-child) {
  border-bottom: 1px solid var(--sub-color);
}
#question .inbox article .com-bd .ques-list .ques-item .ques-li-ttl {
  font-size: 2rem;
  margin-bottom: 10px;
}
#question .inbox article .com-bd .ques-list .ques-item .ques-li-ttl::before {
  content: "Q.";
  font-size: 1.4em;
}
#question .inbox article .com-bd .ques-list .ques-item .com-txt {
  margin: 0;
  padding: 0 20px;
}

/*-------------△△---question---△△----------*/
/*--------------------その他共通ページ --------------------*/
.com-other-page {
  padding: 100px 0;
}

.bg-leaf {
  background: url(../img/common/other-deco-ri.png) bottom right/10.36% no-repeat;
}

/*---------------------------▽▽---site.html---▽▽------------------------*/
#site-map .site-ttl {
  margin-bottom: 50px;
}
#site-map .site-list {
  padding: 70px 0 0;
}
#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 .ttl01 {
  text-align: center;
}
#notfound .inbox .txt-blc {
  padding: 70px 0 100px;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.5;
  color: var(--font-color);
}
#notfound .inbox .txt-blc a {
  text-decoration: underline;
  color: var(--font-color);
}

/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
#privacy .ttl01 {
  margin-bottom: 100px;
}
#privacy .privacy-box {
  margin-bottom: 50px;
}
#privacy .privacy-box .ttl02 {
  font-size: 2.5rem;
  text-align: left;
  padding: 10px 30px;
  margin-bottom: 20px;
  background: var(--main-color);
  color: #fff;
}

/*---------------------------△△---privacy.html---△△------------------------*/
/*---------------------------▽▽---news.html---▽▽------------------------*/
.select-area {
  display: flex;
  justify-content: end;
  margin-bottom: 40px;
}
.select-area .select-box {
  min-width: 200px;
  padding: 10px 0;
  padding-right: 20px;
  background: none;
  border: none;
  border-bottom: 2px solid #555;
  font-size: 1.3rem;
  font-weight: 400;
}
.select-area .select-box option {
  font-family: var(--serif-font);
  font-weight: 500;
  font-size: 1.3rem;
}

#news .news-ttl {
  margin-bottom: 50px;
}
#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: 80px;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 980px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list .tag {
  background: var(--sub-color);
  color: #fff;
  padding: 2px 8px;
}
#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: 80px;
}
#detail .detail-box .data-box .tag-list {
  width: 800px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#detail .detail-box .data-box .tag-list .tag a {
  display: inline-block;
  color: #fff;
  padding: 3px 8px;
  background: var(--sub-color);
}
#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;
  background: var(--sub-color-02);
  padding: 16px 10px;
}
#contact .table-wrapper .contact-form-table tr th .required-mark {
  color: var(--font-color);
  background: var(--accent-color-02);
  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 {
  font-family: var(--selif-font);
  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;
  font-family: var(--selif-font);
  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---△△------------------------*/