@charset "UTF-8";
/*アニメーションCSS*/
/*ボーダーが真ん中から左右に広がる*/
/*ボタンの背景が横から出てくる*/
/*spスタイル */
.inbox {
  width: 86%;
  box-sizing: border-box;
  margin: 0 auto;
}

.sp-none {
  display: none;
}

/*すまほセレクトボックス*/
.select-area {
  position: relative;
  width: 70vw;
  height: 15vw;
}
.select-area .select-box {
  font-size: 3.5vw;
  font-weight: 500;
}
.select-area .select-box option {
  font-size: 3vw;
}
/*ここから下がドロワー設定項目 */
/*drawer btn 上下左右で設定可能 */
.sp-menu-btn-wrp {
  top: 10px;
  right: 10px;
  bottom: auto;
  left: auto;
  background: var(--main-color);
  border-radius: 0;
}

.sp-menu-btn-wrp .sp-menu-btn {
  width: 15vw;
  height: 15vw;
  max-width: 75px;
  max-height: 75px;
}

.sp-menu-btn-wrp .sp-menu-btn span {
  width: 50%;
  height: 2px;
  background: #fff;
  transform-origin: center;
}

.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 30%;
}

.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}

.sp-menu-btn-wrp .sp-menu-btn .bottom {
  bottom: 30%;
}

.sp-menu-btn-wrp .sp-menu-btn-txt {
  color: #fff;
}

/*active */
.active .sp-menu-btn-wrp .sp-menu-btn span {
  width: 55%;
}

.sp-menu-btn.active .top {
  top: 48.5%;
  transform: translateY(0) translateX(0) rotate(45deg);
}

.sp-menu-btn.active .middle {
  opacity: 0;
}

.sp-menu-btn.active .bottom {
  bottom: 48.5%;
  transform: translateY(0) translateX(0) rotate(-45deg);
}

/*	drawer inbox */
#drawer-nav {
  padding: 3% 5% 30vw;
  background-color: #000;
}

#drawer-nav .drawer-logo {
  width: 40%;
}

#drawer-nav .nav {
  margin-bottom: 10vw;
}

#drawer-nav .nav .drawer-link {
  box-sizing: border-box;
  padding: 3vw 2vw;
  border-bottom: 1px solid #fff;
  font-size: 4vw;
  color: #fff;
  font-weight: 500;
  position: relative;
}
#drawer-nav .nav .drawer-link::after {
  content: "";
  display: block;
  width: 2vw;
  height: 2vw;
  background: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3%;
  margin: auto 0;
}
#drawer-nav .nav .drawer-link.drawer-dropdown::after {
  content: none;
}

#drawer-nav .nav .current a {
  color: var(--main-color);
  padding-left: 3%;
}
#drawer-nav .nav .current a::after {
  background-color: var(--main-color);
}

#drawer-nav .nav .drawer-dropdown span {
  display: block;
}

#drawer-nav .nav .drawer-dropdown span:before {
  background: var(--main-color);
}

#drawer-nav .nav .drawer-dropdown span:after {
  background: var(--main-color);
}

#drawer-nav .nav .show span:after {
  opacity: 0 !important;
}

#drawer-nav .nav .drawer-dropdown-bx {
  margin: 3% 0;
  padding-left: 4%;
  box-sizing: border-box;
}

#drawer-nav .nav .drawer-dropdown-bx > li > .drawer-link:before {
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}

#drawer-nav .nav .drawer-dropdown-bx > li > .drawer-link span {
  padding: 0 0 0 5%;
}

/*original custom code */
/*sns */
.sns-list {
  margin: 10% auto 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}

.sns-list li a {
  display: block;
  width: 100%;
  min-width: 25px;
}
.sns-list li a img {
  display: block;
  max-width: none;
  width: 100%;
}

.drawer-info {
  display: grid;
  justify-items: center;
  gap: 5rem;
}
.drawer-info .mail-btn-box {
  display: grid;
  gap: 5rem;
}

/*rink-list */
.drawer-sub-nav__list {
  color: #fff;
  font-size: 3vw;
  margin-top: 10vw;
  display: flex;
  justify-content: center;
  gap: 5%;
  text-decoration: underline;
}
.drawer-sub-nav__list li {
  font-size: 3.5vw;
}

