@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: rgba(250, 247, 241, 0.93);
}

#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 var(--accent-color);
  font-size: 4vw;
  color: var(--main-color);
  font-weight: 500;
  position: relative;
  font-family: var(--serif-font);
}
#drawer-nav .nav .drawer-link::after {
  content: "";
  display: block;
  width: 2vw;
  height: 2vw;
  background: var(--accent-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-li {
  display: flex;
  justify-content: center;
}
.sns-li a {
  display: block;
  width: 100%;
  min-width: 25px;
}
.sns-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-family: var(--serif-font);
  font-size: 3.5vw;
}

.drawer-info {
  gap: 3rem;
}

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

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

section {
  padding: 7rem 0;
}
section.bg-clr02 {
  margin-bottom: 7rem;
}

.dl-item {
  display: flex;
}

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

.com-btn {
  display: grid;
  width: 50vw;
  font-weight: 700;
  padding: 0.5rem;
  border-bottom: 1px solid var(--main-color);
  font-family: var(--serif-font);
  position: relative;
}
.com-btn::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 0.5rem 0 auto;
  margin: auto 0;
  transition: 0.5s;
}
.com-btn:hover::after {
  transform: translateX(1rem);
}

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

.ttl01 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 4rem;
  font-weight: 400;
  font-family: var(--en-font);
}
.ttl01 span {
  letter-spacing: 0.025em;
}
.ttl01.txt-le {
  justify-content: start !important;
}

#top-page .ttl01, #common-contact .ttl01 {
  display: grid;
  justify-content: center;
  line-height: 1.2;
}
#top-page .ttl01 .en, #common-contact .ttl01 .en {
  line-height: 0.6;
  font-family: var(--tegaki-font);
  font-size: 1.8rem;
  transform: rotate(-17deg);
  letter-spacing: 0;
  color: var(--accent-color);
  transform-origin: left;
  position: relative;
}
#top-page .ji-e .en, #common-contact .ji-e .en {
  right: -1.5rem;
}
#top-page .ji-s .en, #common-contact .ji-s .en {
  left: -2rem;
}

.ttl02 {
  font-size: 2.2rem;
  font-family: var(--en-font);
}

.ttl03 {
  font-size: 1.8rem;
}

.txt-cap {
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.025em;
}

.com-tel {
  gap: 1.5rem;
}
.com-tel a {
  font-size: 2.6rem;
  font-family: var(--serif-font);
  background: url(../img/common/tel-bd.png) bottom/100% no-repeat;
  padding-bottom: 1rem;
}
.com-tel a::before {
  content: "TEL:";
  font-size: 1.8rem;
}
.com-tel .tel-info {
  gap: 1rem;
}
.com-tel .tel-info .dl-item {
  gap: 0.5rem;
}
.com-tel .tel-info dt {
  width: 6.5rem;
  border: 1px solid var(--main-color);
}

.list-stl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem 0;
}
.list-stl li {
  width: 48%;
}
.list-stl li a {
  width: 100%;
}
.list-stl .dp-g {
  gap: 1rem;
}
.list-stl .com-img {
  width: 100%;
  aspect-ratio: 1;
}
.list-stl .com-img img {
  transition: 0.5s;
}
.list-stl a:hover .com-img img {
  transform: translateX(-50%) translateY(-50%) scale(1.1);
}

.brand-list .brand-item a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: rgba(83, 58, 28, 0.6);
  z-index: 20;
}
.brand-list .brand-item .ttl03 {
  position: absolute;
  inset: 0;
  margin: auto;
  font-size: 2.2rem;
  z-index: 50;
}

.img-box img {
  width: 100%;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--font-color-02);
  padding: 0.5rem 1rem;
  background: url("../img/common/tag-icon.png") left center/2rem no-repeat;
  padding-left: 2.8rem;
  box-sizing: border-box;
}

time {
  line-height: 1;
  font-weight: 400;
  color: var(--accent-color);
}

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  font-size: 1.3rem;
}
.com-desc-tbl .dl-item:nth-child(odd) {
  background: var(--bg-color);
}
.com-desc-tbl .dl-item dt {
  width: 30%;
}
.com-desc-tbl .dl-item dd {
  width: 68%;
}
.com-desc-tbl .dl-item dd .tel-txt {
  display: inline-flex;
}

#access-map {
  width: 92%;
  margin: 0 auto;
  border-top: 2px solid var(--accent-color);
}
#access-map .map {
  height: 40rem;
}

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

