@charset "UTF-8";
/*アニメーションCSS*/
/*ボーダーが真ん中から左右に広がる*/
/*ボタンの背景が横から出てくる*/
/*spスタイル */
html {
  font-size: 2.6666666667vw;
}

.inbox {
  width: 86%;
  box-sizing: border-box;
  margin: 0 auto;
}

.sp-none {
  display: none;
}

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

/*ここから下がドロワー設定項目 */
/*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: var(--bg-color);
}

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

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

#drawer-nav .nav .drawer-link {
  box-sizing: border-box;
  padding: 3vw 2vw;
  border-bottom: 1px solid var(--main-color);
  font-size: 4vw;
  color: var(--font-color);
  font-weight: 500;
  position: relative;
}
#drawer-nav .nav .drawer-link::after {
  content: "";
  display: block;
  width: 2vw;
  height: 2vw;
  background: var(--main-color);
  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;
}

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

/*rink-list */
.drawer-sub-nav__list {
  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: 4vw;
  line-height: 1.8;
}

/*======================================================
 * ▽▽---共通スタイル---▽▽
 * =======================================================*/
html {
  scroll-padding: 0;
}

section {
  padding: 7rem 0;
}

.dl-item {
  display: flex;
}

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

.com-btn {
  font-size: 1.5rem;
  width: 70vw;
  height: 15vw;
  font-family: var(--ttl-font);
  display: grid;
  place-items: center;
  background: var(--bg-grd);
  color: var(--white);
  position: relative;
  font-size: 1.8rem !important;
  margin: 6rem auto 0;
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn::after {
  content: "";
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 1.5rem 0 auto;
  margin: auto 0;
}
.com-btn:hover {
  opacity: 1;
  transform: scale(0.95);
}

.mail-btn::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1.5rem;
  position: absolute;
  background: url("../img/common/mail-icon-wt.png") center/contain no-repeat;
  inset: 0 auto 0 2.5rem;
}
.mail-btn.bg-wt {
  font-weight: 700;
  color: var(--main-color);
}
.mail-btn.bg-wt:link, .mail-btn.bg-wt:visited {
  color: var(--main-color);
}
.mail-btn.bg-wt::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1.5rem;
  position: absolute;
  background: url("../img/common/mail-icon.png") center/contain no-repeat;
}

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

.ttl01 {
  display: grid;
  justify-items: center;
  font-weight: 600;
  margin-bottom: 5rem;
  text-align: center;
}
.ttl01 .en {
  font-size: 5rem;
  color: rgba(16, 182, 41, 0.15);
  text-transform: uppercase;
}
.ttl01 .ja {
  font-family: var(--ttl-font);
  font-size: 2.6rem;
  letter-spacing: 0.2em;
  margin-top: -3rem;
}
.ttl01.ft-wt .en {
  color: #fff;
  opacity: 0.2;
}
.ttl01.ttl-deco .en::before {
  content: "";
  display: block;
  width: 5rem;
  height: auto;
  aspect-ratio: 1.58;
  position: absolute;
  background: url("../img/common/ttl-deco.png") center/contain no-repeat;
  top: -1rem;
  left: -2rem;
  z-index: 10;
}
.ttl01.txt-le {
  justify-content: start;
  justify-items: start;
  text-align: left;
}

.ttl02 {
  font-family: var(--ttl-font);
  font-size: 2.4rem !important;
  font-weight: 600;
}

.ttl03 {
  font-family: var(--ttl-font);
  font-size: 2.2rem;
  font-weight: 600;
}

.ttl04 {
  font-size: 1.8rem;
}

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

.com-tel {
  display: grid;
  justify-items: center;
  font-family: var(--en-font);
  font-size: 3.3rem;
}
.com-tel a {
  background: url("../img/common/tel-icon.png") left center/1.8rem no-repeat;
  padding-left: 3rem;
  box-sizing: border-box;
}
.com-tel.ft-wt a {
  background-image: url(../img/common/tel-icon-wt.png) !important;
}

.add-box {
  gap: 2.5rem;
}

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

time {
  line-height: 1;
  padding: 0.5rem 1rem;
}

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
}
.com-desc-tbl .dl-item dt {
  font-weight: 700;
  color: var(--main-color);
  width: 30%;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--main-color);
}
.com-desc-tbl .dl-item dd {
  width: 70%;
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid var(--bd-color);
}
.com-desc-tbl .dl-item dd .tel-txt {
  display: inline-flex;
}