/*フォント */
body {
  font-size: 3.8vw;
  line-height: 1.8;
}

/*======================================================
 * ▽▽---共通スタイル---▽▽
 * =======================================================*/
html {
  scroll-padding: 10rem;
  font-size: 2.1052631579vw;
}

section {
  padding: 10rem 0;
}

.dl-item {
  display: flex;
}

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

.com-btn {
  display: grid;
  place-items: center;
  width: 80vw;
  height: 15vw;
  margin: 5rem auto 0;
  color: #fff;
  background: var(--main-color);
  position: relative;
  border: 1px solid var(--main-color);
  opacity: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.com-btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: scaleX(0);
  transition: 0.5s;
  transform-origin: left;
}
.com-btn:hover::before {
  transform: scaleX(1);
}
.com-btn::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 1.2rem 0 auto;
  margin: auto 0;
}
.com-btn:hover {
  transform: scale(0.98);
  opacity: 1;
  border: 1px solid #fff;
}

.mail-btn-box {
  gap: 2rem;
}
.mail-btn-box .com-btn {
  margin: 0;
}

.bg-bd {
  background: url(../img/common/bd.png) bottom repeat-x;
}

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

.ttl01 {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 6rem;
  gap: 1rem;
}
.ttl01 .ja {
  font-size: 3.2rem;
}
.ttl01 .en {
  font-size: 1.8rem;
  color: var(--main-color);
}
.ttl01.ft-wt .en {
  color: #fff;
}
.ttl01.txt-le {
  text-align: left;
  justify-items: start;
}
.ttl01.tate {
  text-align: left;
  justify-items: start;
}
.ttl01.tate .ja {
  line-height: 2.05;
}

.ttl02 {
  font-size: 3rem;
}

.ttl03 {
  font-size: 2.8rem;
}

.ttl04 {
  font-size: 2.4rem;
}

.ttl05 {
  font-size: 2.2rem;
}

.ttl06 {
  font-size: 2rem;
}

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

.ttl-bd {
  position: relative;
  text-align: center;
  z-index: 1;
  width: 100%;
}
.ttl-bd::before {
  content: "";
  display: block;
  width: 6rem;
  height: 1px;
  position: absolute;
  background: var(--accent-color);
  inset: 0 auto 0 0;
  margin: auto 0;
}
.ttl-bd::after {
  content: "";
  display: block;
  width: 6rem;
  height: 1px;
  position: absolute;
  background: var(--accent-color);
  inset: 0 0 0 auto;
  margin: auto 0;
}
.ttl-bd.ft-wt::before {
  background: #fff;
}
.ttl-bd.ft-wt::after {
  background: #fff;
}

.ft-wt .ttl-bd::before {
  background: #fff;
}
.ft-wt .ttl-bd::after {
  background: #fff;
}

.ttl-deco::before {
  content: "";
  display: block;
  width: 6rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/common/ttl-deco.png") center/contain no-repeat;
  position: static;
}

.img-box {
  border: 0.5rem solid #fff;
  outline: 1px solid var(--accent-color);
}
.img-box img {
  width: 100%;
}

.img-bd-02 {
  border: 1rem solid #fff;
  outline: 1px solid var(--accent-color);
}

.com-tel {
  display: grid;
  justify-items: center;
  color: #fff;
}
.com-tel a {
  font-size: 2.6rem;
}
.com-tel a::before {
  content: "TEL.";
  font-size: 0.57em;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  line-height: 1;
  color: #fff;
  color: var(--main-color);
  padding: 0 5px;
}

time {
  line-height: 1;
  color: #ccbaac;
}

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  font-size: 3.2vw;
  display: flex;
  justify-content: space-between;
  padding: 3vw;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid var(--accent-color);
}
.com-desc-tbl .dl-item dt {
  text-align: left;
  color: var(--main-color);
  width: 28%;
}
.com-desc-tbl .dl-item dd {
  line-break: loose;
  width: 70%;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  height: 90vw;
  gap: 3rem;
  background: url(../img/top/mv-bg.jpg) center/cover no-repeat;
}
.top-mv img {
  width: 100%;
}
.top-mv .mv-logo {
  width: 50%;
}
.top-mv .mv-ct {
  width: 60%;
}

