@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
:root {
  --main-font-color: #222222;
  --f-f-mincho:"Noto Serif JP", serif;
  --f-f-japanese:"Noto Sans JP", sans-serif;
  --english-font: "Cormorant Infant", serif;
  --english-font-title: "Cormorant Garamond", serif;
  --gold:#6B542C;
  --navy:#30486A;
}
html{
  overflow: auto;
  position: relative;
  min-height: 100%;
  margin-top:0;
  scroll-behavior: smooth;
  font-size:62.5%;
  background-color: #fcfcfc;
  font-family: var(--f-f-mincho);
  line-height: 1.5;
}
body{
  overflow-x: hidden;
  position:relative;
  font-size:1.6rem;
  color:var(--main-font-color);
  font-weight: 400;
  font-style: normal;;
}


#wrap{
  width:100%;
  max-width:1000px;
  margin:0 auto;
}
a:hover{
  opacity: 70%;
}
.over_width{
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);

}
.inner_width{
  width:100%;
  max-width: 1000px;
  margin: 0 auto;
}
.pc_none{
  display: none;
}
/* text-align */
.ta_c{
  text-align: center;
}
.ta_l{
  text-align: left;
}
.ta_r{
  text-align: right;
}

/* header */
.header{
  position:fixed;
  z-index: 10;
  top:0;
  left:0;
  width:100%;
}
.header.active{
  background-color: rgba(0,0,0,0.5);
}
.header.active .header_content{
  padding:16px 2% 16px 2%;
  transition: 1s all;
}
.header_content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:24px 2% 24px 2%;
  width:100%;
}

a.header_logo{
  width:320px;
  height:40px;
  background: url(../images/common/header_logo.png) center center no-repeat;
  background-size: cover;
  display: block;
}
.header_inner{
  width: 85%;
  margin:0 0 0 auto;
  max-width:1000px;
}
ul.nav{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap:36px;
  position: relative;
}
ul.nav li{
  text-align: center;
}

ul.nav li a{
  width:100%;
  text-decoration: none;
  color:#fff;
  font-size:1.6rem;
}
ul.nav li.tel_nav{
  width:200px;
  height:50px;
  background-color: var(--navy);
  line-height: 50px;
  font-size:1.5rem;
  border:1px solid #fff;
  position:relative
}
ul.nav li.tel_nav::before{
  position:absolute;
  content:"";
  width:30px;
  height:30px;
  top:10px;
  left:10px;
  background: url(../images/index/tel_message_icon.png) center center no-repeat;
  background-size: cover;
}
ul.nav li.tel_nav::after{
  position:absolute;
  content:"";
  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
  border-left: 5.7px solid #fff;
  top:19px;
  right:19px;
}
/* 下層ページ色調整 */
body:not(.home) ul.nav li a{
  color:#222222;
}
body:not(.home) ul.nav li.tel_nav a{
  color:#ffffff;
}
body:not(.home) .header_content a.header_logo{
  background: url(../images/common/logo_black.png) center center no-repeat;
  background-size: cover;
}
body:not(.home) .header.active{
  background-color: rgba(255,255,255,0.5);
}
/* メガメニュー */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  /* width: 100vw; */
  max-width: 1280px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  display: none;
  z-index: 1000;
}

.mega-menu ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 30px;
}

ul.nav li.has-mega .mega-menu ul li a {
  color: #222;
  font-size: 1.5rem;
  line-height: 1.4;
}
.mega-menu::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}
.mega-menu a:hover {
  text-decoration: underline;
}
ul.nav li.has-mega:hover .mega-menu,
ul.nav li.has-mega:focus-within .mega-menu {
  display: block;
}
/* ----------------------------------
footer
---------------------------------- */
.footer_info{
  background-color: #F4F3EF;
  display: flex;
  flex-direction: row-reverse;
}
.footer_info img{
  width:50%;
}
.footer_info_detail{
  padding:40px 4.1666vw 60px 60px;
}
.footer_info_detail table tr {
  border-bottom: 1px solid rgba(201, 167, 104, 0.2);
}
.footer_info_detail table tr th{
  width:120px;
  border-bottom:1px solid var(--gold);
  text-align: center;
  color:var(--gold);
}
.footer_info_detail table tr th{
  padding:20px 0;
}
.footer_info_detail table tr td{
  padding:20px 0 20px 1em;
}
footer{
  background: var(--navy);
}
footer .wrapper{
  display: flex;
  align-items: center;
  gap:40px;
}
footer .address,
footer .calender_tel a,
footer .calendar table,
footer .calendar dl,
footer .calendar dl a,
footer .map p{
  color:#fff;
}
footer p.comment span{
  background-color: #fff;
  color:var(--navy);
}
footer .calendar{
  background-color: rgba(255,255,255,0.2);
}
.footer_nav{
  padding:50px 0 90px;
  border-top:1px solid rgba(255,255,255,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_nav ul{
  display: flex;
  gap: 36px;
}
.footer_nav ul li a{
  color:#fff;
}
a.footer_tel_btn{
  width:200px;
  height:50px;
  font-size:1.5rem;
  line-height: 50px;
  text-align: center;
  color:var(--navy);
  position:relative;
  background-color: #fff;
}
a.footer_tel_btn::before{
  position:absolute;
  content:"";
  width:30px;
  height:30px;
  top:10px;
  left:10px;
  background: url(../images/index/tel_icon_navy.png) center center no-repeat;
  background-size: cover;
}
a.footer_tel_btn::after{
  position:absolute;
  content:"";
  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
  border-left: 5.7px solid var(--navy);
  top:19px;
  right:19px;
}
/* 共通項目 */
.wrapper{
  margin:0 auto;
  padding:80px 0;
  box-sizing: border-box;
  width:100%;
  max-width: 1160px;;
}
h3.sub_title{
  font-size:1.8rem;
  margin-bottom:1em;
}
h3.sub_title span{
  font-size:3.6rem;
  padding-right:1rem;
  font-family:var(--english-font);
}
a.btn{
  display: block;
  width:300px;
  height:80px;
  border-radius: 40px;
  background-color: var(--main-color);
  color:#fff;
  position:relative;
  line-height:80px;
  margin:60px 0 0 auto;
  font-size:2rem;
  font-weight:bold;
}
a.btn::after{
  position:absolute;
  content:"";
  width:16px;
  height:20px;
  background: url(../images/index/arrow.png) center center no-repeat;
  background-size: cover;
  right:3rem;
  top:31px;
  color:#fff;
}