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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pc-none {
  display: none;
}

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

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

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

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

html {
  scroll-padding-top: 20rem;
}

section {
  padding: 100px 0;
}

.dl-item {
  display: flex;
}

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

.com-btn {
  display: inline-grid;
  position: relative;
  place-items: center;
  border: 0.3rem solid #000;
  box-shadow: 0 0.5rem 0 var(--font-color);
  background: #fff;
  padding: 2rem 5rem;
  font-family: var(--ttl-font);
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 100;
  letter-spacing: 0;
}
.com-btn span {
  position: relative;
  padding-right: 3.5rem;
  letter-spacing: 0;
}
.com-btn span::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 0 0 auto;
  margin: auto 0;
}
.com-btn:not(:has(> span)) {
  display: grid;
}
.com-btn:not(:has(> span))::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 3rem 0 auto;
  margin: auto 0;
}
.com-btn:hover {
  box-shadow: none;
  transform: translateY(0.5rem) scale(0.95);
  opacity: 1;
}

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

.ttl01 {
  line-height: 1;
  font-family: var(--ttl-font);
  font-size: 4.8rem;
  margin-bottom: 4rem;
  text-align: center;
  letter-spacing: 0;
  font-weight: 400;
}
.ttl01.ft-wt {
  font-size: 4rem;
}
.ttl01 span {
  letter-spacing: 0;
}

.ttl02 {
  font-size: 2.2rem;
  font-family: var(--serif-font);
  font-weight: 700;
}
.ttl02 .big {
  font-size: 2.8rem;
}
.ttl03 {
  font-size: 2rem;
}

.ttl04 {
  font-size: 1.8rem;
}

.ttl-bd {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 0.3rem solid #000;
}
.ttl-bd.ft-wt {
  border-bottom: 0.3rem solid #fff;
}

.num {
  font-size: 2.8rem;
  font-family: var(--serif-font);
  display: grid;
  width: 4rem;
  height: 4rem;
  justify-items: center;
  align-content: center;
  line-height: 1;
  aspect-ratio: 1;
  background: var(--accent-color);
  border: 0.3rem solid #000;
}

.txt-sdw {
  text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
}

.tate {
  writing-mode: vertical-rl;
}

.tate-box {
  border: 0.3rem solid var(--bd-color);
  box-shadow: 0 0.5rem 0 var(--font-color);
  display: grid;
  justify-items: center;
  align-content: center;
  background: #fff;
  position: relative;
}
.tate-box::before {
  content: "";
  display: block;
  width: 1rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: var(--accent-color);
  inset: -0.7rem 0 auto 0;
  margin: 0 auto;
  border-radius: 50vw;
}

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

.com-txt-box {
  width: 480px;
}

.com-tel {
  display: grid;
  justify-items: start;
  position: relative;
  font-family: var(--ttl-font);
  line-height: 1;
  gap: 0.5rem;
}
.com-tel::before {
  content: "TEL";
  color: var(--accent-color);
  font-size: 1.3rem;
}
.com-tel a {
  font-size: 2.8rem;
}
.com-tel img {
  position: absolute;
  top: 0;
  right: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  font-size: 1.3rem;
  line-height: 1;
  padding: 0.5rem 1rem;
  display: inline-flex;
}
.tag-list .tag::before {
  content: "#";
}

time {
  font-size: 1.3rem;
  line-height: 1;
  padding: 0.5rem 0;
  font-family: var(--ttl-font);
  color: var(--main-color);
}

.com-list-stl {
  gap: 5rem;
}
.com-list-stl li {
  gap: 3rem 0;
}
.com-list-stl li .com-img {
  width: 560px;
  aspect-ratio: 1.6;
}
.com-list-stl li .com-pd-box {
  width: 100%;
}