/*---------------------------△△---MV---△△------------------------*/
/*△△---季節更新bg---△△*/
.gree-season-01 {
  background: url(../img/top/gree-01.jpg) center/cover;
}

.gree-season-02 {
  background: url(../img/top/gree-02.jpg) center/cover;
}

.gree-season-03 {
  background: url(../img/top/gree-03.jpg) center/cover;
}

.gree-season-04 {
  background: url(../img/top/gree-04.jpg) center/cover;
}

#top-about .img-box {
  margin-bottom: 7rem;
}
#top-about .com-txt {
  text-align: justify;
}

#top-spend {
  background: url(../img/top/spend-deco.png) top 5rem right 5rem/20% no-repeat, url(../img/common/bd.png) bottom repeat-x;
}
#top-spend .inbox .com-txt {
  text-align: justify;
}
#top-spend ul {
  display: grid;
  gap: 5rem;
  margin-bottom: 9rem;
}
#top-spend ul li {
  width: 85%;
}
#top-spend ul li:nth-child(even) {
  transform: translateX(6rem);
}
#top-spend ul li .img-box {
  margin-bottom: 2rem;
}
#top-spend ul li .ttl06 {
  position: relative;
  padding-top: 2rem;
  line-height: 1.9;
}
#top-spend ul li .ttl06 .ttl02 {
  line-height: 1;
  width: 5.4rem;
  aspect-ratio: 1;
  position: absolute;
  left: 1rem;
  top: 1rem;
}
#top-spend ul li .ttl06 .ttl02::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid var(--main-color);
  transform: rotate(45deg);
  left: 0;
  top: 0;
}
#top-spend ul li .ttl06 small {
  font-size: 1.6rem;
  position: absolute;
  display: block;
  top: -1rem;
  left: 8rem;
  letter-spacing: 0.12;
}

#top-guide .txt-box {
  margin-top: 6rem;
}
#top-guide .txt-box .ttl04 {
  margin-bottom: 3rem;
}
#top-guide ul {
  display: grid;
  margin-top: 7rem;
  gap: 3rem;
}
#top-guide ul li .img-box {
  width: 100%;
  aspect-ratio: 1.3;
  margin-bottom: 1rem;
}

#top-contact {
  background: url(../img/top/contact-bg.jpg) center/cover no-repeat;
}
#top-contact .inbox .contact-info {
  display: grid;
  justify-items: center;
  gap: 3.5rem;
  padding: 3.5rem 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-top: 5rem;
}
#top-contact .inbox .com-btn {
  margin-top: 0;
}
#top-contact .inbox dl {
  gap: 1rem;
  line-height: 1;
}
#top-contact .inbox dl dt {
  padding-right: 0.5rem;
  border-right: 1px solid #fff;
  margin-right: 0.5rem;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  position: relative;
}
#top-news .inbox .ttl01 {
  width: auto;
  padding: 0;
  display: grid;
  align-items: center;
}
#top-news .inbox .news-list .news-item {
  border-bottom: 1px solid var(--accent-color);
}
#top-news .inbox .news-list .news-item:first-child {
  border-top: 1px solid var(--accent-color);
}
#top-news .inbox .news-list .news-item a {
  padding: 25px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox .news-list .news-item a time {
  line-height: 1;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .news-list .news-item a .tag-list {
  max-width: 66rem;
}
/*------------△△---NEWS---△△---------*/
.pagetop {
  position: fixed;
  z-index: 100;
  right: 10px;
  bottom: 20px;
}

#footer {
  padding: 10rem 0;
  position: relative;
  background: #000;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: center;
  gap: 3.5rem;
}
#footer .ft-area .ft-le .ft-logo {
  width: 50%;
}
#footer .ft-area .ft-le .ft-info-box {
  display: grid;
  gap: 2rem;
}
#footer .ft-area .ft-le .ft-info-box .ft-info {
  display: grid;
  gap: 1rem;
}
#footer .ft-area .ft-le .ft-info-box .ft-info dt {
  min-width: 7rem;
}
#footer .ft-area .ft-le .ft-contact-box {
  display: grid;
  justify-items: center;
  margin-top: 3rem;
  gap: 4rem 0;
}
#footer .ft-area .ft-le .com-btn {
  margin: 0;
}
#footer .ft-area .ft-le .sns-list {
  gap: 4.5rem;
}
#footer .ft-area .ft-ri {
  margin-top: 8rem;
  display: grid;
  justify-items: center;
  align-content: space-between;
}
#footer .ft-area .ft-ri .nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 2rem;
  margin-bottom: 3rem;
}
#footer .ft-area .ft-ri .nav-list .nav-item {
  line-height: 1;
}
#footer .copyright {
  font-size: 1rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#about-page .com-txt:first-of-type {
  margin-top: 6rem;
}
#about-page .ttl-bd {
  margin-bottom: 4rem;
}
#about-page .com-txt {
  text-align: justify;
}

