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

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

section {
  padding: 13rem 0;
}

#top-page section {
  padding: 10rem 0;
}

.dl-item {
  display: flex;
}

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

.com-btn {
  width: 320px;
  height: 60px;
  margin: 5rem auto 0;
  border-radius: 50vw;
  box-shadow: 0 6px 5px rgba(131, 188, 183, 0.15);
  background: #fff;
  border: 1px solid var(--bd-color);
  display: grid;
  place-items: center;
}
.com-btn span {
  padding: 0.5rem 0;
  transition: 0.3s;
}
.com-btn:hover {
  opacity: 1;
  transform: scale(0.93);
}
.mail-btn {
  background: var(--main-color);
  border-color: #fff;
  color: var(--white);
}
.mail-btn:link, .mail-btn:visited {
  color: var(--white);
}
.mail-btn span {
  background: url("../img/common/mail-icon.png") left center/3rem no-repeat;
  padding-left: 4rem;
  box-sizing: border-box;
}

.line-btn {
  background: var(--bg-color);
}
.line-btn span {
  background: url("../img/common/line-icon.svg") left center/30px no-repeat;
  padding-left: 45px;
  box-sizing: border-box;
}

.com-arw {
  position: relative;
}
.com-arw::after {
  transition: 0.3s;
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  background: url("../img/common/arw.png") center/contain no-repeat;
  inset: 0 0 0 auto;
  margin: auto 0;
}
.com-arw:hover::after {
  transform: translateX(1rem);
}

.arw-content {
  border-bottom: 1px solid var(--bd-color);
}
.arw-content a {
  padding: 3rem;
}
.arw-content:first-child {
  border-top: 1px solid var(--bd-color);
}

.com-pd-box {
  width: 100%;
  padding: 4rem 4rem;
  position: relative;
  border-radius: 0.8rem;
  background: #fff;
}
.com-pd-box::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid var(--main-color);
  border-radius: 0.8rem;
  opacity: 0.5;
  top: -2rem;
  left: -2rem;
  z-index: -1;
}
.com-pd-box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid var(--main-color);
  border-radius: 0.8rem;
  bottom: -2rem;
  right: -2rem;
  z-index: -1;
}

.txt-box-01 {
  width: 655px;
}

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

.ttl-box > .ttl01 {
  width: auto;
}

.ttl01 {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 6rem;
  gap: 1.5rem;
}
.ttl01 .ja {
  font-size: 3.2rem;
  font-weight: 500;
}
.ttl01 .en {
  color: var(--accent-color);
  padding-right: 5rem;
  position: relative;
  line-height: 1;
}
.ttl01 .en::after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  position: absolute;
  background: var(--accent-color);
  inset: 0 0 0 auto;
  margin: auto 0;
}
.ttl01.txt-le {
  text-align: left;
  justify-items: start;
}

.com-other-page .ttl01 .en {
  text-transform: capitalize;
}

.ttl02 {
  font-size: 2.8rem;
  font-weight: 500;
}

.ttl-deco {
  padding-bottom: 2rem;
  margin-bottom: 4rem;
  position: relative;
}
.ttl-deco::after {
  content: "";
  display: block;
  width: 5rem;
  height: 1px;
  position: absolute;
  background: var(--accent-color);
  margin: auto 0;
  bottom: 0;
  left: 0;
}
.ttl-deco.txt-cnt::after {
  right: 0;
  margin: 0 auto;
}

.ttl03 {
  font-size: 2rem;
}

.ttl04 {
  font-size: 1.8rem;
}

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

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

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

.com-sdw {
  box-shadow: 0 6px 5px rgba(131, 188, 183, 0.15);
}

.cat-dl {
  gap: 2rem;
}
.cat-dl .dl-item {
  align-items: start;
  gap: 3rem;
}
.cat-dl dt {
  color: var(--accent-color);
  position: relative;
}
.cat-dl dt::after {
  content: "|";
  position: absolute;
  right: 0;
  top: 0;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag-list .tag {
  color: var(--main-color);
  line-height: 1;
  padding: 0.5rem 0;
  font-size: 1.2rem;
}
.tag-list .tag::before {
  content: "#";
}

time {
  color: var(--accent-color);
  line-height: 1;
  padding: 0.5rem 0;
  font-family: var(--en-font);
}
time .big {
  font-size: 2.4rem;
}

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid #b6b6b6;
}
.com-desc-tbl .dl-item dt {
  width: 160px;
}
.com-desc-tbl .dl-item dd {
  width: 580px;
}
.com-desc-tbl .dl-item dd .tel-txt {
  display: inline-flex;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  position: absolute;
  padding: 1.5rem 3rem;
  background: linear-gradient(rgba(0, 0, 0, 0.3) 80%, transparent);
}
#header .hd-logo img {
  display: block;
}
#header .hd-right {
  gap: 2rem;
}
#header .hd-right #nav {
  margin-top: 1.5rem;
}
#header .hd-right #nav .nav-list .nav-item {
  position: relative;
}
#header .hd-right #nav .nav-list .nav-item:not(:last-child)::after {
  content: "/";
}
#header .hd-right #nav .nav-list .nav-item > a {
  padding: 0 2rem 0.5rem;
  opacity: 1;
  position: relative;
}
#header .hd-right #nav .nav-list .nav-item > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  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 img {
  width: 100%;
}
.top-mv video {
  width: 100%;
}
.top-mv .mv-ct {
  width: 35.1%;
  left: 1.8%;
  bottom: 20%;
}
.top-mv::after {
  content: "";
  display: block;
  width: 100%;
  height: 18.52%;
  position: absolute;
  background: linear-gradient(transparent, var(--bg-color));
  bottom: 0;
  left: 0;
}

