@charset "UTF-8";
/* CSS Document */
html{
	height:100%;
	overflow:auto;
}
body{
    width: 100%;
    font-size: min(4vw, 17px);
    line-height: 180%;
	font-family:"Noto Serif JP" , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" ,Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto ,  "ヒラギノ角ゴ Pro" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;/*適宜変更*/
	font-weight:400;
    color: #000000;
	/*表示時の簡単なアニメーション　適宜変更*/
	animation-name: fadein;
    animation-duration: 1000ms;
    animation-timing-function: linear;
}
@keyframes fadein {
    0% {opacity:0;}
    35% {opacity:0;}
    100% {opacity:1;}
}
*{
	box-sizing:border-box;
	margin:0px;
	padding:0px;
}
:not(input){
	caret-color: rgba(0,0,0,1);
}
a {
    overflow: hidden;
    outline: none;
}
a:link,a:hover,a:visited{
	text-decoration:none;
}
a,a::before,a::after{
	transition: all ease 300ms;
}
li{
	list-style-type:none;
}
img{
	vertical-align: bottom;
	border-style:none;
	box-shadow: #000 0 0 0;
	height:auto;
	width:100%;
}
img:not([src*=".svg"]) {
    width: 100%;
}
input[type="text"]:focus {
  outline: 0;
}
x:-moz-any-link, x:default {
	box-shadow: #000 0 0 0;
}
table,th,td{
border-collapse: collapse;
border: 0 ;
}
input::-webkit-input-placeholder,
input:-ms-input-placeholder,
input::-moz-placeholder{
    color: #ccc;
    font-weight: normal;
}
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
textarea{
	resize: none;
}
/*簡易アニメーション用*/
.move{
    transition: all ease-out 500ms;
    opacity: 0;
    transform: translateY(50px);
}
.moved{
    opacity: 1;
    transform: translateY(0);
}
.font_m{
  font-family: "Marcellus", serif;
}
/*---------------------------------------------
    header
---------------------------------------------*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100svw;
    padding: min(2vw, 1em) 0;
    z-index: 1000;
    transition: all ease 400ms;
}
.h_logo {
    width: min(25vw, 160px);
    min-width: min(25vw, 160px);
    padding-top: min(1vw, 1em);
}
.h_nav_wrap {
    display: flex;
    width: 94%;
    margin: 0 auto;
    justify-content: space-between;
}
.h_nav {
    display: flex;
    flex-wrap: wrap;
    font-size: min(3vw, 16px);
    justify-content: flex-end;
}
.h_nav a{
    color: #fff;
    text-shadow: 3px 3px 7px rgba(69, 60, 73, 0.25);
}
:where(header.scrolled) .h_nav a{
    color: #333;
    text-shadow: none;
}
.fix_nav {
    position: fixed;
    right: 0;
    z-index: 1000;
}
.fix_list {
    position: relative;
    letter-spacing: 1.5px;
}
.fix_nav a{
    display: block;
    background: #80674a;
    color: #fff;
    padding: min(4vw, 20px) 1em;
}
.fix_nav a:hover{
    background-color: #fff;
    color: #80674a;
}
.h_list {
    padding: 0 min(2vw, 1em);
    letter-spacing: min(0.2vw, 1.5px);
    line-height: 200%;
    position: relative;
}
.fix_list:not(:last-child)::after {
    content: "";
    display: block;
    height: 1px;
    width: 50%;
    background: #fff;
    position: absolute;
    margin: auto;
    bottom: 0;
    left: 0;
    right: 0;
}
@media screen and (min-width:641px) {
    .fix_list{
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;        
    }
}
@media screen and (max-width:640px) {
body {
        padding-bottom: 55px;
}
.fix_nav {
    width: 100%;
    display: flex;
    bottom: 0;
}
.fix_list {
    width: calc(100% / 3);
    text-align: center;
}
.fix_list:not(:last-child)::after {
    width: 1px;
    height: 100%;
    left: auto;
}
header.scrolled {
    background: #fff;
}
.h_list::after {
    content: "";
    width: 1px;
    height: 1em;
    display: block;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.h_nav{
    align-content: center;
}
:where(header.scrolled) .h_nav a {
    color: #80674a;
}
:where(header.scrolled) .h_list::after {
    background: #80674a;
}
.h_list:nth-of-type(4),
.h_list:nth-of-type(6) {
    padding-right: 0;
}
.h_list:nth-of-type(4)::after,
.h_list:nth-of-type(6)::after{
    display: none;
    }
}
/*---------------------------------------------
    main
---------------------------------------------*/
@media screen and (min-width:641px) {
main{    
    background: url(../img/bg_page.webp) repeat-y center / 100% auto;
}
}

