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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pc-none {
  display: none;
}

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

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

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

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

section {
  padding: 8rem 0;
}

.inbox-02 {
  width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.dl-item {
  display: flex;
}

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

.com-btn {
  display: grid;
  align-content: center;
  justify-items: center;
  height: 40px;
  width: 350px;
  background: #fff;
  border-radius: 50vw;
  border: 1px solid var(--bd-color);
  position: relative;
}
.com-btn::after {
  content: "";
  display: block;
  width: 0.9rem;
  height: 0.8rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 2rem 0 auto;
  margin: auto 0;
}
.com-btn.mail-btn {
  height: 70px;
}
.com-btn.mail-btn span {
  padding: 1rem 0;
}
.com-btn.mail-btn::after {
  content: none;
}
.com-btn.mail-btn .mail-icon {
  background: url("../img/common/mail-icon.png") left center/3rem no-repeat;
  padding-left: 4.5rem;
  box-sizing: border-box;
}
.com-btn.mail-btn .line-icon {
  background: url("../img/common/line-icon.svg") left center/30px no-repeat;
  padding-left: 45px;
  box-sizing: border-box;
}
.com-btn.mail-btn .rsv-icon {
  background: url("../img/common/rsv-icon.png") left center/2.5rem no-repeat;
  padding-left: 4rem;
  box-sizing: border-box;
}
.com-btn:hover {
  transform: scale(0.95);
}

.price-btn {
  margin-top: 2rem;
  margin-left: auto;
}

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

.ttl01 {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 4rem;
  gap: 1rem;
}
.ttl01 .en {
  text-transform: capitalize;
  font-size: 2.4rem;
  padding: 2rem 5rem 0;
  position: relative;
  background: url(../img/common/ttl-deco-le.png) left bottom no-repeat, url(../img/common/ttl-deco-ri.png) right bottom no-repeat;
}
.ttl01 .en span {
  background: var(--main-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  letter-spacing: 0.2em;
  text-shadow: 0px 0px 0.1rem rgba(255, 255, 255, 0.2);
}
.ttl01 .en::before {
  content: attr(data-text);
  position: absolute;
  inset: auto 0 0 0;
  margin: 0 auto;
  text-shadow: 1px 1px 10px rgb(255, 255, 255), 1px -1px 10px rgba(255, 255, 255, 0.5), -1px -1px 10px rgb(255, 255, 255), -1px 1px 10px rgb(255, 255, 255);
  color: #fff;
}
.ttl01 .ja {
  letter-spacing: 0.2em;
  font-size: 3.4rem;
  font-weight: 600;
  text-shadow: 1px 1px 10px rgb(255, 255, 255), 1px -1px 10px rgba(255, 255, 255, 0.5), -1px -1px 10px rgb(255, 255, 255), -1px 1px 10px rgb(255, 255, 255);
}
.ttl01.txt-le {
  justify-items: start;
  text-align: left;
}
.ttl01.txt-le .en {
  padding-left: 0;
  background: url(../img/common/ttl-deco-ri.png) right bottom no-repeat;
}
.ttl01.txt-le .en::before {
  inset: auto auto 0 0;
}

.ttl02 {
  font-weight: 600;
  font-size: 2.4rem;
}

.ttl03 {
  font-size: 1.8rem;
  font-weight: 600;
}

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

.ttl-deco {
  background: url("../img/common/ttl-deco-02.png") left top 0.5rem/1.8rem no-repeat;
  padding-left: 3rem;
  box-sizing: border-box;
}

.com-tel {
  display: grid;
  justify-items: end;
  font-size: 2.6rem;
}
.com-tel a {
  font-family: var(--en-font);
}
.com-tel a::before {
  content: "TEL";
  font-size: 1.4rem;
}

.box-stl-01 {
  padding: 4rem 10rem;
  background: var(--bg-color-02);
  box-shadow: var(--sdw-01);
}

.box-stl-02 {
  width: 785px;
  padding: 2.5rem 3rem;
  border: 1px solid var(--bd-color);
}

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

.bg-02 {
  background: url(../img/common/bg-02.jpg) top center/cover;
  box-shadow: var(--sdw-01-02);
  position: relative;
  z-index: 10;
}

.bg-03 {
  background: url(../img/common/bg-03.jpg) top center/cover;
  position: relative;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  line-height: 1;
  display: flex;
  font-size: 1.4rem;
  color: var(--accent-color);
}
.tag-list .tag::before {
  content: "#";
}

time {
  font-weight: 700;
  line-height: 1;
  font-family: var(--en-font);
  color: var(--accent-color);
  font-size: 1.4rem;
}

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid #b6b6b6;
}
.com-desc-tbl .dl-item dt {
  color: var(--main-color);
  text-align: center;
  width: 255px;
  padding: 15px 10px;
}
.com-desc-tbl .dl-item dd {
  width: 825px;
  padding: 15px 0;
}
.com-desc-tbl .dl-item dd .tel-txt {
  display: inline-flex;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  z-index: 1000;
  padding: 2rem 3rem 1rem;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right .hd-top {
  gap: 3.5rem;
  margin-bottom: 2rem;
}
#header .hd-right .mail-btn-box {
  gap: 2rem;
}
#header .hd-right .mail-btn-box .mail-btn {
  width: 240px;
}
#header .hd-right #nav .nav-list .nav-item {
  line-height: 1;
  position: relative;
}
#header .hd-right #nav .nav-list .nav-item:not(:last-child) {
  border-right: 2px solid var(--font-color);
}
#header .hd-right #nav .nav-list .nav-item:last-child a {
  padding-right: 0;
}
#header .hd-right #nav .nav-list .nav-item > a {
  padding: 0rem 2.5rem 0.5rem;
  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 {
  margin-top: 8rem;
  aspect-ratio: 2.28;
  background: url(../img/top/mv.jpg) center/cover;
  position: relative;
}
.top-mv .mv-ct {
  display: grid;
  align-content: center;
  justify-items: center;
  width: 38.5%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  margin-left: 12.5%;
}
.top-mv .mv-ct span {
  width: 86%;
}
.top-mv .mv-ct span img {
  width: 100%;
}