.mail-btn-box {
  gap: 2rem;
}
.shop-btn {
  width: 60vw;
  height: 15vw;
}
.shop-btn span {
  background: url("../img/common/shop-icon.png") left center/2rem no-repeat;
  padding-left: 2.5rem;
  box-sizing: border-box;
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  padding: 10rem 0rem 5rem;
  position: relative;
  aspect-ratio: 2.08;
  background: url(../img/top/mv-bg.jpg) center/cover;
}
.top-mv .swiper-wrapper {
  width: 20rem;
}
.top-mv .com-img {
  width: 100%;
  aspect-ratio: 1;
}
.top-mv .pos-a {
  z-index: 500;
}
.top-mv .pos-a img {
  width: 100%;
}
.top-mv .ill-01 {
  width: 10%;
  top: 7rem;
  left: 20%;
}
.top-mv .ill-02 {
  width: 12%;
  bottom: 0;
  left: 8%;
}
.top-mv .ill-03 {
  width: 8%;
  right: 20%;
  top: 42%;
}

/*---------------------------△△---MV---△△------------------------*/
.news-area .inbox {
  position: relative;
}
.news-area .inbox .ttl01 {
  width: auto;
}
.news-area .inbox .news-list {
  gap: 1rem;
}
.news-area .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
.news-area .inbox .news-list .news-item a .tag-list {
  margin-bottom: 0.5rem;
}
.news-area .inbox .news-list .news-item a .txt-box {
  padding: 1.5rem;
}
.news-area .inbox .com-btn {
  margin: 3rem auto;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox .ill-box {
  position: absolute;
  top: 8rem;
  right: -24rem;
}

/*------------△△---NEWS---△△---------*/
#top-pickup {
  width: 91%;
  margin: 0 auto;
  border-top: 1px solid var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
}
#top-pickup .inbox {
  position: relative;
}
#top-pickup .inbox .ill-box {
  position: absolute;
  width: 25%;
  left: -2rem;
  bottom: -7rem;
}
#top-pickup .inbox .com-btn {
  margin: 3rem auto;
}

#top-concept .top-box .img-box {
  width: 80%;
  margin: 3rem auto;
}
#top-concept .top-box .img-02 {
  width: 50%;
  position: relative;
  margin-left: -3rem;
}
#top-concept .btm-box {
  width: 100%;
  margin-top: 3rem;
}
#top-concept .btm-box ul {
  overflow-x: auto;
  padding: 2rem;
  display: flex;
  gap: 2rem;
}
#top-concept .btm-box ul li {
  flex-shrink: 0;
  width: 15rem;
  border: 3px solid var(--main-color);
}
#top-concept .btm-box .ill-01 {
  width: 30%;
  top: -10rem;
  right: 2rem;
}
#top-concept .btm-box .ill-02 {
  width: 20%;
  bottom: -8rem;
  left: 2rem;
}

#top-brand {
  margin-bottom: 0;
}

#top-shop .txt-box .com-btn {
  margin: 3rem auto 0;
}
#top-shop .img-box {
  margin-top: 4rem;
  border-radius: 15rem 0 0 15rem;
  width: 85vw;
  height: 15rem;
  position: relative;
  right: -3rem;
}
#top-shop .ill-01 {
  width: 25%;
  bottom: -5rem;
  left: -2rem;
}

#top-column {
  padding-top: 0;
}

#common-contact {
  position: relative;
  width: 92%;
  margin: 0 auto 7rem;
}
#common-contact .ill-01 {
  width: 20%;
  top: 0;
  right: 10%;
}
#common-contact .inbox {
  display: grid;
  padding: 3rem 2rem 7rem;
  gap: 3rem;
  margin-top: 3rem;
}
#common-contact .inbox .contact-info {
  gap: 2rem;
}
#common-contact .inbox .ill-02 {
  width: 25%;
  bottom: 1rem;
  left: 2rem;
}

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

#footer {
  padding: 6rem 0;
  position: relative;
  background: url(../img/common/ft-bg.jpg) center/cover;
}
#footer .ft-area {
  display: grid;
  justify-items: center;
  gap: 3rem;
}
#footer .ft-area .ft-logo {
  width: 40%;
  display: block;
}
#footer .ft-area .ft-logo img {
  display: block;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: center;
  gap: 2.5rem;
}
#footer .ft-area .ft-le .ft-add {
  width: 85%;
}
#footer .ft-area .ft-ri {
  display: grid;
  justify-items: center;
  gap: 3rem;
}
#footer .ft-area .ft-ri .ft-nav {
  display: flex;
  align-items: start;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 2px solid var(--accent-color);
}
#footer .ft-area .ft-ri .ft-nav .nav-list {
  display: grid;
  gap: 2rem;
  font-size: 1.4rem;
}
#footer .ft-area .ft-ri .ft-nav .nav-list .nav-item {
  line-height: 1;
}
#footer .ft-area .ft-ri .ft-nav .sub-nav-li {
  font-size: 1.3rem;
}
#footer .copyright {
  font-size: 1rem;
  font-weight: 400;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#about-message {
  width: 92%;
  margin: 0 auto;
  border-bottom: 1px solid var(--accent-color);
}
#about-message .inbox {
  width: 92%;
}
#about-message .inbox .img-box {
  width: 80%;
  margin: 3rem auto;
}
#about-message .inbox .img-02 {
  width: 60%;
  position: relative;
  left: -4rem;
}
#about-message .inbox .ill-01 {
  top: 25rem;
  right: 35rem;
}
#about-message .inbox .ill-02 {
  right: -10rem;
  top: 10rem;
}