/*---------------------------------------------
    sec_fv
---------------------------------------------*/
.sec_fv {
    width: 100vw;
    height: 100svh;
    background: url(../img/fv.webp) no-repeat center top / cover;
}

.fv_ttl_wrap {
    color: #fff;
    position: absolute;
    bottom: min(4vw, 50px);
    left: 3%;
}
.fv_ttl {
    font-size: min(19vw, 120px);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 3px 3px 7px rgba(69, 60, 73, 0.25);
    line-height: 90%;
    margin-top: min(3vw, 18px);
}
.fv_subttl{
    font-size: min(5vw, 24px);
    font-weight: 300;
}
.fv_ttl_caption {
    font-size: min(4vw, 20px);
    margin-top: min(2vw, 15px);
}
.fv_subttl,
.fv_ttl_caption{
    text-shadow: 2px 2px 3px rgba(69, 60, 73,0.45);
    line-height: 100%;
}

@media screen and (max-width:640px) {
.sec_fv {
    height: calc(100svh - calc(8vw + 1.6em));
}
.fv_ttl_wrap {
    bottom: 96px;
}
.fv_subttl,
.fv_ttl_caption {
    text-shadow: none;
}
}

/*---------------------------------------------
    sec_plan
---------------------------------------------*/
.plan_head_txt {
    background: linear-gradient(to right, rgba(128, 103, 74, 1) 0%, rgba(184, 130, 86, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.plan_head {
    text-align: center;
    font-size: min(5.5vw,36px);
    line-height: 200%;
    padding: min(14vw,90px) 5%;
}

.plan_anchor_wrap,
.flow_head_wrap{
    width: min(96%, 1000px);
    margin: 0 auto;
    padding-bottom: 1px;
}
.plan_ttl,
.flow_ttl{
    color: #80674a;
    font-size: 73px;
    font-weight: normal;
    line-height: 100%;
    margin-bottom: min(4vw, 25px);
}
.anchor_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: min(20vw,180px);
}
.anchor_list {
    width: calc(100% / 3 - 6px);
    height: 440px;
    position: relative;
    overflow: hidden;
}
.p_anchor {
    display: block;
    height: 100%;
    transition: all ease 500ms;
}
.p_anchor::after {
    content: "";
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(230, 212, 204, 0) 50%, rgba(212, 180, 167, 0.8) 87%);
    background: -o-linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(230, 212, 204, 0) 50%, rgba(212, 180, 167, 0.8) 87%);
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(230, 212, 204, 0) 50%, rgba(212, 180, 167, 0.8) 87%);
    display: block;
    width: 100%;
    height: 90%;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all ease 300ms;
}
:where(.p_anchor)[href="#plan_photo"] {
    background: url(../img/plan01.webp) no-repeat center / auto 100%;
}
:where(.p_anchor)[href="#plan_pure"] {
    background: url(../img/plan02.webp) no-repeat center / auto 100%;
}
:where(.p_anchor)[href="#plan_10p"] {
    background: url(../img/plan03.webp) no-repeat center / auto 100%;
}
:where(.p_anchor):hover{
    background-size: auto 110%;
}
:where(.p_anchor):hover::after {
    transform: scale(1,1.2);
    transform-origin: bottom;
}
.anchor_name_wrap {
    position: absolute;
    z-index: 2;
    bottom: min(3vw, 20px);
    left: 3%;
    width: 94%;
    color: #fff;
}
.anchor_num {
    font-size: min(3.5vw, 18px);
    line-height: 100%;
    margin-bottom: min(1vw, 20px);
}
.anchor_name {
    font-weight: normal;
    text-shadow: 2px 2px 11px rgba(0, 0, 0, 0.45);
    font-size: min(5vw,25px);
    line-height: 140%;
    min-height: 75px;
}
.anchor_viewmore {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.anchor_viewmore::after {
    content: '▼';
    font-size: 50%;
    display: flex;
    border: 1px solid;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    width: 30px;
    justify-content: center;
    align-items: center;
    margin-left: 1.5em;
    line-height: 200%;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width:640px) {
.anchor_list {
    width: 100%;
    height: max(150px, 40vw);
    margin-bottom: 1vw;
    overflow: hidden;
}
.anchor_name {
    min-height: auto;
}
.p_anchor {
    background-size: cover;
    background-position: top center;
}
:where(.p_anchor)[href="#plan_pure"] {
    background-size: 190%;
    background-position: center;
}
:where(.p_anchor)[href="#plan_10p"] {
    background-position: center;
}
.p_anchor::after {
    transform: scale(1, 1.8);
    transform-origin: bottom;
    opacity: 0.7;
}
.anchor_viewmore {
    position: absolute;
    bottom: 0;
    right: 0;
}
.anchor_viewmore::after{
    width: 25px;
    font-size: 9px;
}
}
.arc_plan{
    padding-bottom: min(8vw, 120px);    
}
.plan_wrap {
    position: relative;
    padding-top: min(18vw, 135px);
    margin-top: max(-18vw, -135px);
}
.plan_inr{
    position: relative;
    z-index: 2;
}
.plan_wrap::after {
    content: "";
    display: block;
    width: min(100%, 1190px);
    height: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    background: #fff;
    z-index: 1;
}
.plan_wrap:first-child::after {
    height: calc(100% - 32vw);
}
.plan_img_wrap {
    position: relative;
    padding-bottom: min(10vw, 90px);
    z-index: 2;
}
:where(#plan_pure) .plan_img_wrap {
    padding-bottom: min(10vw, 110px);
}
:where(#plan_10p) .plan_img_wrap {
    padding-bottom: min(10vw, 120px);
}
.plan_img{
    width: 60%;
    aspect-ratio:84 / 45;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}
#plan_photo .plan_img{
    background-image: url(../img/plan01.webp);
}
#plan_pure .plan_img{
    background-image: url(../img/plan02.webp);
}
#plan_10p .plan_img{
    background-image: url(../img/plan03.webp);
}
.plan_inr {
    position: relative;
    z-index: 2;
    width: min(94%, 1000px);
    margin: 0 auto;
}
.plan_txt_wrap {
    color: #80674a;
    background: #fff;
    width: min(100%, 680px);
    position: absolute;
    right: max(0px, calc(calc(100vw - 1190px) / 2));
    bottom: 0;
    padding: min(7vw, 40px) min(5vw, 100px);
    z-index: 2;
}
:where(#plan_photo) .plan_txt_wrap {
    bottom: 45px;
}
:where(#plan_10p) .plan_txt_wrap {
    bottom: 75px;
}
.plan_num {
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 30px;
}
.plan_name {
    font-weight: normal;
    font-size: 30px;
    line-height: 140%;
    margin-bottom: 15px;
}
.plan_txt {
    font-size: min(3.5vw, 18px);
    line-height: 180%;
    max-width: 370px;
}