/*---------------------------△△---MV---△△------------------------*/
#top-greeting::before {
  content: "";
  display: block;
  width: 100%;
  height: 35rem;
  position: absolute;
  background: #fff;
  bottom: 0;
  left: 0;
}
#top-greeting .inbox {
  position: relative;
  z-index: 10;
}
#top-greeting .top-box {
  padding: 0 8rem;
  margin-bottom: 15rem;
}
#top-greeting .top-box .ttl01 {
  width: auto;
}
#top-greeting .top-box .txt-box {
  width: 530px;
}
#top-greeting .peace-li li {
  width: 240px;
  gap: 1rem;
}
#top-greeting .peace-li .num {
  width: 5rem;
  height: 8rem;
  background: url(../img/top/peace-ill.png) center/contain;
  display: grid;
  justify-items: center;
  align-content: end;
  padding-bottom: 1rem;
  font-size: 2.2rem;
}

#top-about .inbox {
  padding-top: 3rem;
}
#top-about .img-box {
  position: absolute;
}
#top-about .img-01 {
  top: 0;
  left: -10rem;
}
#top-about .img-01::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid var(--main-color);
  border-radius: 0.8rem;
  top: -2rem;
  left: -2rem;
  z-index: -1;
}
#top-about .img-02 {
  top: 0;
  right: -10rem;
}
#top-about .img-03 {
  bottom: 0;
  left: 3.5rem;
}
#top-about .img-04 {
  bottom: 0;
  right: 3.5rem;
}
#top-about .img-04::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid var(--main-color);
  border-radius: 0.8rem;
  bottom: -2rem;
  right: -2rem;
  z-index: -1;
}

#top-kitten .kitten-list {
  gap: 3rem;
}
#top-kitten .kitten-list li {
  width: 340px;
}
#top-kitten .kitten-list li .com-img {
  width: 100%;
}
#top-kitten .kitten-list li .cat-dl {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
}
#top-kitten .kitten-list li .cat-dl .dl-item {
  gap: 2rem;
}
#top-kitten .kitten-list li .cat-dl .dl-item dt {
  width: 5rem;
}

#top-other ul {
  width: 580px;
}
#top-other ul li a {
  margin: 0;
}
#top-other .img-box {
  margin-right: -10rem;
}

#common-contact {
  padding: 0 !important;
}
#common-contact .inbox {
  padding: 10rem 0;
}
#common-contact .ttl01 {
  margin-bottom: 3rem;
}
#common-contact .img-box {
  width: 50%;
  height: 100%;
  position: absolute;
}
#common-contact .img-box::after {
  content: "";
  display: block;
  width: 3rem;
  height: 100%;
  position: absolute;
  background: linear-gradient(to right, transparent, var(--bg-color));
  right: 0;
  top: 0;
}
#common-contact .txt-box {
  width: 50%;
  margin-left: auto;
}
#common-contact .txt-box .btn-box {
  display: grid;
  justify-items: center;
  gap: 2rem;
  margin-top: 3rem;
}
#common-contact .txt-box .btn-box .com-btn {
  margin-top: 0;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  min-height: 200px;
}
#top-news .inbox .ttl01 {
  margin: 0;
  padding: 0;
  display: grid;
  align-items: center;
  width: auto;
}
#top-news .inbox .news-list {
  width: 870px;
}
#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 {
  display: flex;
  padding: 2.5rem 3rem;
}
#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: 700px;
  gap: 2rem 0;
}
#top-news .inbox > .com-arw {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem 0;
  padding-right: 3rem;
  border-bottom: 1px solid var(--accent-color);
}

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

