@charset "utf-8";
/* CSS Document */

*{
	margin: 0;
	padding: 0;
    word-break: break-all;
}

html { 
	overflow-y: scroll;
	overflow-x: hidden;
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
}


body {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 1.35rem;/*16*/
	/*-webkit-text-size-adjust: none;*/
	line-height: 1.5;
	color: #000000;
	overflow: hidden;
}

html.is-open {
	overflow: hidden;
}

.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.eb-garamond {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.shippori-mincho-b1-medium {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
}

.zen-old-mincho {
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
}

.oooh-baby-regular {
  font-family: "Oooh Baby", cursive;
  font-weight: 400;
  font-style: normal;
}

.weight-400{
	font-weight: 400;
}

.weight-500{
	font-weight: 500;
}

.weight-700{
	font-weight: 700;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: top;
	vertical-align: bottom;
}
a {
	/*overflow: hidden;*/
	outline: none;
	color: #000000;
	text-decoration:none;
}
.pc_hide {
}

.sp_hide {
	display: none !important;
}

a {
	opacity: 1;/*-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;*/
}

a:hover {
	text-decoration: none;
}

/* iOSでのデフォルトスタイルをリセット */
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;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}


select::-ms-expand {
    display: none;
}

h1,h2,h3,h4{
	font-weight: 500;
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

#all_wrap,
#contents{
	overflow: hidden;
}

ol, ul {
    list-style: none;
	box-sizing: border-box;
}

/*===================================
	仕様
=====================================*/

.fadeUpTrigger{
	opacity: 0;
}


.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(75px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*===================================
	#header
=====================================*/

#header{
	background: #0f0f0f;
	position: relative;
}

#header .head-inner{
	width: 100%;
	height: 55px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.head-inner h1.head_logo{
	width: 70.5555%;/*508*/
	margin-left: 4.1666%;/*30*/
}

.head-inner h1.head_logo img{
	width: 100%;
	height: auto;
}

.head-inner .contact_btn{
	display: none;
}

.head-inner .openbtn1{
	width: 6.3888%; /* 46px基準 */
	position: absolute;
	top: 14px;
	right: 4.4444%;/*32*/
	z-index: 1000;
	cursor: pointer;
}

.head-inner .openbtn1::before{
	content: 'MENU';
  font-family: "EB Garamond", serif;
	font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
	font-size: 0.85rem;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
	position: absolute;
	bottom: -0.65rem;
	left: 50%;
	transform: translate(-50%, 100%);
	z-index: 1;
}

html.is-open .head-inner .openbtn1::before{
	content: '閉じる';
}

/* 比率固定コンテナ */
.head-inner .openbtn1 .toggle-box{
	width: 100%;
	height: auto;
	aspect-ratio: 46 / 30;
	position: relative;
}

/* 線共通 */
.head-inner .openbtn1 .toggle-box span{
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;              /* ← ズレない太さ */
	background: #fff;
	transition: all .4s ease;
}

/* 上 */
.head-inner .openbtn1 .toggle-box span:nth-child(1){
	top: 0%;
}

/* 中 */
.head-inner .openbtn1 .toggle-box span:nth-child(2){
	top: 50%;
	transform: translateY(-50%);
}

/* 下 */
.head-inner .openbtn1 .toggle-box span:nth-child(3){
	bottom: 0%;
}