/*---------------------------△△---MV---△△------------------------*/
/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  position: relative;
}
#top-news .inbox .news-list {
  width: 100%;
  gap: 3rem;
}
#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 {
  width: 340px;
  padding: 2rem;
  gap: 1.5rem;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateY(-10px);
}
#top-news .inbox .news-list .news-item a .com-img {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
}
#top-news .inbox .news-list .news-item a .com-img::after {
  content: "";
  display: block;
  width: 93%;
  height: 93%;
  position: absolute;
  border: 1px solid var(--bd-color-02);
  box-shadow: var(--sdw-02);
  inset: 0;
  margin: auto;
}
#top-news .inbox .news-list .news-item a time {
  line-height: 1;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .com-btn {
  position: absolute;
  top: 5rem;
  right: 0;
  background: none;
  width: 180px;
}

/*------------△△---NEWS---△△---------*/
#top-trouble {
  background: url(../img/top/trbl-bg.png) top/cover;
  margin-top: -11rem;
  padding: 19rem 10rem;
}
#top-trouble .inbox {
  padding: 5rem 0rem 8rem;
  position: relative;
  z-index: 1;
}
#top-trouble .inbox::before {
  content: "";
  display: block;
  width: calc(50vw + 350px);
  height: 100%;
  position: absolute;
  background: #fff;
  box-shadow: var(--sdw-02);
  bottom: 0;
  left: 20rem;
  z-index: -1;
}
#top-trouble .inbox .trbl-box {
  gap: 0rem 3rem;
}
#top-trouble .inbox .trbl-box ul {
  gap: 1.5rem;
}
#top-trouble .inbox .trbl-box ul li {
  background: url("../img/common/check.png") left center/1.6rem no-repeat;
  padding-left: 2.5rem;
  box-sizing: border-box;
}

