@charset "UTF-8";
/* CSS Document */
/*--------------------
01.共通
02.ヘッダー
03.フッター
04.下層共通
--------------------*/

/*----------
01.共通
----------*/

*{
box-sizing: border-box;
}

/* :root {
  overflow-y: scroll;
  margin: 0;
  padding: 0;
  --scrollbarwidth: calc(100vw - 100%);
} */

body{
color: #000;
font-family: 'Noto Sans JP', sans-serif;
font-weight: 400;
}

.mplus{
font-family: 'M PLUS 1p', sans-serif;
}

.playfair{
font-family: 'Playfair Display', serif;
}

.merriweather{
font-family: 'Merriweather', serif;
}

img{
display: block;
width: 100%;
height: auto;
}

.contents_in{
margin: 0 auto;
max-width: 1380px;
}

.pc{
display: block;
}

.sp{
display: none;
}

main{
  padding-top: 110px;
}

.btn_ptn01{
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
}

.btn_ptn01 a{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #02405A;
  color: #02405A;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.16em;
  padding: 9px 0 11px;
  text-align: center;
}

.btn_ptn01 a::before{
  content: "";
  position: absolute;
  top: 16px;
  left: -30px;
  display: block;
  width: 63.67px;
  height: 7.08px;
  background: url(../img/common/arrow_right.svg) no-repeat;
  background-size: contain;
  transition: all 0.3s;
}

.btn_ptn01 a:hover::before{
  left: -20px;
}

.btn_ptn02{
  max-width: 521.27px;
  width: 100%;
}
.btn_ptn02 a{
  display: block;
  width: 100%;
  height: 100%;
  background-color: #FCC800;
  border: 3px solid #02405A;
  border-radius: 51.06px;
  color: #02405A;
  font-size: 24px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 0.1em;
  padding: 31px 0 30px;
  text-align: center;
  transition: all 0.3s;
}

.btn_ptn02 a:hover{
  background-color: #02405A;
  color: #fff;
}

.btn_ptn03{
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
}

.btn_ptn03 a{
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #02405A;
  color: #02405A;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.16em;
  padding: 9px 0 11px;
  text-align: center;
  transition: all 0.3s;
}

.btn_ptn03 a:hover{
  background-color: #02405A;
  color: #fff;
}

.arch{
  position: relative;
  color: #02405A;
  font-size: 47.24px;
  font-weight: 700;
  line-height: 88px;
  text-align: center;
  margin: 0 auto 14px;
  z-index: 1;
}

.arch::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  display: block;
  width: 76px;
  height: 1px;
  background: #02405A;
  margin: 0 auto;
}



/*animate.css動作*/
.animated {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-delay: .5s;
}
/*範囲に入ってから動作開始までの遅延時間（秒）*/
.animate_delay{
  animation-delay: 1.0s;
}

.animate_duration{
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
}

/*inview.js要素の初期表示*/
.iv,.ivo{
  visibility: hidden;
}

.object_fit {
  object-fit: cover;
  font-family: 'object-fit: cover;'
}

/*----------
02.ヘッダー
----------*/
header{
  position: fixed;
  display: flex;
  width: 100%;
  height: 110px;
  background-color: #FCC800;
  align-items: center;
  transition: .3s;
  z-index: 999;
}

header .logo{
  position: relative;
  width: 25.85%;
  height: 110px;
  max-width: 320px;
  background: #F7F7F8;
}

header .logo a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

header .logo a img{
  max-width: 210px;
}

header #g_nav{
  width: calc(100% - 25.85%);
  max-width: 1400px;
  display: flex;
  align-items: center;
  margin: 0 15.34% 0 8.6%;
}

header #g_nav #g_nav_list{
  max-width: 895px;
  width: 100%;
}

header #g_nav #g_nav_list ul{
  max-width: 783px;
  display: flex;
  justify-content: space-between;
  margin-right: 6.5%;
}

header #g_nav #g_nav_list ul li a{
  color: #231815;
  font-size: 15px;
  font-weight: 500;
  padding: 0 5px;
}