.tebako-box a {
  background: none;
}
.tebako-box a p {
  position: relative;
  z-index: 50;
}
.tebako-box a .tate {
  position: absolute;
  top: -1.6rem;
  right: -2rem;
  height: 20rem;
}
.tebako-box a img {
  transition: 0.3s;
}
.tebako-box a:hover {
  opacity: 1;
}
.tebako-box a:hover img {
  transform: rotateY(360deg) scale(0.9);
}
.tebako-box p {
  letter-spacing: 0;
}
.tebako-box p span {
  letter-spacing: 0;
}
.tebako-box .mdl-box {
  display: none;
}

.tebako-fune {
  position: relative;
  display: inline-block;
  margin-left: -10rem;
}
.tebako-fune .inline {
  position: absolute;
  bottom: 5rem;
  right: 22rem;
}
.inline-content {
  min-height: 18rem;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1rem;
}
.inline-content h3 {
  font-size: 4.8rem !important;
}
/*infotableスタイル*/
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  width: 800px;
  padding: 2rem 0;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 0.3rem solid #fff;
}
.com-desc-tbl .dl-item dt {
  width: 100px;
}
.com-desc-tbl .dl-item dd {
  width: 680px;
}
.com-desc-tbl .dl-item dd .tel-txt {
  display: inline-flex;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1000;
  padding: 4.5rem;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right {
  gap: 1rem;
}
#header .hd-right .tel-box {
  display: grid;
  align-content: center;
  padding: 1rem 2.5rem;
}

.contact-btn-box {
  gap: 1rem;
}
.contact-btn-box a {
  width: 7.5rem;
  height: 7.5rem;
}

/*---------------------------△△---heder---△△------------------------*/
#nav {
  padding: 4rem 0;
  background: var(--bg-pt-03);
}

.nav-list {
  gap: 5.5rem;
  position: relative;
  z-index: 10;
}
.nav-list .nav-item {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--serif-font);
}
.nav-list .nav-item a {
  width: 6rem;
  height: 14rem;
  writing-mode: vertical-rl;
  letter-spacing: 0;
  transition: 0.05s !important;
}
.nav-list .nav-item a:hover {
  opacity: 1;
  transform: rotate(10deg) scale(1.1);
}

/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  aspect-ratio: 2.078;
  padding: 10rem 0 2rem;
  position: relative;
  z-index: 1;
  background: url(../img/top/mv-le.png) left bottom/22.7% no-repeat, url(../img/top/mv-ri.png) right bottom/52.6% 100% no-repeat, url(../img/top/mv-bg-top.png) top/100% no-repeat, url(../img/top/mv-bg.jpg) bottom/100% no-repeat;
}
.top-mv .mv-ct {
  width: 30%;
  margin-left: 20%;
}
.top-mv .mv-ct img {
  width: 100%;
}
.top-mv::after {
  content: "";
  display: block;
  width: 96.9%;
  height: 93.5%;
  position: absolute;
  border: 0.5rem solid #000;
  outline: 0.3rem solid #fff;
  outline-offset: -1rem;
  inset: 0;
  margin: auto;
}

/*---------------------------△△---MV---△△------------------------*/
#top-menu {
  position: relative;
  z-index: 1;
  background: var(--bg-pt-03);
  padding: 4rem 0;
}
#top-menu .inbox {
  min-height: 695px;
  padding: 0 220px;
  padding-top: 22rem;
  background: url(../img/top/menu-bg.png) bottom no-repeat;
}
#top-menu .inbox .txt-box {
  margin-left: auto;
  display: grid;
  justify-items: start;
  justify-content: end;
}
#top-menu .inbox .txt-box .ttl01 {
  display: flex;
  gap: 1rem;
}
#top-menu .inbox .txt-box .ttl01 .tate {
  width: 4rem;
}
#top-menu .inbox .txt-box .com-btn {
  font-size: 2.4rem;
}
#top-menu .ill-box {
  position: absolute;
  bottom: 0;
}
#top-menu .ill-box img {
  width: 100%;
}
#top-menu .deco-le {
  left: 0;
  width: 31%;
  z-index: -1;
}
#top-menu .deco-ri {
  right: 0;
  width: 39%;
  z-index: -1;
}
#top-menu .deco-btm {
  width: 100%;
}