#about-02 {
  background: url(../img/about/spi-bg.jpg) center/cover;
}

#about-04 {
  background: url(../img/about/tgtr-bg.jpg) center/cover;
}

#about-03 .parent {
  display: grid;
  gap: 3rem;
}
#about-03 .parent img {
  width: 100%;
}

#spend ol {
  gap: 10rem;
}
#spend ol .spend-item {
  display: grid;
  gap: 5rem;
}
#spend ol .spend-item .txt-box .ttl02 {
  display: grid;
  justify-items: start;
  margin-bottom: 3rem;
}
#spend ol .spend-item .txt-box .ttl02 .num::after {
  content: "─";
  color: var(--accent-color);
}
#spend ol .spend-item .voice-box {
  padding: 5rem 5vw;
}
#spend ol .spend-item .voice-box ul {
  margin-top: 5rem;
  display: grid;
  gap: 3rem;
}
#spend ol .spend-item .voice-box ul li {
  padding: 2rem 1.3rem;
}
#spend ol .spend-item .voice-box ul li .ttl05 {
  margin-bottom: 1rem;
}
#spend ol .spend-item .voice-box ul li .person {
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
}

#guide .sec-btn-li {
  gap: 3rem;
  margin-top: 10rem;
  display: grid;
  justify-items: center;
}
#guide .sec-btn-li .com-btn {
  margin: 0;
}
#guide .guide-area {
  margin-top: 16rem;
  gap: 11rem;
}
#guide .guide-area .guide-box .guide-li li {
  display: grid;
  gap: 3rem;
  padding: 5rem 0;
  position: relative;
}
#guide .guide-area .guide-box .guide-li li .txt-box .ttl02 {
  margin-bottom: 2rem;
}
#guide .guide-area .guide-box .guide-li li .img-box {
  margin-bottom: 2rem;
  width: 100%;
  aspect-ratio: 1.66;
}

#foreign-greeting .ttl02 {
  margin-bottom: 3rem;
}

#foreign-about {
  background: url(../img/foreign/about-bg.jpg) center/cover;
}
#foreign-about ul {
  gap: 5rem;
}
#foreign-about ul li {
  padding-bottom: 5rem;
}
#foreign-about ul li .ttl02 {
  margin-bottom: 3rem;
}

#foreign-stay ul {
  display: grid;
  gap: 5rem;
}
#foreign-stay ul li .img-box {
  margin-bottom: 2rem;
}

#foreign-faq ul {
  gap: 7rem;
}
#foreign-faq ul li .ttl04 {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  padding-left: 3rem;
}
#foreign-faq ul li .ttl04::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
}

#foreign-other ul {
  display: grid;
  gap: 5rem;
}
#foreign-other ul li a {
  width: 100%;
  height: 60vw;
  padding: 3.5rem;
  background: url(../img/foreign/other-01.jpg) center/cover;
  position: relative;
}
#foreign-other ul li a::after {
  content: "";
  display: block;
  width: 3rem;
  height: auto;
  aspect-ratio: 1.5;
  position: absolute;
  background: url("../img/foreign/other-arw.png") center/contain no-repeat;
  bottom: 3.5rem;
  right: 3.5rem;
}
#foreign-other ul li .ttl02 {
  margin-bottom: 2rem;
}
#foreign-other ul .other-company {
  background: url(../img/foreign/other-02.jpg) center/cover;
}