/* OPEN時：×に変形 */
html.is-open .head-inner .openbtn1 .toggle-box span:nth-child(1){
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

html.is-open .head-inner .openbtn1 .toggle-box span:nth-child(2){
	opacity: 0;
}

html.is-open .head-inner .openbtn1 .toggle-box span:nth-child(3){
	bottom: auto;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

.head-inner .global_nav{
    z-index: 900;
    overflow: hidden;
    width: 100%;
    height: calc(100% - 55px);
	background: #41403f;
    position: fixed;
    top: 55px;
    right: 0;
    transform: translateX(100%);
    transition:  transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-open .head-inner .global_nav{
	z-index: 999;
	transform: translateX(0);
/*	height: 100%;*/
	box-sizing: border-box;
	overflow-y: scroll;
}

.head-inner .global_nav ul.gnav_list{
	list-style: none;
	width: 90.2777%;/*650*/
	margin: 1.45rem auto 180px;
}

.head-inner .global_nav ul.gnav_list li{
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

.head-inner .global_nav ul.gnav_list li a{
	display: flex;
	align-items: center;
	width: 100%;
	height: 65px;
	background: url("images/link_ico_wh.webp")no-repeat right 5.3846% center;/*35*/
	background-size: 8.6153% auto;/*56*/
	padding-left: 5.8461%;/*38*/
	box-sizing: border-box;
	font-size: 1.75rem;
	line-height: 1;
	color: #fff;
}

/*===================================
	.main_wrap
=====================================*/

.main_wrap{
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	background: url("images/sp-main_bg.webp")no-repeat;
	background-size: cover;
}

.main_wrap .main_inner{
	width: 86.1111%;/*620*/
	height: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.main_wrap .main_inner h1.catchphrase{
	font-size: 1.5rem;
	line-height: 1.75;
	text-align: center;
	color: #fff;
}

.main_wrap .main_inner h1.catchphrase span{
	font-size: 3.0rem;
	line-height: 1.3;
	letter-spacing: 0.1em;
}

.main_wrap .main_inner p.center_txt{
	font-size: 1.2rem;
	line-height: 1.75;
	text-align: center;
	color: #fff;
	padding: 34px 0 35px;
}

.main_wrap .main_inner .anchor_btn{
	width: 66.1290%;/*410*/
}

.main_wrap .main_inner .anchor_btn a{
	display: flex;
	align-items: center;
	width: 100%;
	height: 47px;
	background: url("images/anchor_ico.webp")no-repeat rgba(255,255,255,0.8) right 15.8536% center;/*65*/
	background-size: 2.9268%;/*12*/
	padding-left: 28.7804%;/*118*/
	box-sizing: border-box;
	font-size: 1.4rem;
	line-height: 1;
	color: #333333;
	position: relative;
}

.main_wrap .main_inner .anchor_btn a::before{
	content: '';
	background: rgba(255,255,255,0.5);
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0.35rem;
	right: -0.35rem;
	z-index: 1;
}

.main_wrap .main_inner .anchor_btn a::after{
	content: '';
	background: rgba(255,255,255,0.5);
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: -0.35rem;
	left: 0.35rem;
	z-index: 1;
}

/*===================================
	#footer
=====================================*/

#footer{}

#footer .foot_main{
	padding: 44px 0 6.05rem;
	background: url("images/sp-foot_bg.webp")no-repeat center center;
	background-size: cover;
}

.foot_main .foot_inner{
	width: 86.1111%;/*620*/
	margin: 0 auto;
}

.foot_main .foot_inner h2.h2-midashi{
	font-size: 5.5rem;
	line-height: 1;
	color: #bda719;
	text-align: center;
}

.foot_main .foot_inner p.txt01{
	margin-top: 23px;
	font-size: 1.4rem;
	line-height: 1;
	color: #fff;
	text-align: center;
}

.foot_main .foot_inner .contact_area{
	width: 100%;
	margin-top: 2.85rem;
	background: rgba(255,255,255,0.7);
	padding: 22px 0 32px;
	position: relative;
}

.foot_main .foot_inner .contact_area::before{
	content: '';
	background: rgba(255,255,255,0.5);
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0.75rem;
	right: -0.75rem;
	z-index: 1;
}

.foot_main .foot_inner .contact_area::after{
	content: '';
	background: rgba(255,255,255,0.5);
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: -0.75rem;
	left: 0.75rem;
	z-index: 1;
}

.foot_main .foot_inner .contact_area .c_inner{
	width: 81.1290%;/*503*/
	margin: 0 auto;
}

.foot_main .foot_inner .contact_area .c_inner .midashi_area{
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(0,0,0,0.5);
	text-align: center;
}

.foot_main .foot_inner .contact_area .c_inner .midashi_area p.txt_lv1{
	font-size: 1.35rem;
	line-height: 1;
	color: #222222;
}

.foot_main .foot_inner .contact_area .c_inner .midashi_area p.txt_lv2{
	margin-top: 9px;
	font-size: 1.25rem;
	line-height: 1;
	color: #222222;
}

.foot_main .foot_inner .contact_area .c_inner .flex_area{
	width: 100%;
	margin-top: 21px;
}

.foot_main .foot_inner .contact_area .c_inner .flex_area ul.tel_list01{
	list-style: none;
	width: 100%;
}

.foot_main .foot_inner .contact_area .c_inner .flex_area ul.tel_list01 + ul.tel_list01{
	margin-top: 10px;
}

.foot_main .foot_inner .contact_area .c_inner .flex_area ul.tel_list01 li{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.foot_main .foot_inner .contact_area .c_inner .flex_area ul.tel_list01 li + li{
	margin-top: 10px;
}

.foot_main .foot_inner .contact_area .c_inner .flex_area ul.tel_list01 li .tenpo_name{
	width: 41.7495%;/*210*/
}

.foot_main .foot_inner .contact_area .c_inner .flex_area ul.tel_list01 li .tenpo_name p{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 25px;
	background: #fff;
	border: 1px solid rgba(0,0,0,0.5);
	border-radius: 0.25rem;
	font-size: 1.15rem;
	line-height: 1;
	color: #222222;
}

.foot_main .foot_inner .contact_area .c_inner .flex_area ul.tel_list01 li .telnum{
	width: fit-content;
}

.foot_main .foot_inner .contact_area .c_inner .flex_area ul.tel_list01 li .telnum a{
	font-size: 2.25rem;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #222222;
}

/**/

#footer .copyright{
	width: 100%;
	height: 40px;
	background: #222222;
	display: flex;
	justify-content: center;
	align-items: center;
}

.copyright p{
	font-size: 1.0rem;
	line-height: 1;
	color: #fff;
}