#top-about {
  padding: 0;
  position: relative;
  background: url(../img/common/bg-02-le.png) left repeat-y, var(--bg-pt-01);
  z-index: 1;
}
#top-about .inbox {
  position: relative;
  padding-top: 4rem;
}
#top-about .inbox .txt-box {
  width: 560px;
}
#top-about .inbox .txt-box .com-btn {
  margin-top: 4rem;
}
#top-about .inbox .img-box .txt-img {
  top: 4.5rem;
  right: 15rem;
}
#top-about .inbox .tebako-box {
  position: absolute;
  bottom: 2rem;
  right: 29rem;
}
#top-about .com-img {
  position: absolute;
  width: calc(50% + 190px);
  height: 100%;
  right: 0;
  top: 0;
  z-index: -1;
}

#top-movie {
  padding: 0;
  background: url(../img/top/mov-bg-ri.png) top right/41% no-repeat, url(../img/top/mov-bg.jpg) center/cover;
}
#top-movie .inbox {
  padding: 14rem 0 1rem;
  background: url(../img/top/mov-deco-le.png) left 4.5rem top 6rem no-repeat, url(../img/top/mov-deco-ri.png) right 8rem top 10rem no-repeat;
}
#top-movie ul {
  gap: 3rem;
}
#top-movie ul .mov-box {
  width: 340px;
  aspect-ratio: 0.566;
}
#top-movie ul .mov-box video {
  width: 100%;
}
#top-other {
  padding: 0;
  background: var(--bg-pt-03);
}
#top-other ul li {
  width: 33.33%;
  z-index: 1;
  max-height: 90rem;
  min-height: 66rem;
  aspect-ratio: 0.711;
  overflow: hidden;
}
#top-other ul li a {
  width: 100%;
  height: 100%;
}
#top-other ul li a::after {
  content: "";
  display: block;
  width: 92.9%;
  height: 93.5%;
  position: absolute;
  border: 0.5rem solid #000;
  outline: 0.3rem solid #fff;
  outline-offset: -1rem;
  inset: 0;
  margin: auto;
  z-index: -1;
}
#top-other ul li a .ttl01 {
  width: 8.5rem;
  height: 28rem;
  font-size: 4rem;
  margin-top: 5rem;
  margin-left: 4.5rem;
}
#top-other ul li a .com-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.1s;
}
#top-other ul li a .ill-box {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  transition: 0.2s;
}
#top-other ul li a:hover {
  opacity: 0.8;
}
#top-other ul li a:hover .ill-box {
  transform: rotate(10deg);
}
#top-other ul li a:hover .com-img {
  transform: scale(1.15);
}
#top-other ul .other-01 .ill-box {
  width: 28.6%;
}
#top-other ul .other-02 .ill-box {
  width: 45%;
}
#top-other ul .other-03 .ill-box {
  width: 31%;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news {
  background: url(../img/top/news-ri.png) right top/32.8% no-repeat, url(../img/top/news-bg.png) bottom right/100% no-repeat, var(--bg-pt-02);
}
#top-news .inbox {
  position: relative;
  min-height: 360px;
  z-index: 1;
}
#top-news .inbox .ttl01 {
  margin: 0;
  padding: 0;
  display: grid;
  align-items: center;
  width: auto;
}
#top-news .inbox .news-list {
  width: 825px;
  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 {
  padding: 2rem 3rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  gap: 1rem;
}
#top-news .inbox .news-list .news-item a::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 3rem 0 auto;
  margin: auto 0;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox .news-list .news-item a time {
  line-height: 1;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .com-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}
#top-news .inbox .tebako-box {
  position: absolute;
  left: -3.5rem;
  bottom: 6rem;
  z-index: -1;
}
#top-news .inbox .tebako-box .inline p {
  position: absolute;
  inset: 0 0 auto 0;
  margin: 0 auto;
}

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