#top-about {
  background: url(../img/top/about-bg.jpg) top/cover;
  position: relative;
  z-index: -1;
}
#top-about .inbox-02 .com-txt {
  line-height: 2.5;
}
#top-about .prf-box {
  padding: 4rem;
  gap: 2rem 0;
  margin-top: 5rem;
  margin-bottom: -10rem;
}
#top-about .prf-box::before {
  content: "";
  display: block;
  width: 100vw;
  height: 25rem;
  position: absolute;
  background: #fff;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#top-about .prf-box .com-img {
  width: 220px;
  aspect-ratio: 0.75;
}
#top-about .prf-box .txt-box {
  width: 750px;
  gap: 1.5rem;
}
#top-about .prf-box .txt-box .name-box .ttl03 {
  width: 250px;
  font-size: 2.2rem;
}
#top-about .prf-box .txt-box .name-box .age {
  width: 480px;
}
#top-about .prf-box .txt-box .box-stl-02 {
  width: 100%;
}
#top-about .prf-box .txt-box .box-stl-02 .txt-cap {
  width: 70px;
}
#top-about .prf-box .txt-box .box-stl-02 .com-txt {
  width: 600px;
}

#top-service ul {
  gap: 2.5%;
}
#top-service ul li {
  width: 20.8%;
}
#top-service ul li:nth-child(even) {
  transform: translateY(5rem);
}
#top-service ul li:nth-child(even) .ttl01 {
  background: rgba(255, 255, 255, 0.5);
}
#top-service ul li a {
  width: 100%;
  position: relative;
  z-index: 1;
}
#top-service ul li a::after {
  content: "";
  display: block;
  width: 5rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/top/srv-arw.png") center/contain no-repeat;
  bottom: 1rem;
  right: 1rem;
}
#top-service ul li a .ttl01 {
  width: 88%;
  background: rgba(255, 255, 255, 0.3);
  padding: 3rem 0;
  margin: 0;
}
#top-service ul li a .ttl01 .en {
  font-size: clamp(1rem, 1.35vw, 2.6rem);
  padding: 0;
  background: none;
}
#top-service ul li a .ttl01 .en span {
  background: #cc880c;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#top-service ul li a .ttl01 .ja {
  font-size: clamp(1rem, 0.9375vw, 1.8rem);
}
#top-service ul li a .com-img {
  width: 100%;
  aspect-ratio: 1;
  inset: 0;
  position: absolute;
  z-index: -1;
}
#top-service ul li a .com-img::after {
  content: "";
  display: block;
  width: 93%;
  height: 93%;
  position: absolute;
  border: 1px solid var(--bd-color-02);
  box-shadow: var(--sdw-03);
  inset: 0;
  margin: auto;
}

#common-calendar {
  margin: 8rem auto;
  padding: 5rem 0;
  width: 83.33%;
  background: url(../img/common/clnd-bg.jpg) center/cover;
}
#common-calendar .inbox {
  padding: 0rem 9rem;
}
#common-calendar .clnd-box {
  height: 675px;
}
#common-calendar .clnd-box iframe {
  width: 100%;
}
#common-calendar .com-btn {
  margin: 3rem auto 0;
}

#common-contact {
  background: url(../img/common/contact-bg.jpg) bottom 10rem center/100% no-repeat;
  background-attachment: fixed;
}
#common-contact .inbox {
  padding: 0rem 8rem;
}
#common-contact .inbox .top-box {
  padding: 4rem 5rem;
  margin-bottom: 3rem;
}
#common-contact .inbox .top-box .ttl01 {
  margin: 0;
}
#common-contact .inbox .top-box .line-btn-box {
  gap: 1rem;
}
#common-contact .inbox .btm-box {
  gap: 2.5rem;
}
#common-contact .inbox .btm-box .com-tel {
  font-size: 3.6rem;
}
#common-contact .inbox .btm-box .mail-btn {
  width: 250px;
}
#common-contact .inbox .btm-box .rsv-btn {
  width: 280px;
}

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