#company-map .map {
  margin-top: 5rem;
  height: 50rem;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  background-size: cover;
  background-position: center;
  display: grid;
  align-content: center;
  justify-items: center;
  height: 50vw;
}
.sv .sv-catch {
  width: 85%;
  padding: 1rem;
  font-size: 2.5rem;
  text-align: center;
  background: #000;
  color: #fff;
  display: grid;
  justify-items: center;
}
.sv .sv-catch small {
  font-size: 2rem;
}

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

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

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

.foreign-sv {
  background-image: url(../img/sv/foreign.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 {
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  top: 2vw;
  font-size: 3.5vw;
}
.breadcrumbs-area .breadcrumbs li:not(:first-child)::before {
  content: ">";
  padding: 0 10px;
}

/*---------------------------△△---breadcrumbs---△△------------------------*/
/*その他共通ページ*/
.com-other-page {
  padding: 20vw 0;
}

/*---------------------------▽▽---site.html---▽▽------------------------*/
#site-map .site-list {
  padding: 10% 0 30%;
}
#site-map .site-list li {
  font-size: 4.2vw;
}
#site-map .site-list li a {
  display: block;
  padding: 6% 0;
  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.html---△△------------------------*/
/*---------------------------▽▽---404.html---▽▽------------------------*/
#notfound .inbox .com-txt {
  padding: 10% 0 20%;
}
#notfound .inbox .com-txt a {
  text-decoration: underline;
  color: var(--font-color);
}

/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
#privacy .privacy-box {
  padding: 0;
  margin-bottom: 10vw;
}
#privacy .privacy-box .ttl02 {
  color: #fff;
  font-size: 5vw;
  text-align: left;
  margin-bottom: 5vw;
  line-height: 1.5;
  background: var(--main-color);
  padding: 3vw 2vw;
}

/*---------------------------△△---privacy.html---△△------------------------*/
/*---------------------------▽▽---news.html---▽▽------------------------*/
#news .select-area {
  margin-bottom: 10vw;
  position: relative;
}
#news .select-area .select-box {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: 500;
}
#news .news-area {
  margin-bottom: 10vw;
}
#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: 8% 0;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  gap: 2vw 3%;
  font-size: 3.5vw;
  margin-bottom: 4vw;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box time {
  width: 30%;
  line-height: 2;
  font-weight: 500;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 68%;
}
#news .news-area .news-list .news-item a .news-txt-box .list-ttl {
  font-weight: 500;
  font-size: 4.2vw;
  margin-bottom: 3vw;
  letter-spacing: 0.1em;
}
#news .news-area .news-list .news-item a .news-txt-box .list-txt {
  font-size: 3.4vw;
  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: 35%;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box {
  width: 60%;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box {
  flex-wrap: wrap;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box time {
  width: 100%;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box .tag-list {
  width: 100%;
}

/*detail */
#detail {
  padding-bottom: 30vw;
}
#detail .detail-box {
  margin-bottom: 20vw;
}
#detail .detail-box .data-box {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  gap: 4%;
  font-size: 3.5vw;
  padding-top: 10%;
  margin-bottom: 5vw;
}
#detail .detail-box .data-box time {
  line-height: 2;
  font-weight: 500;
}
#detail .detail-box .data-box .tag-list {
  width: 68%;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw 1vw;
  font-size: 3.3vw;
}
#detail .detail-box .data-box .tag-list .tag a {
  display: block;
  width: 100%;
  height: 100%;
}
#detail .detail-box .detail-ttl {
  letter-spacing: 0.05em;
  text-align: left;
  font-size: 5.5vw;
  font-weight: 500;
  padding: 0 0 4%;
  margin-bottom: 5vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
#detail .detail-box .detail-txt {
  font-size: 4vw;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
#detail .detail-box .detail-txt img {
  margin: 5%;
}

.pagenation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3%;
  margin-top: 10vw;
}
.pagenation li {
  width: 9vw;
  height: 9vw;
  box-sizing: border-box;
  border: 2px solid var(--main-color);
  font-size: 4vw;
  background: #fff;
}
.pagenation li a, .pagenation li span {
  padding: 20% 35%;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1;
}
.pagenation .current {
  background: var(--main-color);
  color: #fff;
}