header #g_nav .sns_g{
  max-width: 93px;
  width: 100%;
}
header #g_nav .sns_g ul{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header #g_nav .sns_g ul a{
  display: block;
  transition: all 0.3s;
}
header #g_nav .sns_g ul a:hover{
  opacity: 0.8;
}

.fix_btn{
  position: fixed;
  top: 31px;
  right: 4.35%;
  width: 130px;
  height: 130px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #000;
  z-index: 1;
  transition: all 0.3s;
}

.fix_btn a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 16.2px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0.08em;
  text-align: center;
  transition: all 0.3s;
}

.fix_btn:hover{
  background: #02405A;
  border: 1px solid #02405A;
}

.fix_btn:hover a{
  color: #fff;
}




/*----------
03.フッター
----------*/

.order_block {
  background: #2D96AC;
  padding: 78px 0 113px;
}

.order_block .contents_in{
  max-width: 1180px;
}

.order_block .arch{
  color: #fff;
  letter-spacing: 0.1em;
}

.order_block .arch::before {
  background: #fff;
}

.order_block .btn_g {
  display: flex;
  justify-content: space-between;
  margin: 100px auto 0;
}

.order_block .btn_g .btn_ptn02{
  width: 44.15%;
}

.footer_nav_block{
  position: relative;
  padding: 150px 0 133px;
}

.footer_nav_block .contents_in{
  max-width: 1080px;
}

.footer_nav_block .footer_logo{
  position: absolute;
  top: -34px;
  left: 0;
  right: 0;
  width: 135px;
  margin: 0 auto;
}

.footer_nav_block .page_top a{
  position: absolute;
  top: -25px;
  right: 6.7%;
  display: block;
  width: 50px;
  height: 50px;
  background: url(../img/common/page_top.svg) no-repeat center center;
  background-size: 22.64px;
  background-color: #02405A;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.footer_nav_block .page_top a:hover{
  background-color: #FCC800;
}

.footer_nav_block .footer_nav ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer_nav_block .footer_nav ul a{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.08em;
  transition: all 0.3s;
}

.footer_nav_block .footer_nav ul li:nth-child(9){
  width: 30px;
}
.footer_nav_block .footer_nav ul li:nth-child(10){
  width: 40px;
}

.footer_nav_block .footer_nav ul a.sns_link:hover{
  opacity: 0.8;
}

.copyright{
  background-color: #02405A;
  color: #fff;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0.1em;
  padding: 16.5px 10px;
  text-align: center;
}



/*----------
04.下層共通
----------*/


/*下層タイトル*/

.under_page .title_area {
  margin: 150px auto 110px;
}

.under_page .title_area .arch{
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-bottom: 45px;
  margin-bottom: 25px;
}

.under_page .title_area .arch::before{
  bottom: 0;
}

.under_page .title_g .sub_title {
  color: #02405A;
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.01em;
  text-align: center;
}

/*END下層タイトル*/

/*ページャー*/

.under_page .page_nav {
  width: 90%;
  margin: 0 auto;
}

.under_page .wp-pagenavi {
  display: flex;
  justify-content: center;
}

.under_page .wp-pagenavi a,
.under_page .wp-pagenavi span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35.5px;
  height: 35.5px;
  border: 1px solid #02405A;
  color: #02405A;
  font-size: 16px;
  line-height: 1;
  margin: 0 12.25px;
  text-decoration: none;
  transition: all 0.3s;
}

.under_page .wp-pagenavi a:hover,
.under_page .wp-pagenavi span.current {
  border-color: #02405A;
  background: #02405A;
  color: #fff;
}

.under_page .wp-pagenavi span.pages {
  display: none;
}

.under_page .wp-pagenavi a.nextpostslink {
  display: none;
}

.under_page .wp-pagenavi a.previouspostslink{
  display: none;
}

/*ENDページャー*/


@media only screen and (max-width:1340px){
/*----------
01.共通
----------*/
.contents_in{
width: 94%;
}


/*----------
02.ヘッダー
----------*/

header .logo {
  width: 18%;
  padding: 0 15px;
}

header #g_nav {
  width: 78%;
  margin: 0 13% 0 2%;
}