.map {
  margin-top: 7.5rem;
  height: 40rem;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100;
  padding: 4rem 0;
}
#header .hd-logo {
  position: absolute;
  width: 10rem;
  left: 0;
  top: 0;
  z-index: 100;
}
#header .hd-logo img {
  display: block;
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  position: relative;
  padding-bottom: 12.5rem;
  background: linear-gradient(to top, var(--bg-color), var(--bg-color) 34rem, #fff 34rem, #fff);
}
.top-mv .mv-mov video {
  width: 100%;
}
.top-mv .mv-ct {
  font-size: 5rem;
  color: var(--main-color);
  opacity: 0.15;
  position: absolute;
  bottom: -4rem;
  right: 0;
  font-weight: 600;
}

/*---------------------------△△---MV---△△------------------------*/
.ent-mv .ent-01 .ent-btn::after {
  background: url(../img/common/btn-arw.png) center/1.5rem no-repeat, var(--main-color);
}
.ent-mv .ent-02 .ent-btn::after {
  background: url(../img/common/btn-arw.png) center/1.5rem no-repeat, #ee8800;
}
.ent-mv a {
  position: relative;
  padding: 7rem 0;
}
.ent-mv a .txt-box {
  width: 80%;
  padding: 3rem 2.5rem;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.9) !important;
}
.ent-mv a .txt-box .logo-box {
  height: 8rem;
}
.ent-mv a .txt-box .logo-box img {
  height: 100%;
  width: auto;
}
.ent-mv a .txt-box p {
  line-height: 1.5;
  font-size: 1.3rem;
}
.ent-mv a .txt-box .ent-btn {
  position: relative;
}
.ent-mv a .txt-box .ent-btn::after {
  content: "";
  display: block;
  width: 3rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  border-radius: 50vw;
  top: 0rem;
  right: -4.5rem;
  transition: 0.5s;
}
.ent-mv a .com-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.ent-mv a .com-img img {
  transition: 0.5s;
}
.ent-mv a .com-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: 0.5s;
}
.ent-mv a:hover {
  opacity: 1;
}
.ent-mv a:hover .com-img img {
  transform: translateX(-50%) translateY(-50%) scale(1.1);
}
.ent-mv a:hover .com-img::after {
  opacity: 1;
}
.ent-mv a:hover .ent-btn::after {
  transform: translateX(1rem);
}

#entrance-page #footer {
  padding: 1rem;
  border-radius: 0;
  background: #fff;
}
#entrance-page #footer .copyright {
  text-align: center;
  color: var(--font-color);
}

#top-about .inbox {
  position: relative;
}
#top-about .inbox::before {
  content: "";
  display: block;
  width: 4rem;
  height: auto;
  aspect-ratio: 1.133;
  position: absolute;
  background: url("../img/common/deco-02.png") center/contain no-repeat;
  bottom: 3rem;
  left: 0;
}
#top-about .inbox::after {
  content: "";
  display: block;
  width: 4rem;
  height: auto;
  aspect-ratio: 0.686;
  position: absolute;
  background: url("../img/common/deco-01.png") center/contain no-repeat;
  top: -3rem;
  right: -1rem;
}
#top-about .inbox .txt-box {
  padding-top: 5rem;
}
#top-about .inbox .txt-box .ttl01 .ja {
  font-size: 2.2rem;
}
#top-about .inbox .txt-box .ttl01 .ja small {
  letter-spacing: 0.2em;
}
#top-about .inbox .txt-box .ttl01 .ja .ft-clr01 {
  letter-spacing: 0.2em;
  font-size: 3rem;
}
#top-about .inbox .img-box {
  text-align: center;
  margin-top: 3rem;
}

#top-service {
  border-radius: 5rem 5rem 0 0;
}
#top-service .inbox {
  background: url(../img/top/srv-deco.png) top 5rem right 0/5.5rem no-repeat;
}
#top-service .inbox ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem 0;
}
#top-service .inbox ul li {
  width: 48%;
}
#top-service .inbox ul li .ttl03 {
  margin-top: -5rem;
  font-size: 1.8rem;
}
#top-service .inbox ul li .ttl03 span {
  padding: 0 0.5rem;
}
#top-other {
  padding: 0;
}
#top-other .inbox {
  width: auto;
}
#top-other ul li a {
  width: 100%;
  gap: 1rem;
  padding: 4rem 0 6rem;
  align-content: center;
}
#top-other ul li a::after {
  content: url(../img/common/btn-arw.png);
}
#top-other ul li a .ill-box {
  height: 6rem;
}
#top-other ul li a .ill-box img {
  height: 100%;
  width: auto;
}
#top-other ul li a .ttl01 {
  margin: 0;
}
#top-other ul li a .ttl01 .en {
  position: absolute;
  bottom: 0;
}
#top-other ul li a .ttl01 .ja {
  margin: 0;
}
#top-other ul li a .com-img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#top-other ul li a .com-img img {
  transition: 0.5s;
}
#top-other ul li a .com-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  transition: 0.5s;
}
#top-other ul li a:hover {
  opacity: 1;
}
#top-other ul li a:hover .com-img img {
  transform: translateX(-50%) translateY(-50%) scale(1.1);
}
#top-other ul li a:hover .com-img::after {
  opacity: 0.3;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  padding-top: 6rem;
  position: relative;
}
#top-news .inbox .ttl01 {
  width: auto;
}
#top-news .inbox .ttl01 .en {
  position: relative;
  color: var(--accent-color);
  display: block;
  color: rgba(19, 164, 211, 0.2);
}
#top-news .inbox .news-list {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
}
#top-news .inbox .news-list .news-item {
  flex-shrink: 0;
}
#top-news .inbox .news-list .news-item a {
  width: 220px;
  display: grid;
  justify-items: end;
}
#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.517;
}
#top-news .inbox .news-list .news-item a time {
  font-size: 1.3rem;
  line-height: 1;
  background: var(--accent-color);
  color: #fff;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
  margin-top: 1rem;
}
#top-news .inbox .news-list .news-item a .tag-list {
  margin-top: 1rem;
  font-size: 1.3rem;
}
/*------------△△---NEWS---△△---------*/
#common-contact {
  padding-top: 0;
}
#common-contact .inbox {
  background: linear-gradient(-45deg, #009116, #10b629);
  padding: 4rem 2rem;
}
#common-contact .inbox .ttl01 {
  margin-bottom: 3rem;
}