#footer {
  padding: 10rem 0 3rem;
  position: relative;
  background: url(../img/common/ft-bg.png) top 32rem right/65% no-repeat, url(../img/common/ft-bg-top.png) top no-repeat, var(--bg-pt-03);
}
#footer .ft-area {
  margin-bottom: 5rem;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: start;
  gap: 3rem;
}
#footer .ft-area .ft-le .contact-btn-box {
  gap: 3rem;
}
#footer .ft-area .ft-le .contact-btn-box a {
  width: auto;
  height: auto;
}
#footer .ft-area .ft-le .ft-info-box {
  display: grid;
}
#footer .ft-area .ft-le .ft-info-box .ft-info {
  display: grid;
  gap: 5px;
}
#footer .ft-area .ft-le .ft-info-box .ft-info dt {
  padding-right: 1rem;
  border-right: 0.3rem solid #000;
  margin-right: 1rem;
}
#footer .ft-area .ft-le .com-btn {
  padding: 2rem;
}
#footer .ft-area .ft-ri {
  width: 400px;
}
#footer .ft-area .ft-ri .nav-box .nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 5rem;
}
#footer .ft-area .ft-ri .nav-box .nav-list .nav-item {
  line-height: 1;
}
#footer .ft-area .ft-ri .sub-nav-list {
  display: flex;
  justify-content: end;
  color: #fff;
  margin-top: 4rem;
  font-size: 1.4rem;
}
#footer .ft-area .ft-ri .sub-nav-list .nav-item {
  line-height: 1;
  padding: 0 0.8rem;
}
#footer .ft-area .ft-ri .sub-nav-list .nav-item:first-child {
  border-right: 2px solid #fff;
}
#footer .ft-area .map {
  margin-top: 5rem;
  height: 350px;
}
#footer .copyright {
  font-size: 1.2rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#about-equipment {
  background: url(../img/common/bg-01-le.png) top left/25% no-repeat, url(../img/common/bg-01-ri.png) top right/34% no-repeat, url(../img/about/eq-bg.png) bottom/100% no-repeat, var(--bg-pt-02);
}
#about-equipment .com-list-stl li:nth-child(even) {
  flex-direction: row-reverse;
}

#about-commitment {
  background: url(../img/common/bg-02-le.png) left repeat-y, var(--bg-pt-01);
}
#about-commitment .ttl02 .big {
  font-size: 3.2rem;
}

#about-flow {
  background: url(../img/top/mov-bg-ri.png) top right/41% no-repeat, url(../img/about/flow-bg.jpg) center/cover;
}
#about-flow .ttl01 {
  width: auto;
}
#about-flow ol {
  width: 715px;
}
#about-flow ol li {
  padding: 3rem;
  position: relative;
}
#about-flow ol li::after {
  content: "";
  display: block;
  width: 4.6rem;
  height: 1.3rem;
  position: absolute;
  background-color: var(--main-color);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  margin: 0 auto;
  inset: auto 0 -3.5rem 0;
  margin: 0 auto;
}
#about-flow ol li .txt-box {
  width: 334px;
}
#about-flow ol li .txt-box .num {
  position: absolute;
  top: 4rem;
  left: 4rem;
}
#about-flow .tebako-box {
  margin-top: 6rem;
}
#menu {
  padding: 10rem 0 3rem;
  background: url(../img/menu/bg-le.png) bottom left/31% no-repeat, url(../img/menu/bg-ri.png) bottom right/31% no-repeat, var(--bg-pt-01);
}
#menu .inbox {
  display: grid;
  justify-items: center;
}
#menu ul {
  width: 100%;
}
#menu ul li .ttl03 {
  padding: 1.5rem 3rem;
  margin-bottom: 2.5rem;
}
#menu ul li .ttl04 {
  font-family: var(--ttl-font);
}
#menu .tebako-box {
  text-align: center;
  position: relative;
  margin-top: 5rem;
}
#menu .tebako-box .inline {
  position: absolute;
  bottom: 0;
  left: 9rem;
}