.include_ttl {
    color: #80674a;
    font-size: min(4vw, 21px);
    line-height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    margin-bottom: min(5vw, 35px);
}
.include_ttl::after {
    content: "";
    height: 1px;
    width: calc(100% - min(44vw, 232px));
    background: #80674a;
}

.plan_include {
    border-bottom: 1px solid #80674a;
    padding-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
}
.include_list {
    background: #b79b8d;
    color: #fff;
    text-align: center;
    margin-right: min(2%, 12px);
    min-width: 236px;
    padding: 0 min(2vw,25px);
    height: min(20vw, 56px);
    border-radius: min(10vw, 28px);
    margin-bottom: min(2vw, 12px);
    font-size: min(3.5vw, 18px);
    line-height: 120%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.plan_price_wrap {
    padding-top: min(12vw, 75px);
    padding-bottom: min(24vw, 140px);
}
.plan_price {
    display: flex;
    justify-content: center;
    color: #80674a;
    align-items: flex-end;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}
.s_price {
    font-size: min(5vw, 24px);
}
.price {
    font-size: min(14vw, 100px);
}
.yen {
    font-size: 50%;
}
.tax {
    font-size: min(2.5vw, 18px);
    position: absolute;
    top: max(-0.5vw, -6px);
    right: 0;
    line-height: 100%;
}
:where(#plan_10p) .tax{
    right: min(7vw, 50px);    
}
.yoyaku_btn {
    color: #fff;
    background: #80674a;
    font-size: min(5.5vw, 36px);
    line-height: 100%;
    display: block;
    text-align: center;
    width: min(75vw, 490px);
    margin: min(8vw, 60px) auto 0;
    padding: min(5vw, 20px) min(5vw, 10px);
    box-shadow: 0 0 0 min(0.7vw, 5px) #80674a;
    border: 1px solid #fff;
}
.yoyaku_btn:hover {
    background: #fff;
    color: #80674a;
}
@media screen and (max-width:640px) {
.plan_txt_wrap {
    position: static;
}
.plan_num {
    font-size: min(3.5vw, 20px);
    line-height: 100%;
    margin-bottom: min(2.5vw, 30px);
}
.plan_name {
    font-weight: normal;
    font-size: min(6vw, 30px);
    line-height: 140%;
    margin-bottom: min(3vw, 15px);
}
.plan_img {
    width: 100%;
    aspect-ratio: 35 / 44;
}
.include_list {
    width: 48%;
    min-width: auto;
}
}
/*---------------------------------------------
    sec_point
---------------------------------------------*/
.sec_point {
    background: #b79b8d;
    padding-top: min(8vw,50px);
    padding-bottom: min(12vw,80px);
    overflow: hidden;
}
.point_head_ttl {
    color: #fff;
    text-align: center;
    font-weight: normal;
    font-size: min(7vw,48px);
    line-height: 100%;
    padding: min(10vw,85px) 0 min(5vw,55px);
}
.parallax_wrap{
    position: relative;
    margin-bottom: min(12vw, 100px);
}
.parallax_wrap::before{
    content: "";
    position: absolute;
    width: 100%;
    height: min(20vw,225px);
    background: url(../img/arc_point.webp) no-repeat top center / 100% 100%;
    z-index: 2;
    top: -1px;
}

.slide_txt_inr {
    display: flex;
    animation: SlideInfinite 25s linear infinite both;
}
.slide_txt {
    color: #5c4e47;
    line-height: 100%;
    font-size: min(5vw,40px);
    white-space: nowrap;
    font-weight: 300;
    border: min(0.3vw,2px) solid;
    border-left: none;
    border-right: none;
    padding: min(3vw, 12px) 0;
}
@keyframes SlideInfinite {
    0%{transform: translateX(0);}
    100%{transform: translateX(max(-226.825vw,-1814.6px));}
}

.point_inr {
    width: min(94%, 1000px);
    margin: 0 auto;
    color: #fff;
}
.point_wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding-bottom: min(8vw, 55px);
}
.point_txt_wrap {
    width: 50%;
}
@media screen and (max-width: 640px) {
    .parallax_wrap{
        margin-bottom: 0;
    }
.point_txt_wrap {
    margin: 20vw 0;
}
}
.point_img {
    width: 41%;
    margin-right: 9%;
}
.point_num {
    font-weight: 100;
    position: relative;
    padding-bottom: min(8vw, 60px);
    font-size: min(5vw, 17px);
    letter-spacing: 1px;
}
.point_num::after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: min(6vw, 30px);
    background: #fff;
    bottom: min(1vw, 15px);
    left: 2.5vw;
}
.point_ttl {
    font-weight: normal;
    font-size: min(5.8vw, 24px);
    line-height: 180%;
    margin-bottom: min(5vw, 30px);
}
.point_txt {
    line-height: 200%;
}
@media screen and (max-width:640px) {
    .point_inr{
        width: 100%;
    }
.point_wrap {
    flex-direction: column;
}
.point_txt_wrap, .point_img {
    width: 100%;
        margin-right: 0;
        text-align: center;
}
.point_txt {
    line-height: 200%;
    margin: 0 3%;
    text-align: left;
}
.point_num::after {
    left: 0;
    right: 0;
    margin: auto;
}
.point_ttl {
    line-height: 160%;
}
}