.pagetop {
  position: fixed;
  z-index: 100;
  right: 10px;
  bottom: 95px;
  width: 65px;
}

#footer {
  position: relative;
  border-radius: 5rem 5rem 0 0;
}
#footer .ft-area {
  padding-bottom: 8rem;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: center;
  gap: 3.5rem;
}
#footer .ft-area .ft-le .ft-logo {
  width: 40%;
}
#footer .ft-area .ft-le .ft-info-box {
  gap: 2rem;
  display: grid;
}
#footer .ft-area .ft-ri {
  display: grid;
  padding-top: 7rem;
  gap: 3rem;
}
#footer .ft-area .ft-ri .nav-box {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 6rem;
}
#footer .ft-area .ft-ri .nav-list {
  display: grid;
  gap: 3rem;
}
#footer .ft-area .ft-ri .nav-list .nav-item {
  line-height: 1;
  background: url("../img/common/ft-arw.png") left center/0.6rem no-repeat;
  padding-left: 2rem;
  box-sizing: border-box;
}
#footer .ft-btm {
  padding: 2rem 1.5rem;
}
#footer .ft-btm .nav-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 1.2rem;
}
#footer .ft-btm .nav-list .nav-item:first-child {
  padding-right: 2rem;
  border-right: 1px solid #fff;
}
#footer .copyright {
  font-size: 1rem;
  text-align: center;
  margin-top: 2rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#service ul {
  display: grid;
  gap: 7rem;
}
#service ul li {
  position: relative;
}
#service ul li .img-box {
  text-align: center;
  margin-bottom: 8rem;
}
#service ul li .com-img {
  height: 12rem;
  width: 80%;
  z-index: -1;
  position: absolute;
  top: 25rem;
  right: -7vw;
}
#service ul li .txt-box {
  position: relative;
}
#service ul li .txt-box::before {
  content: "";
  display: block;
  width: 10rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  border-radius: 50vw;
  top: -6rem;
  left: -5rem;
  z-index: -1;
}
#service ul li .txt-box .ttl02 {
  margin-bottom: 4rem;
  gap: 1rem;
}
#service ul li .txt-box .ttl02 .en {
  font-size: 2.4rem;
}
#service ul li:nth-child(even) {
  flex-direction: row-reverse;
}
#service ul .srv-01 .txt-box::before {
  background: var(--bg-color);
}
#service ul .srv-01 .en {
  color: var(--main-color);
}
#service ul .srv-02 .txt-box::before {
  background: var(--accent-color-bg);
}
#service ul .srv-02 .en {
  color: var(--accent-color);
}
#service ul .srv-03 .txt-box::before {
  background: var(--accent-color-bg-02);
}
#service ul .srv-03 .en {
  color: var(--accent-color-02);
}
#service ul .srv-04 .txt-box::before {
  background: var(--accent-color-bg-03);
}
#service ul .srv-04 .en {
  color: var(--accent-color-03);
}

#service-goods ul {
  display: grid;
  gap: 5rem;
  position: relative;
}
#service-goods ul::before {
  content: "";
  display: block;
  width: 4rem;
  height: auto;
  aspect-ratio: 1.133;
  position: absolute;
  background: url("../img/common/deco-02.png") center/contain no-repeat;
  bottom: -2rem;
  left: -1rem;
}
#service-goods ul::after {
  content: "";
  display: block;
  width: 4rem;
  height: auto;
  aspect-ratio: 0.686;
  position: absolute;
  background: url("../img/common/deco-01.png") center/contain no-repeat;
  top: -5rem;
  right: -1rem;
}
#service-goods ul li {
  padding: 3rem 2rem;
}
#service-goods ul li .com-img {
  width: 100%;
  aspect-ratio: 1.5;
  margin-bottom: 2rem;
}
#service-goods ul li .txt-box .ttl-box {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 0.2rem dotted var(--font-color);
}
#service-goods ul li .txt-box .ttl-box .ttl04 {
  text-align: right;
}
#service-goods ul li .txt-box .txt {
  line-height: 2.375;
}