header #g_nav #g_nav_list {
  max-width: 700px;
}

header #g_nav #g_nav_list ul {
  margin-right: 1.5%;
}

header #g_nav #g_nav_list ul li a {
  font-size: 14px;
}

header #g_nav .sns_g {
  max-width: 80px;
}

.fix_btn {
  right: 2%;
  width: 110px;
  height: 110px;
}

}

@media only screen and (max-width:1280px){

/*----------
01.共通
----------*/
/*----------
02.ヘッダー
----------*/
/*----------
03.フッター
----------*/


}

@media only screen and (max-width:1024px){
/*----------
01.共通
----------*/

.btn_ptn01 a {
  font-size: 14.4px;
}

.arch {
  font-size: 42.24px;
  line-height: 83px;
}











/*----------
02.ヘッダー
----------*/

/*----------
03.フッター
----------*/

.footer_nav_block .footer_nav ul a {
  font-size: 14px;
}





/*----------
04.下層共通
----------*/


}


@media only screen and (max-width:980px){

/*----------
01.共通
----------*/


body.active{
  position: fixed;
}

main {
  padding-top: 0;
}

/*----------
02.ヘッダー
----------*/

header {
  bottom: 0;
  height: 75px;
  background-color: #F4F5F5;
  padding: 0;
}

header .pc{
  display: none;
}

header .sp{
  display: block;
}

/*ハンバーガーボタン*/
.openbtn{
  position: relative;
  width: 82px;
  height: 75px;
  background-color: #F4F5F5;
  border-right: 1px solid #02405A;
  cursor: pointer;
}

.openbtn span{
  display: inline-block;
  background-color: #02405A;
  transition: all .4s;
  position: absolute;
  left: 19px;
  right: 26px;
  width: 37px;
  height: 1px;
  }

.openbtn span:nth-of-type(1) {
  top:23px;
}

.openbtn span:nth-of-type(2) {
  top:37px;
}

.openbtn span:nth-of-type(3) {
  top:51px;
}

.fix_btn {
  position: static;
  height: 75px;
  border-radius: 0;
  border: none;
}

.fix_btn.template_btn {
  width: calc(100% - 82px - 37%);
  background: #F4F5F5;
}

.fix_btn.order_btn {
  width: calc(100% - 82px - 41%);
  background: #FCC800;
}

.fix_btn:hover {
  border: none;
}
.fix_btn:hover a{
  color: #000;
}

/*ハンバーガーメニュー内*/
body.active header{
bottom: -100%;
}

header #g_nav{
  position:fixed;
  z-index: -1;
  top:0;
  left: -100%;
  display: block;
  width:84%;
  height: 100vh;
  background:rgba(213,234,238,0.9);
  margin: 0;
  padding: 10px 25px 30px;
  transition: all 0.5s;
}

body.active header #g_nav{
  left: 0;
  z-index:10;
}

header #g_nav .closebtn{
  position: relative;
  width: 36.7px;
  height: 6.37px;
  background: url(../img/common/arrow_left.svg) no-repeat center center;
  background-size: contain;
  padding: 20px 0;
  margin-bottom: 17px;
  z-index: 11;
  cursor: pointer;
}

header #g_nav #g_nav_list ul {
  display: block;
}

header #g_nav #g_nav_list ul li {
  margin-bottom: 21px;
}

header #g_nav #g_nav_list ul li a {
  color: #02405A;
  font-size: 17px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0.06em;
  padding: 0 5px;
}

header #g_nav .sns_g ul {
  display: block;
  margin-bottom: 40px;
}
header #g_nav .sns_g ul li:first-child{
  width: 22px;
  margin-bottom: 14px;
}
header #g_nav .sns_g ul li:last-child{
  width: 29px;
}

header #g_nav .btn_ptn02 {
  max-width: 245px;
}

header #g_nav .btn_ptn02 a{
  border: 1.3px solid #02405A;
  border-radius: 21.7px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1em;
  padding: 8px 0 9px;
}