#about-profile .img-box {
  width: 80vw;
  height: 12rem;
  position: relative;
  left: -3rem;
  border-radius: 0rem 20rem 20rem 0;
  margin-top: 3rem;
}
#about-profile .com-txt-box {
  margin-left: auto;
  min-height: 400px;
}
#about-profile .com-txt-box .name {
  margin-bottom: 3rem;
}
#about-profile .ill-01 {
  top: 5rem;
  right: 3rem;
  z-index: 20;
  width: 15%;
}
#about-profile .ill-02 {
  width: 25%;
  bottom: -5rem;
  right: -2rem;
  z-index: 20;
}

#about-faq .ill-01 {
  width: 20%;
  top: -5rem;
  right: -3rem;
}
#about-faq ul {
  gap: 4rem;
}
#about-faq ul li {
  border-left: 2px solid var(--main-color);
}
#about-faq ul li h4 {
  padding: 2rem;
  padding-left: 5rem;
  position: relative;
}
#about-faq ul li h4::after {
  position: absolute;
  line-height: 1;
  left: 1rem;
  top: 2rem;
  font-size: 3rem;
  content: "Q";
  font-family: var(--en-font);
  color: var(--accent-color);
}
#about-faq ul li .com-txt {
  padding: 2rem;
  padding-left: 5rem;
  position: relative;
}
#about-faq ul li .com-txt::after {
  position: absolute;
  line-height: 1;
  left: 1.5rem;
  top: 2rem;
  font-size: 3rem;
  content: "A";
  font-family: var(--en-font);
  color: var(--accent-color);
}

#pickup-detail {
  padding-bottom: 10rem;
}
#pickup-detail .pickup-box {
  display: grid;
  gap: 4rem 0;
}
#pickup-detail .pickup-box .txt-box {
  gap: 2rem;
}
#pickup-detail .pickup-box .txt-box .com-txt {
  padding: 2rem 2rem;
}
#pickup-detail .pickup-box .img-li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem 0;
}
#pickup-detail .pickup-box .img-li .com-img {
  width: 48%;
}
#pickup-detail .pickup-box .com-btn {
  margin-left: auto;
}

#brand-detail {
  padding-bottom: 12rem;
}
#brand-detail .brand-box {
  display: grid;
  gap: 2rem 0;
}
#brand-detail .brand-box .com-txt {
  padding: 2rem 2rem;
}
#brand-detail .brand-box .img-box {
  gap: 3rem;
  margin: 3rem auto 0;
}
#brand-detail .brand-box .img-box .com-img {
  width: 100%;
}
#brand-detail .ttl02 {
  padding-left: 6rem;
  position: relative;
  margin: 4rem 0rem 2rem;
}
#brand-detail .ttl02::after {
  content: "";
  display: block;
  width: 5rem;
  height: 1px;
  position: absolute;
  background: var(--accent-color);
  inset: 0 auto 0 0;
  margin: auto 0;
}
.ttl-bd {
  padding-left: 2rem;
  border-left: 2px solid var(--accent-color);
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv-area {
  padding: 10rem 0rem 8rem;
  background: url(../img/sv/bg.jpg) center/cover;
}
.sv-area .sv .sv-img {
  width: 90%;
  margin-left: auto;
}
.sv-area .sv .sv-catch {
  position: absolute;
  bottom: -4rem;
  left: 0;
  width: 80%;
  height: 7rem;
  font-size: 2.5rem;
}
.sv-area .ill-01 {
  width: 9%;
  top: 7rem;
  left: 5%;
}
.sv-area .ill-02 {
  width: 10%;
  bottom: -2rem;
  left: 7.5%;
}
.sv-area .ill-03 {
  width: 7%;
  right: 9.9%;
  bottom: 3rem;
}

/*---------------------------△△---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: grid;
  gap: 1rem;
  font-size: 3.5vw;
  margin-bottom: 1rem;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box time {
  font-weight: 500;
}
#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: grid;
  gap: 1rem;
  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 {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw 1vw;
  font-size: 3.3vw;
}
#detail .detail-box .data-box .tag-list .tag a {
  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---▽▽------------------------*/