#coach ul {
  gap: 5rem;
  margin-top: 5rem;
  position: relative;
}
#coach ul::after {
  content: "";
  display: block;
  width: 8rem;
  height: auto;
  aspect-ratio: 1.04;
  position: absolute;
  background: url("../img/coach/deco.png") center/contain no-repeat;
  top: -7rem;
  right: -1rem;
}
#coach ul li {
  padding: 3rem 2rem;
}
#coach ul li .com-img {
  width: 100%;
  aspect-ratio: 0.75;
  margin-bottom: 3rem;
}
#coach ul li .txt-box .ttl03 {
  margin-bottom: 2rem;
}
#price dl {
  margin-top: 4rem;
}
#price dl .dl-item {
  display: grid;
  font-weight: 700;
}
#price dl .dl-item:nth-child(even) dt {
  background: #0aaa23;
}
#price dl .dl-item:nth-child(even) dd {
  background: #d6ebd7;
}
#price dl .dl-item dt {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #fff;
}
#price dl .dl-item dd {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--main-color);
}

#price-flow {
  background: url(../img/price/flow-bg.jpg) center/cover;
  margin-bottom: 7rem;
}
#price-flow ol {
  gap: 5rem;
}
#price-flow ol li {
  display: grid;
  justify-items: center;
}
#price-flow ol li .img-box {
  width: 50%;
}
#price-flow ol li .txt-box {
  margin-top: 2rem;
}
#price-flow ol li .txt-box .ttl03 {
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--font-color);
  margin-bottom: 2rem;
}
#price-flow ol li .txt-box .txt {
  line-height: 2.375;
}

#company-greeting {
  padding-bottom: 27rem;
  background: url(../img/company/gree-bg-wave.png) bottom/100% no-repeat, url(../img/company/gree-bg-wt.png) center no-repeat, url(../img/company/gree-bg.jpg) center/cover no-repeat;
}
#company-greeting .inbox {
  position: relative;
  padding: 0 0 10rem;
  z-index: 1;
}
#company-greeting .img-01 {
  position: absolute;
  bottom: -8rem;
  right: -5rem;
  width: 70%;
  z-index: -1;
}
#company-greeting .img-02 {
  position: absolute;
  bottom: -17rem;
  left: -8rem;
  z-index: -1;
  width: 70%;
}
#company-greeting .img-03 {
  bottom: -25rem;
  right: 6rem;
  position: absolute;
  z-index: -1;
  width: 60%;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv-area {
  padding-bottom: 12rem;
  background: linear-gradient(to top, var(--bg-color), var(--bg-color) 15rem, #fff 15rem, #fff);
}

.sv {
  position: relative;
}
.sv .sv-catch {
  text-align: center;
}
.sv .sv-catch .ja {
  width: 80%;
  font-size: 3rem;
  position: absolute;
  left: 0;
  bottom: -3rem;
  z-index: 10;
}
.sv .sv-catch .en {
  position: absolute;
  bottom: -8rem;
  left: 0;
  z-index: 10;
  text-transform: uppercase;
  font-size: 5rem;
  opacity: 0.88;
}
.sv .sv-img {
  height: 15rem;
  width: 85%;
  margin-left: auto;
}

/*---------------------------△△---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---△△------------------------*/
/*すまほセレクトボックス*/
.select-area {
  position: relative;
  width: 70vw;
  height: 15vw;
}
.select-area .select-box {
  font-size: 3.5vw;
}
.select-area .select-box option {
  font-size: 3vw;
}
/*その他共通ページ*/
.com-other-page {
  padding: 20vw 0;
}

/*---------------------------▽▽---site.html---▽▽------------------------*/
/*---------------------------△△---site.html---△△------------------------*/
/*---------------------------▽▽---404.html---▽▽------------------------*/
/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
/*---------------------------△△---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: 35%;
  font-weight: 500;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 62%;
}
#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 {
  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;
  font-size: 4vw;
}
.pagenation li a, .pagenation li span {
  padding: 20% 35%;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1;
}
.pagenation-detail {
  position: relative;
  margin-top: 10%;
}
.pagenation-detail p a {
  padding: 5% 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 3.5vw;
  letter-spacing: 0.2em;
  position: absolute;
}
.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: 60%;
  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---▽▽------------------------*/