#footer {
  padding: 100px 0;
  position: relative;
}
#footer .ft-area .ft-le {
  width: 50%;
  display: grid;
  justify-items: start;
  gap: 5rem;
}
#footer .ft-area .ft-le .ft-info {
  display: grid;
  gap: 1.5rem;
}
#footer .ft-area .ft-le .ft-info .dl-item {
  gap: 0.5rem;
  line-height: 1;
}
#footer .ft-area .ft-le .ft-info dt {
  border-right: 2px solid var(--font-color);
  width: 8rem;
}
#footer .ft-area .ft-le .ft-info dd {
  width: 420px;
}
#footer .ft-area .ft-ri {
  width: 50%;
  align-content: space-between;
}
#footer .ft-area .ft-ri .ft-nav {
  gap: 3rem;
}
#footer .ft-area .ft-ri .nav-list {
  display: flex;
  justify-content: end;
  gap: 10px;
}
#footer .ft-area .ft-ri .nav-list .nav-item {
  line-height: 1;
}
#footer .ft-area .ft-ri .nav-list .nav-item a {
  padding: 0 2.5rem;
}
#footer .ft-area .ft-ri .nav-list .nav-item:not(:last-child) {
  border-right: 2px solid var(--font-color);
}
#footer .ft-area .ft-ri .nav-list .nav-item:last-child a {
  padding-right: 0;
}
#footer .copyright {
  font-size: 1.2rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#service_01-about {
  background: url(../img/srv_01/about-bg.jpg) bottom/cover;
}

#service_01-flow {
  background: url(../img/srv_01/flow-bg.png) right/auto 100% no-repeat, url(../img/common/bg-02.jpg) bottom/cover;
}

.about-area {
  padding: 10rem 0;
}
.about-area .inbox {
  position: relative;
}
.about-area .txt-box {
  padding: 4rem 0;
  width: 480px;
  position: relative;
}
.about-area .txt-box::before {
  content: "";
  display: block;
  width: 1180px;
  height: 100%;
  position: absolute;
  background: var(--bg-color-02);
  box-shadow: var(--sdw-01);
  left: -10rem;
  bottom: 0;
}
.about-area .img-box {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

.flow-area .inbox {
  padding: 5rem 4rem;
}
.flow-area ol {
  display: grid;
  gap: 4rem;
}
.flow-area ol li {
  position: relative;
}
.flow-area ol li:not(:last-child) {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--bd-color);
}
.flow-area ol li:not(:last-child)::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: auto;
  aspect-ratio: 2.7;
  position: absolute;
  background-color: var(--bd-color);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  margin: 0 auto;
  inset: auto 0 -1.2rem 0;
  margin: 0 auto;
}
.flow-area ol li h4 {
  width: 250px;
  gap: 0.5rem;
}
.flow-area ol li .com-txt {
  width: 725px;
}

.merit-area ul {
  padding-top: 10rem;
  margin-top: -12rem;
  gap: 3rem;
}
.merit-area ul li .txt-box {
  width: 640px;
}
.merit-area ul li .txt-box .ttl02 {
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.review-area ul {
  gap: 3rem;
}
.review-area ul li .ttl03 {
  margin-bottom: 0.5rem;
}

#other .other-list {
  gap: 3rem;
}
#other .other-list li {
  padding: 3rem;
  gap: 2.5rem 0;
}
#other .other-list li .ttl02 {
  width: 100%;
  padding-bottom: 1rem;
}
#other .other-list li .com-img {
  width: 400px;
  aspect-ratio: 1.333;
}
#other .other-list li:has(.com-img) .com-txt {
  width: 590px;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  background-size: cover;
  background-position: center;
  display: grid;
  align-content: center;
  justify-items: center;
  margin-top: 6rem;
  height: 455px;
  position: relative;
}
.sv .sv-catch {
  font-size: 4rem;
  position: relative;
  width: 900px;
  height: 12rem;
  display: grid;
  align-content: center;
  background: rgba(255, 255, 255, 0.8);
}
.sv .sv-catch span {
  background: var(--main-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  letter-spacing: 0.25em;
  text-shadow: 0px 0px 0.1rem rgba(255, 255, 255, 0.2);
}
.sv .sv-catch::before {
  content: attr(data-text);
  letter-spacing: 0.25em;
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  margin: auto;
  text-shadow: 1px 1px 10px rgb(255, 255, 255), 1px -1px 10px rgba(255, 255, 255, 0.5), -1px -1px 10px rgb(255, 255, 255), -1px 1px 10px rgb(255, 255, 255);
  color: #000;
}

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

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

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

.other-sv {
  background-image: url(../img/sv/other.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;
  background: #fff;
  z-index: 10;
  padding: 2rem 0;
}
.breadcrumbs-area .breadcrumbs {
  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 var(--bd-color);
  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---△△------------------------*/