.pagenation-detail {
  position: relative;
  margin-top: 10%;
}
.pagenation-detail p a {
  background: var(--main-color);
  border-radius: 5px;
  padding: 5% 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 3.5vw;
  letter-spacing: 0.2em;
  position: absolute;
  color: #fff;
}
.pagenation-detail .left a {
  top: 0;
  left: 0;
  width: 20%;
}
.pagenation-detail .right a {
  top: 0;
  right: 0;
  width: 20%;
}
.pagenation-detail .center a {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 35%;
}

/*---------------------------△△---news.html---△△------------------------*/
/*---------------------------▽▽---contact.html---▽▽------------------------*/
#contact .table-wrapper {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20%;
}
#contact .table-wrapper .contact-form-table tr {
  margin-bottom: 5%;
}
#contact .table-wrapper .contact-form-table tr th {
  width: 100%;
  box-sizing: border-box;
  padding: 3vw 2vw;
  font-size: 3.8vw;
  margin-bottom: 3%;
}
#contact .table-wrapper .contact-form-table tr th .required-mark {
  font-size: 3.5vw;
  padding: 1% 2%;
  margin: -0.5%;
  float: right;
}
#contact .table-wrapper .contact-form-table tr th .upload-notice {
  display: inline-block;
  margin-top: 5%;
  line-height: 1.5;
}
#contact .table-wrapper .contact-form-table tr td {
  width: 100%;
  box-sizing: border-box;
}
#contact .table-wrapper .contact-form-table tr td .upload-item-wrap .thumb {
  width: 40vw;
  height: 40vw;
  margin-bottom: 5%;
}
#contact .table-wrapper .contact-form-table tr td .ancion-btn-wrap {
  width: 30vw;
}
#contact .table-wrapper .contact-form-table tr td .ancion-btn-wrap .ancion-btn {
  font-size: 3vw;
  width: 100%;
  box-sizing: border-box;
  padding: 12% 0;
  margin-bottom: 10%;
  line-height: 1;
}
#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 {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  padding: 4%;
  font-size: 4vw;
  box-shadow: none;
}
#contact .table-wrapper .contact-form-table tr td label {
  font-size: 4vw;
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
#contact .table-wrapper .contact-form-table tr td textarea {
  height: auto;
}
#contact .table-wrapper .contact-form-table tr td .p-postal-code {
  width: 30%;
}
#contact .table-wrapper .contact-form-table tr td .birth-txt {
  width: 30%;
}
#contact .table-wrapper .contact-form-table tr td .error-text {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 500;
}
#contact .table-wrapper .contact-form-table tr .select-area {
  padding: 4% 0;
  display: inline;
  position: relative;
}
#contact .table-wrapper .contact-form-table tr .select-area .select-box {
  width: 100%;
  height: 15vw;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 10%;
}
#contact .table-wrapper .contact-form-table tr .select-area::after {
  content: "";
  display: block;
  width: 1vw;
  height: 1vw;
  position: absolute;
  border-right: 1px solid #262626;
  border-bottom: 1px solid #262626;
  transform: rotate(45deg);
  right: 3vw;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#contact .table-wrapper .contact-form-table tr .check-box-confirmation {
  display: flex;
  flex-wrap: wrap;
  gap: 3vw;
}

.privacy-agree {
  display: block;
}
.privacy-agree a {
  text-decoration: underline;
}

.check {
  margin: 10% auto 0px;
}
.check .contact-recaptcha-wrap {
  margin: 0 auto 15%;
}

.contact-submits-wrap {
  border-radius: 5px;
  width: 80%;
  margin: 0 auto 0;
}
.contact-submits-wrap .contact-check-btn {
  width: 100%;
  height: 15vw;
  color: #fff;
  font-size: 4vw;
  letter-spacing: 0.2em;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  margin: 0;
  border-radius: 5px;
  background: var(--main-color);
}
.contact-submits-wrap .contact-back-btn {
  width: 80%;
  border: none;
  background: #bebebe;
  margin-bottom: 10%;
  border-radius: 5px;
  font-size: 4vw;
}

.complete-box {
  color: var(--font-color);
  line-height: 1.5;
  text-align: center;
}
.complete-box a {
  display: inline-block;
  text-decoration: underline;
  margin: 5% 0;
}

input[type=button][disabled],
input[type=submit][disabled] {
  opacity: 0.7;
  pointer-events: none;
}

/*---------------------------▽▽---contact.html---▽▽------------------------*/