/*----------
03.フッター
----------*/

.order_block .btn_g .btn_ptn02 {
  width: 48%;
}

.footer_nav_block .contents_in {
  max-width: 303px;
}

.footer_nav_block .footer_nav ul {
  justify-content: center;
}

.footer_nav_block .footer_nav ul li {
  margin: 0 0 22px;
}

.footer_nav_block .footer_nav ul a {
  margin: 0;
}

.footer_nav_block .footer_nav ul li:nth-child(1) {
margin-right: 15%;
}

.footer_nav_block .footer_nav ul li:nth-child(2) {
margin-right: 15%;
}

.footer_nav_block .footer_nav ul li:nth-child(3) {
margin-right: 0;
}

.footer_nav_block .footer_nav ul li:nth-child(4) {
margin-right: 4.8%;
}

.footer_nav_block .footer_nav ul li:nth-child(5) {
margin-right: 11%;
}

.footer_nav_block .footer_nav ul li:nth-child(6) {
margin-right: 4%;
}

.footer_nav_block .footer_nav ul li:nth-child(7),
.footer_nav_block .footer_nav ul li:nth-child(8)  {
margin: 0 3% 22px;
}

.footer_nav_block .footer_nav ul li:nth-child(9),
.footer_nav_block .footer_nav ul li:nth-child(10){
margin: 0 6.1% 0;
}


}

@media only screen and (max-width:767px){
/*----------
01.共通
----------*/
.pc{
display: none;
}

.sp{
display: block;
}

.contents_in {
  width: calc(100% - 8.26vw);
}

.btn_ptn01 {
  max-width: 180px;
}
.btn_ptn01 a {
  padding: 6.5px 0 7px;
}

.btn_ptn02{
  max-width: 312px;
  width: 100%;
}

.btn_ptn01 a::before {
  top: 14px;
  left: -25px;
  width: 57.3px;
  height: 6.37px;
}

.btn_ptn02 a{
  display: block;
  border: 1px solid #02405A;
  border-radius: 41.36px;
  color: #02405A;
  font-size: 19.5px;
  line-height: 29px;
  padding: 25px 0 26px;
}

.btn_ptn03 {
  max-width: 180px;
}
.btn_ptn03 a {
  font-size: 14.4px;
  padding: 6.5px 0 7px;
}

.arch {
  font-size: 27px;
  line-height: 80px;
}

/*----------
02.ヘッダー
----------*/









/*----------
03.フッター
----------*/

.order_block {
  padding: 50px 36px 60px;
}

.order_block .contents_in {
  width: 100%;
}

.order_block .btn_g {
  display: block;
  margin: 60px auto 0;
  padding: 0;
}

.order_block .btn_g .btn_ptn02{
  width: 100%;
  margin: 0 auto 28px;
}


.order_block .btn_g .btn_ptn02 a {
  line-height: 20px;
  padding: 29px 0 31px;
}

.footer_nav_block .footer_nav ul a {
  font-size: 13px;
}


.copyright {
  font-size: 10px;
  line-height: 1;
  padding: 10px;
  margin-bottom: 75px;
}

.footer_nav_block {
  padding: 145px 0 40px;
}

/*----------
04.下層共通
----------*/
/*下層タイトル*/

.under_page .title_area {
  margin: 0 auto 90px;
}

.under_page .title_area .arch{
  font-size: 27px;
  padding-bottom: 40px;
}

.under_page .title_g .sub_title {
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.06em;
}

/*END下層タイトル*/


/*ページャー*/

.under_page .wp-pagenavi a,
.under_page .wp-pagenavi span {
  width: 32px;
  height: 32px;
  font-size: 14.4px;
  margin: 0 12px;
}

/*ENDページャー*/











}




@media only screen and (max-width:360px){
/*----------
01.共通
----------*/
/*----------
02.ヘッダー
----------*/
/*----------
03.フッター
----------*/

.fix_btn.template_btn {
  width: calc(100% - 82px - 35%);
}

.fix_btn.order_btn {
  width: calc(100% - 82px - 37%);
}

}