/*---------------------------------------------
    sec_flow
---------------------------------------------*/
.sec_flow {
    background: #fff;
    padding: min(12vw,90px) 0 min(15vw,75px);
}
.flow_head_wrap{
    color: #80674a;    
}
.flow_head_scroll{
    font-size: min(5vw,20px);
    margin-top: min(4vw,30px);
    line-height: 100%;
    overflow: hidden;
    position: relative;
}
.flow_head_scroll::after{
    content: "";
    display: block;
    width: 264px;
    height: 16px;
    margin-top: -5px;
    background: url(../img/scroll_arw.webp) no-repeat center bottom / contain;
    transition: all ease 500ms;
    transform: translateX(-180px);
    transition-delay: 500ms;
}
.flow_head_scroll.moved::after{
    transform: translateX(0);
}

.flow_slider_wrap {
    margin-top: min(6vw, 35px);
}
#flow_slider {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    width: 100vw;
    padding-left: max(2vw, calc(calc(100vw - 1000px) / 2));
    padding-right: 2vw;
}
.flow_slide {
    width: 28%;
    min-width: 28%;
    height: 100%;
    display: flex;
    line-height: 1;
    flex-direction: column;
    margin-right: min(5vw, 30px);
    margin-bottom: min(2vw, 30px);
}
.flow_num {
    font-size: min(10vw, 83px);
    color: #80674a;
    margin-bottom: min(2.5vw, 10px);
}
.flow_img {
    margin-bottom: min(4vw, 25px);
}
.flow_name {
    font-weight: normal;
    font-size: min(5vw, 24px);
    margin-bottom: min(3vw,18px);
}
.flow_txt {
    line-height: 180%;
}
.flow_slider_wrap .yoyaku_btn {
    font-size: min(5vw, 23px);
    max-width: 330px;
    letter-spacing: 1.5px;
    padding: min(5vw, 18px) min(5vw, 10px);
    box-shadow: 0 0 0 min(0.7vw, 3px) #80674a;
}