.bg-01 {
  background: url(../img/common/bg-01-le.png) top left/25% no-repeat, url(../img/common/bg-01-ri.png) top right/34% no-repeat, var(--bg-pt-02);
}

#menu-chart > .inbox {
  position: relative;
  z-index: 1;
}
#menu-chart > .inbox .tebako-box {
  position: absolute;
  top: -10rem;
  right: 0;
}
#menu-chart > .inbox #contents {
  position: relative;
  z-index: 10;
}

#chart {
  padding: 0;
}
#chart .chart_title {
  padding: 2rem;
}
#chart .chart_btn_list .com-btn {
  width: 480px;
  height: 70px;
}
#chart .btn_wrp {
  margin-top: 5rem;
}
#chart .btn_wrp a {
  background: url("../img/menu/bk-btn.png") left center/1.6rem no-repeat;
  padding-left: 3rem;
  box-sizing: border-box;
}
#chart .result_chart .txt-box {
  width: 410px;
}
#chart .result_chart .txt-box .ttl02 {
  gap: 2rem;
}
#chart .result_chart .txt-box .ttl02 .big {
  padding: 0 2rem;
}

#voice ul li {
  position: relative;
}
#voice ul li::after {
  content: "";
  display: block;
  width: 4.6rem;
  height: 1.3rem;
  position: absolute;
  background-color: #000;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  margin: 0 auto;
  bottom: -1.2rem;
  left: 9rem;
}
#voice ul li .ill-box {
  width: 15rem;
}
#voice ul li .txt-box {
  width: 820px;
}

#faq ul {
  gap: 4rem;
}
#faq ul li {
  padding-bottom: 3rem;
  padding-left: 6rem;
  position: relative;
}
#faq ul li .ttl04 {
  margin-bottom: 1rem;
}
#faq ul li .num {
  position: absolute;
  top: 0;
  left: 0;
}

#company-greeting .txt-box {
  width: 720px;
}

#company-info {
  background: var(--bg-pt-01);
}
#company-info .ttl01 {
  width: auto;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  background: url(../img/sv/img.png) right calc(50% - 54rem) top no-repeat, url(../img/sv/bg.jpg) left/cover no-repeat;
  height: 650px;
  padding: 0 8rem;
  display: grid;
  align-content: center;
  position: relative;
}
.sv::after {
  content: "";
  display: block;
  width: 96.9%;
  height: 93.5%;
  position: absolute;
  border: 0.5rem solid #000;
  outline: 0.3rem solid #fff;
  outline-offset: -1rem;
  inset: 0;
  margin: auto;
}
.sv .sv-catch {
  font-weight: 400;
  font-size: 8.1rem;
  margin-top: 5rem;
  font-family: var(--ttl-font);
  color: #fff;
  text-shadow: 0px 9px 0px var(--font-color), -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}

/*---------------------------△△---SV---△△------------------------*/
/*---------------------------▽▽---breadcrumbs---▽▽------------------------*/
.breadcrumbs-area {
  position: relative;
  z-index: 10;
  height: 6rem;
  background: var(--bg-pt-02);
}
.breadcrumbs-area .breadcrumbs {
  position: absolute;
  left: 0;
  right: 0;
  top: 15px;
  font-size: 1.5rem;
}
.breadcrumbs-area .breadcrumbs li:not(:first-child)::before {
  content: ">";
  padding: 0 15px;
}

/*---------------------------△△---breadcrumbs---△△------------------------*/
/*-----------▽▽---select---▽▽--------*/
.select-area {
  width: 300px;
  height: 50px;
  margin-left: auto;
  margin-right: 0;
}
.select-area .select-box {
  font-size: 1.5rem;
}
.select-area .select-box option {
  font-size: 1.5rem;
}
/*------------△△---select---△△---------*/
/*--------------------その他共通ページ --------------------*/
.com-other-page {
  background: url(../img/common/bg-01-le.png) top left/25% no-repeat, url(../img/common/bg-01-ri.png) top right/34% no-repeat, var(--bg-pt-02);
}

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