:root {
  --main-font-color: #333333;
  --f-f-mincho:"Shippori Mincho", serif;
  --f-f-japanese:"Noto Sans JP", sans-serif;
  --english-font: "Marcellus SC", serif;
  --english-font-title: "Cormorant Garamond", serif;
  --blue:#0D79C0;
  --pink:#F040A6;
  --navy:#30486A;
}
html{
  overflow: auto;
  position: relative;
  min-height: 100%;
  margin-top:0;
  scroll-behavior: smooth;
  font-size:62.5%;
  background-color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  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:1200px;
  margin:0 auto;
}
a:hover{
  opacity: 70%;
}
.over_width{
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
.wrapper{
  width:100%;
  max-width: 1200px;
  margin: 0 auto;
}
.pc_none{
  display: none;
}
/* text-align */
.ta_c{
  text-align: center;
}
.ta_l{
  text-align: left;
}
.ta_r{
  text-align: right;
}
/* ------余白------ */
/* トップページセクションマージン */
.index_section{
  margin-bottom:180px;
}
/* ------共通部品------ */
h2.section_title{
  font-family: var(--english-font);
  font-size:4.8rem;
}
h2.section_title span{
  font-size:1.8rem;
  display: block;
}
/* header */
.header{
  z-index: 10;
  top:0;
  left:0;
}
.header.active{
  background-color: #fff
}
.header.active .header_content{
  padding:16px 2% 16px 2%;
  transition: 1s all;
}
.header_content{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width:100%;
}
.header_logo{
  padding:22px 2%;
}
a.header_logo_home{
  width:395px;
  height:66px;
  background: url(../images/common/header_logo.png) center center no-repeat;
  background-size: contain;
  display: block;
}
.reserve_nav{
  display: flex;
  justify-content: flex-end;
}
.reserve_nav a{
  color:#fff;
  background-color: #F040A6;
  width:218px;
  padding:15px 0;
  display: block;
  text-align: center;
}
.reserve_nav a.header_web{
  background-color: #0D79C0;
}
.reserve_nav a::before{
  content:"";
  position:absolute;
  width:20px;
  height:20px;
  top:50%;
  transform: translateY(-50%);
  left:16px;
  background: url(../images/index/tel_icon.png) center center no-repeat;
  background-size: cover;
}
.reserve_nav a.header_web::before{
  width:22px;
  height:17px;
  background: url(../images/index/web_icon.png) center center no-repeat;
  background-size: cover;
}
a.triangle_btn{
  position:relative;
}
a.triangle_btn::after{
  content:"";
  position:absolute;
  bottom:2px;
  right:2px;
  width: 0;
  height: 0;
  border-bottom: 14px solid #fff;       /* 高さ */
  border-left: 14px solid transparent; /* 底辺 */
}
.pc_header_nav ul{
  display: flex;
  gap:34px;
  justify-content: flex-end;
  margin-top:20px;
  padding-right:16px;
}
.header_nav li.has_child {
  position: relative;
}

/* サブメニュー初期状態 */
.pc_header_nav .has_child ul.sub_menu{
  position: absolute;
  padding:30px;
  width:60%;
  top: 80px;
  right: 0;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 3;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
}
.pc_header_nav .has_child ul.sub_menu li{
  width:calc((100% - 60px) / 4);
  position:relative;
}
.pc_header_nav .has_child ul.sub_menu li::after{
  content:"";
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  border-top:5px solid transparent;
  border-bottom:5px solid transparent;
  border-left:6px solid var(--blue);
  right:8px;
}
.pc_header_nav .has_child ul.sub_menu li::before{
  content:"";
  position:absolute;
  width:100%;
  height:1px;
  background-color: var(--blue);
  bottom:-8px;
  left:0;
  opacity: 0.3;
}
.pc_header_nav .has_child ul.sub_menu li a{
  font-size:1.4rem;
}
/* hoverしたら表示 */
.pc_header_nav li.has_child:hover ul.sub_menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pc_header_nav ul li a{
  color:var(--main-font-color);
}

/* ----------------------------------
footer
---------------------------------- */
section.footer_info{
  background: url(../images/common/footer_info_bg.png) center center no-repeat;
  background-size: cover;
  padding-top:60px;
  padding-bottom:60px;
}
.footer_info_wrap{
  display: flex;
  gap:60px;
  align-items: center;
  justify-content: flex-start;
}
.footer_info_wrap table{
  color:#fff;
  width:100%;
  border-top:1px solid rgba(255,255,255,0.2);
}
.footer_info_wrap table tr{
  border-bottom:1px solid rgba(255,255,255,0.2);
  padding:20px 0;
}
.footer_info_wrap table tr th,
.footer_info_wrap table tr td{
  font-weight:200;
  padding:20px 0;
  text-align: left;
}
.footer_info_wrap table tr th{
  width:15%;
}
footer{
  background: url(../images/common/footer_bg.png) center center no-repeat;
  background-size: cover;
  padding-top: 55px;
  padding-bottom: 55px;
}
ul.footer_nav{
  display: flex;
  margin-top:55px;
  margin-bottom:55px;
}
ul.footer_nav li{
  position:relative;
  width:calc(100% / 7);
  text-align: center;
}
ul.footer_nav li::before{
  content:"";
  position:absolute;
  background-color: #333;;
  width:1px;
  height:80%;
  left:0;
  top:10%;
}
ul.footer_nav li:last-child::after{
  content:"";
  position:absolute;
  background-color: #333;;
  width:1px;
  height:80%;
  right:0;
  top:10%;
}
ul.footer_nav li a{
  color:#333;
  font-weight:200;
}

.copy{
  font-size:1rem;
  color:#333;
  font-weight:200;
}
a.footer_link{
  display: block;
  width:100%;
  max-width: 1280px;
  text-align: center;
  margin:36px auto;
}
/* 共通項目 */
.wrapper{
  margin:0 auto;
  box-sizing: border-box;
  width:100%;
  max-width: 1160px;
}
.double_line{
  position:relative
}
.double_line::before{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:24px;
  height:1px;
  background-color: #605C5A;
  z-index: 1;
}
.double_line::after{
  position:absolute;
  content:"";
  left:0;
  bottom:0;
  height:1px;
  width:100%;
  background-color: #d9d9d9;
}
h3.sub_title{
  font-size:4.8rem;
  font-family:var(--english-font);
}
h3.sub_title span{
  font-size:1.8rem;
  display: block;
}
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;
}
/* ----------------------------------
ぱんくず
---------------------------------- */
.breadcrumbs{
  display: flex;
  align-items: center;
  padding:16px 0;
  font-family: var(--f-f-japanese);
}
.breadcrumbs a{
  color:#222222;
}
.arrow{
  display: block;
  width:7px;
  height:7px;
  border-right:1px solid #222222;
  border-bottom:1px solid #222222;
  margin:0 10px 0 7px;
  transform: rotate(-45deg);
}