@media screen and (max-width:840px) {
.flow_slide {
    width: 70%;
    min-width: 70%;
}
}
@media screen and (max-width:640px) {
.sec_point,.point_wrap{
    padding-bottom: 0;
}
}

/*---------------------------------------------
    sec_concept
---------------------------------------------*/
.sec_concept{
    background: url(../img/bg_concept.webp) no-repeat center / cover;
    color: #fff;
    position: relative;
}
.concept_inr {
    width: min(96%, 1000px);
    margin: 0 auto;
    display: flex;
    padding: min(12vw, 82px) 0;
    justify-content: space-between;
    flex-wrap: wrap;
}
.concept_data {
    width: min(48%,390px);
}
.concept_photo{
    width: min(48%,402px);    
}
.concept_ttl, .partyhall_ttl {
    font-size: min(16vw,73px);
    font-weight: normal;
    line-height: 100%;
    margin: min(4vw, 20px) 0 min(8vw, 30px);
}
.concept_subttl {
    font-size: min(8vw,29px);
    line-height: 160%;
    margin-bottom: min(6vw, 40px);
}
@media screen and (max-width:640px) {
.concept_data {
    width: 100%;
    margin-bottom: 15vw;
}
.concept_photo{
    width: 100%;
        position: relative;
        z-index: 2;
}
.sec_concept::after{
    content: "";
    display: block;
    z-index: 1;
    position: absolute;
    width: 100vw;
    bottom: 0;
    left: 0;
    background: #fff;
    height: 70vw;
}
}

/*---------------------------------------------
    sec_partyhall
---------------------------------------------*/
.sec_partyhall {
    background: #fff;
    padding-bottom: min(18vw, 84px);
}
.art_partyhall{
    position: relative;
}
.partyhall_inr {
    width: min(96%, 1000px);
    margin: 0 auto;
    display: flex;
    padding: min(12vw, 82px) 0;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    color: #80674a;
}
.partyhall_data {
    width: min(46%, 420px);
}
.partyhall_photo{
    width: min(52%, 514px);
}
.partyhall_ttl{
     text-align: right;
}
.partyhall_subttl {
    font-size: min(6vw,20px);
    line-height: 160%;
     text-align: right;
    margin-bottom: min(4vw, 40px);
}
.partyhall_txt {
    max-width: 402px;
    margin-left: auto;
    margin-bottom: min(7vw, 88px);
}
.cuisine_photo {
    display: flex;
    width: min(100%, 86vw);
    margin-left: auto;
}
.cuisine_photo .photo:not(:first-child){
    margin-left: 10px;
}