#footer {
  padding: 100px 0;
  position: relative;
}
#footer .ft-area {
  gap: 8rem 0;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: start;
  width: 50%;
  gap: 5rem;
}
#footer .ft-area .ft-le .ft-info-box {
  gap: 3rem;
}
#footer .ft-area .ft-le .ft-info-box .ft-info {
  display: grid;
  gap: 5px;
}
#footer .ft-area .ft-ri {
  width: 50%;
  display: grid;
  justify-items: end;
}
#footer .ft-area .ft-ri .nav-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 3rem 6rem;
  max-height: 12rem;
}
#footer .ft-area .ft-ri .nav-list .nav-item {
  line-height: 1;
}
#footer .ft-area .ft-ri .nav-list:first-child {
  padding: 0 3rem;
}
#footer .ft-area .ft-ri .small-nav {
  font-size: 1.2rem;
  gap: 2rem;
  margin-top: -1rem;
}
#footer .copyright {
  width: 100%;
  font-size: 1.2rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#care-about .com-pd-box {
  padding: 7rem 4rem;
}

.point-li {
  gap: 8rem;
}
.point-li .point-item .ttl02 {
  width: 376px;
  padding: 1rem 2.5rem;
}
.point-li .point-item .txt-box-01 {
  gap: 3.5rem;
}
.point-li .point-item .com-txt {
  margin: 0;
}
.point-li .point-item ul {
  display: grid;
  gap: 1rem;
}
.point-li .point-item .child-li-01 li::before {
  content: "〇";
}
.point-li .point-item .child-li-02 li {
  display: inline-block;
  background: url("../img/common/check.png") left top 0.5rem/1.6rem no-repeat;
  padding-left: 2.5rem;
  box-sizing: border-box;
}

.bnr-area {
  padding: 0 0 5rem;
}

.bnr-btn {
  width: 900px;
  margin: 0 auto;
  border: 0.3rem solid var(--bg-color);
  padding: 3rem;
}
.bnr-btn::after {
  right: 4rem;
}
.bnr-btn .ttl01 {
  margin: 0;
  width: 530px;
}
.bnr-btn .ttl01 .ja {
  font-size: 2.8rem;
}

#kitten-about .com-btn {
  margin-top: 2rem;
  margin-left: 0;
}

.kitten-area {
  display: grid;
  gap: 22rem;
}
.kitten-area .kitten-li {
  display: grid;
  gap: 8rem;
}
.kitten-area .kitten-li .kitten-item {
  display: grid;
  gap: 3rem;
}
.kitten-area .kitten-li .kitten-item .img-area .img-01 {
  width: 540px;
}
.kitten-area .kitten-li .kitten-item .img-area .img-li {
  width: 520px;
  gap: 4rem 2rem;
}
.kitten-area .kitten-li .kitten-item .img-area .img-li li {
  width: 250px;
}
.kitten-area .kitten-li .kitten-item .cat-dl dt {
  min-width: 15rem;
}
.kitten-area .kitten-li .kitten-item .cat-dl dd {
  min-width: 25rem;
}

.parent-area .inbox .ttl-box {
  margin-bottom: 8rem;
}
.parent-area .inbox .ttl-box .ttl01 {
  margin: 0;
}
.parent-area .inbox .ttl-box .txt-box {
  width: 585px;
}
.parent-area .parent-li .parent-item {
  padding: 5rem;
}
.parent-area .parent-li .parent-item .img-01 {
  width: 480px;
}
.parent-area .parent-li .parent-item .img-li {
  width: 520px;
  gap: 0 2.5rem;
}
.parent-area .parent-li .parent-item .img-li li {
  width: 225px;
}
.parent-area .parent-li .parent-item .txt-box {
  width: 460px;
  gap: 3rem;
}
.parent-area .parent-li .parent-item .txt-box .cat-dl dt {
  min-width: 12rem;
}
.parent-area .parent-li .parent-item .txt-box .cat-dl dd {
  min-width: 25rem;
}

#company-greeting .com-pd-box .txt-box {
  width: 630px;
}

#company-info .com-desc-tbl {
  width: 760px;
}
#company-info .map {
  height: 40rem;
  margin-top: 10rem;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  height: 50rem;
  position: relative;
  background-size: cover;
  background-position: center;
}
.sv::after {
  content: "";
  display: block;
  width: 100%;
  height: 20rem;
  position: absolute;
  background: linear-gradient(transparent, var(--bg-color));
  bottom: 0;
  left: 0;
}
.sv .sv-catch {
  width: 50%;
  display: grid;
  justify-items: start;
  padding: 4rem;
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  gap: 2rem;
}
.sv .sv-catch .ja {
  font-size: 3.6rem;
  line-height: 1;
}
.sv .sv-catch .en {
  font-size: 1.8rem;
  padding-right: 23rem;
  position: relative;
  line-height: 1;
}
.sv .sv-catch .en::after {
  content: "";
  display: block;
  width: 21rem;
  height: 1px;
  position: absolute;
  background: var(--accent-color);
  inset: 0 0 0 auto;
  margin: auto 0;
}
.sv .sv-catch.txt-le {
  text-align: left;
  justify-items: start;
}

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

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

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

.company-sv {
  background-image: url(../img/sv/company.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---△△---------*/
/*--------------------その他共通ページ --------------------*/
/*---------------------------▽▽---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---△△------------------------*/