@media screen and (max-width:640px) {
.partyhall_inr {
    flex-direction: column;
}
.partyhall_data {
    width: 100%;
        margin-bottom: 2vw;
}
.partyhall_photo {
    width: 100%;
    clip-path: polygon(20% 0%, 95% 0%, 95% 100%, 20% 100%);
    margin-left: -20%;
        z-index: 1;
        margin-bottom: 50vw;
}
.partyhall_txt {
    background: #fff;
    position: absolute;
    width: 71%;
    right: 0;
    padding: 1em 2% 1em 5%;
    z-index: 3;
    bottom: 50vw;
}
.cuisine_photo {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}
}

/*---------------------------------------------
    sec_voice
---------------------------------------------*/
.sec_voice{
    background: #80674a;
    position: relative;
}
.sec_voice::before{
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: min(10vw,40px); 
    right: max(0px,calc(calc(100vw - 1200px)/2));
    width: min(60vw,310px);
    aspect-ratio:31/26;
    background: url(../img/voice_deco.svg) no-repeat center / contain;
}
.art_voice{
    position: relative;
    z-index: 2;
}
.voice_data {
    color: #fff;
    margin-bottom: min(5vw, 40px);
}
.voice_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.voice{
    width: 48%;
    color: #80674a;
    background: url(../img/bg_voice.webp) no-repeat top left / 100% 100%;
    min-height: 190px;
    margin-bottom: min(4vw,40px);
    padding: 3% min(7%, 35px) 1.5%;
}
.voice_num {
    font-size: 107%;
    line-height: 100%;
    margin-bottom: min(2.5vw, 10px);
}
.voice_num span {
    font-size: 140%;
}
.voice_comment {
    font-size: min(3.5vw, 17px);
}
@media screen and (max-width:760px) {
.voice_list{
    justify-content: center;
}
.voice{
    width: min(100%,480px);
        min-height: auto;
        aspect-ratio: 48 / 19;
        padding-top: 5vw;
}
}
.art_voice .concept_inr {
    padding-bottom: min(6vw, 40px);
}
.sec_voice .parallax_wrap{
    overflow: hidden;
    margin-bottom: 0;
}
.sec_voice .parallax_wrap::before{
    background-image: url(../img/arc_footer.webp);
 }
.voice_f_contents {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.voice_f_inr {
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #80674a;
    text-align: center;
}
.voice_f_contents .yoyaku_btn {
    font-size: min(5vw, 23px);
    max-width: 330px;
    letter-spacing: 1.5px;
    padding: min(5vw, 18px) min(5vw, 10px);
    box-shadow: 0 0 0 min(0.7vw, 3px) #80674a;
}
.voice_f_head{
    font-size: min(4.5vw, 19px);
    margin-bottom: min(4vw,19px);
}
.voice_f_ttl {
    font-size: min(7vw, 26px);
    letter-spacing: 1px;
    margin-bottom: min(5.5vw, 26px);
    text-align: center;
    line-height: 180%;
}

/*---------------------------------------------
    footer
---------------------------------------------*/
footer{
    margin-top: min(12vw, 100px);
}
.f_inr{    
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #80674a;
    padding-bottom: min(7vw, 50px);
}
.f_logo {
    width: min(45vw, 218px);
    margin-bottom: min(4vw, 30px);
}
.tel_num {
    margin-bottom: min(4vw, 15px);
}
.tel_num a.tel_link {
    color: #80684A;
    font-size: min(7vw, 40px);
}
address.address {
    font-style: normal;
    line-height: 160%;
    margin-bottom: min(5vw, 35px);
}
.time_flex {
    display: flex;
    flex-wrap: wrap;
}
.time_txt {
    margin: 0 0.6em;
}
@media screen and (max-width:640px) {
.time_flex {
    flex-direction: column;
}
}


.f_links_wrap {
    border-top: 1px solid #80674a;
    font-family: 'Avenir', "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    padding: min(5vw, 30px) 4vw min(4vw, 50px);
    line-height: 100%;
}
.f_links {
    margin-bottom: min(5vw, 15px);
}
.f_links a,
.copyright{
    color: #666666;
    font-size: 87.5%;
    font-feature-settings: "palt" 1;
}
@media screen and (max-width:640px) {
.copyright {
    display: block;
    text-align: center;
}
}

@media screen and (min-width:641px) {
/*レスポンシブ時：スマホのみ表示する要素*/
	.sp{display: none !important;}
}
@media screen and (max-width:640px) {
/*レスポンシブ時：PCやタブレットでのみ表示する要素*/
	.pc{display: none !important;}
}