@charset "utf-8";
/* ==========================================================================
   common
   ========================================================================== */

/* header ============================== */
h1{
	font-size: 0rem;
}

.logo a{
	width: 60vw;
	height: auto;
	position: absolute;
	left: 5vw;
	top: 18px;
	z-index: 300;
}
@media (min-width: 440px){
.logo a{
	width: 40px;
	left: 30px;
	top: 20px;
}
}
@media (min-width: 960px){
.logo a{
	width: 480px;
	left: 50px;
	top: 30px;
}
}

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

/* header-nav ============================== */
#header_nav{
	display: none;
}
@media (min-width: 960px){
#header_nav{
	color: #FFF;
	width: auto;
	height: 110px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	padding: 0 44px 0 60px;
	box-sizing: border-box;
	transition: all 0.3s ease;
	background-color: rgba(255, 255, 255, 0);
	border-radius: 0 0 0 50px;
	z-index: 200;
	position: fixed;
	top: 0;
	right: 0;
}
}

#header_nav.color_scroll{
	height: 0;
}
@media (min-width: 960px){
#header_nav.color_scroll{
	height: 70px;
  background-color: rgba(255, 255, 255, 1);
}
}

.nav__wrap{
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	box-sizing: border-box;
}

.nav__wrap ul.nav{
	display: none;
}
@media (min-width: 960px){
.nav__wrap ul.nav{
	display: flex;
	flex-direction: row;
	align-items: center;
}
}

.nav__wrap ul.nav li a{
	display: none;
}
@media (min-width: 960px){
.nav__wrap ul.nav li a{
	color: #FFF;
	height: 110px;
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1;
	display: flex!important;
	flex-direction: column!important;
	align-items: center!important;
	justify-content: center!important;
	margin: 0 0 0 26px;
	transition: all 0.3s ease;
}
}

.nav__wrap ul.nav li a.color_scroll{
	display: none;
}
@media (min-width: 960px){
.nav__wrap ul.nav li a.color_scroll{
	display: flex!important;
	color: #1E2228;
	height: 70px;
}
}

.nav__wrap ul.nav li a:hover{
	color: #88C2EF;
}


/* ==========================================================================
   btn_contact fixed
   ========================================================================== */
.btn_contact{
	display: none;
}
@media (min-width: 440px){
.btn_contact{
	width: 66px;
	height: 250px;
	position: fixed;
	top: 50%;
	right: 0;
	margin: -125px 0 0 0;
	display: block;
	z-index: 1000;
}
}

.btn_contact a{
	display: none;
}
@media (min-width: 440px){
.btn_contact a{
	color: #fff;
	width: 66px;
	height: 250px;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.22em;
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	border-radius: 16px 0 0 16px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background-color: #88C2EF;
	transition: all 0.3s ease;
	box-sizing: border-box;
	padding: 6px 0 0 0;
}
}

.btn_contact a img{
	width: 34px;
	margin: 0 20px 0 0;
}

.btn_contact a:hover{
	color: rgba(255, 255, 255, 0.7);
}


/* btn_contact_sp fixed ============================== */
.btn_contact_sp{
	width: 100%;
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 100;
}
@media (min-width: 440px){
.btn_contact_sp{
	display: none!important;
}
}

.btn_contact_sp a{
	color: #fff;
	width: 100%;
	height: 60px;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.08em;
	background: #1a1d1f;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background-color: #88C2EF;
	box-sizing: border-box;
}


/* ==========================================================================
   title
   ========================================================================== */
/* section_title ============================== */
.page .title_block{
	width: 100%;
  display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

h2.section_title{
  font-size: 1.9rem;
  font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.06em;
	position: relative;
	padding: 0 0 0 22px;
}
@media (min-width: 440px){
h2.section_title{
  font-size: 2.4rem;
	line-height: 1.6;
	padding: 0 0 0 30px;
}
}

h2.section_title::before{
  content: "";
 	width: 12px;
 	height: 6px;
  position: absolute;
  top: 0.6em;
  left: 0;
	border-radius: 0.08px 4px 4px 0.08px;
  background-color: #FFC400;
}
@media (min-width: 440px){
h2.section_title::before{
 	width: 16px;
 	height: 8px;
  top: 0.65em;
}
}

/* page title ============================== */
h3.title_h3{
	width: 100%;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.5;
	border-bottom: 2px dashed #88C2EF;
	padding: 0 0 7px 0;
}
@media (min-width: 440px){
h3.title_h3{
  font-size: 2.9rem;
	line-height: 1.6;
	letter-spacing: 0.08em;
	padding: 0 0 15px 0;
}
}

h3.title_h3 span{
  font-size: 1.7rem;
	display: block;
	margin-left: -0.5em;
}
@media (min-width: 440px){
h3.title_h3 span{
  font-size: 2.1rem;
	display: inline-block;
	margin-left: 0;
	vertical-align: 0.1em;
}
}

.title_h4{
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  border-left: 4px solid #D6B33A;
  padding: 0 0 0 10px;
}
@media (min-width: 440px){
.title_h4{
  font-size: 1.9rem;
  line-height: 1.4;
  padding: 0 0 0 14px;
}
}

.title_h5{
  color: #FFF;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
  background-color: #D6B33A;
  box-sizing: border-box;
  padding: 7px 20px;
}
@media (min-width: 960px){
.title_h5{
  font-size: 1.7rem;
  line-height: 1.6;
  padding: 9px 20px;
}
}

.title_h6{
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
	text-align: center;
  padding: 0;
}
@media (min-width: 960px){
.title_h6{
  font-size: 1.8rem;
}
}

/* p.text ============================== */
p.text{
  font-size: 1.5rem;
}
@media (min-width: 960px){
p.text{
  font-size: 1.56rem;
}
}

/* btn ============================== */
.btn{
	width: 300px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (min-width: 960px){
.btn{
	width: 340px;
	height: 70px;
}
}

.btn a{
	color: #fff;
	width: 100%;
	height: 100%;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.06em;
	text-align: center;
	border-radius: 28px 28px 28px 4px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background-color: #88C2EF;
	transition: all 0.3s ease;
	padding: 0 18px;
	box-sizing: border-box;
}
@media (min-width: 960px){
.btn a{
	font-size: 1.6rem;
	border-radius: 35px 35px 35px 4px;
}
}

@media (min-width: 960px){
.btn a:hover{
	color: rgba(255, 255, 255, 0.6);
}
}

.btn-w{
	width: 80%;
	height: 52px;
}
@media (min-width: 960px){
.btn-w{
	width: 300px;
	height: 60px;
}
}

.btn-w a{
	color: #1E2228;
	width: 100%;
	height: 100%;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-align: center;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	border: 1px solid #CCC;
	background-color: #FFF;
	transition: all 0.3s ease;
	box-sizing: border-box;
	position: relative;
}
@media (min-width: 960px){
.btn-w a{
	font-size: 1.5rem;
}
}

 @media (min-width: 960px){
.btn-w a:hover{
	color: #aaa;
 }
 }


/* ==========================================================================
   page common
   ========================================================================== */
/* page contents_wrap ============================== */
.page .contents_wrap{
	padding: 5px 0 0 0;
}
@media (min-width: 960px){
.page .contents_wrap{
	padding: -15px 0 0 0;
}
}

.page #index{
	display: none;
}
@media (min-width: 960px){
.page #index{
	display: block;
}
}

#side{
	width: 230px;
	position: absolute;
  top: 0;
	left: 0;
	max-height: calc(100vh - 100px);
	overflow: auto;
	z-index: 100;
}

#side.is-end{
  top: auto;
  bottom: 0;
}

#side h3.head img{
	width: auto;
	height: 20px;
	display: block;
}

#side h4{
	color: #222;
	font-size: 1.4rem;
  font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.02em;
	display: block;
	position: relative;
	transition: all 0.2s ease;
	padding: 0 0 14px 0;
}

#side ul{
	width: 100%;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

#side ul li a{
	color: #222;
	font-size: 1.6rem;
  font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.02em;
	display: block;
	position: relative;
	transition: all 0.2s ease;
	padding: 0 0 10px 20px;
}

#side ul li a::before{
  content: "";
 	width: 8px;
 	height: 5px;
  position: absolute;
  top: 0.55em;
  left: 2px;
	border-radius: 0.05px 2.5px 2.5px 0.05px;
  background-color: #FFC400;
}

#side ul li a:hover{
	color: #88C2EF;
}


/* page_mv ============================== */
#page-mv{
  width: 100vw;
  height: 310px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
  background-image: url(../img/common/bg.jpg);
 	background-size: 100px auto;
 	background-repeat: repeat;
	background-color: #0058A3;
	box-sizing: border-box;
  position: relative;
}
@media (min-width: 960px){
#page-mv{
  height: 520px;
}
}

#page-mv::before{
  content: "";
 	width: 100%;
 	height: 60px;
  position: absolute;
  bottom: -1px;
  left: 0;
	border-radius: 60px 60px 0 0;
  background-color: #fff;
}
@media (min-width: 960px){
#page-mv::before{
	height: 120px;
  border-radius: 120px 120px 0 0;
}
}

#page-mv .mv_illust img{
 	width: 310px;
 	height: auto;
  position: absolute;
  top: 136px;
  right: 10px;
}
@media (min-width: 960px){
#page-mv .mv_illust img{
 	width: 820px;
	top: 96px;
  right: 20px;
}
}

#page-mv .page_title_block{
  width: 100%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  padding: 0 6vw;
}
@media (min-width: 960px){
#page-mv .page_title_block{
  max-width: calc(1200px + 10vw + 10vw);
  padding: 0 10vw;
}
}

#page-mv h1.page_title{
  color: #FFF;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
	letter-spacing: 0.1em;
	margin: -60px 0 0 0;
}
@media (min-width: 960px){
#page-mv h1.page_title{
  font-size: 3.8rem;
	font-weight: 500;
	margin: -40px 0 0 0;
}
}

#page-mv .page_title-en{
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
	letter-spacing: 0.06em;
	margin: 10px 0 0 0;
}
@media (min-width: 960px){
#page-mv .page_title-en{
  font-size: 2.3rem;
	margin: 20px 0 0 0;
}
}


/* page cv ============================== */
.cv{
	margin-right: calc(50% - 50vw);
	overflow: hidden;
	border-radius: 400px 0 0 400px;
}
@media (min-width: 960px){
.cv{
	border-radius: 500px 0 0 500px;
	margin-left: 300px;
}
}

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


/* page line ============================== */
.line-dashed{
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #88C2EF;
}


/* ==========================================================================
   section wrap
   ========================================================================== */
.contents_wrap .wrap{
  width: 100%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  padding: 0 6vw;
}
@media (min-width: 960px){
.contents_wrap .wrap{
  width: 1100px;
	padding: 0;
}
}


/* ==========================================================================
   footer
   ========================================================================== */
footer{
  width: 100%;
	display: flex;
	flex-direction: column;
  background-image: url(../img/common/bg.jpg);
 	background-size: 100px auto;
 	background-repeat: repeat;
	background-color: #0058A3;
	box-sizing: border-box;
	margin: 50px 0 0 0;
}
@media (min-width: 440px){
footer{
  margin: 120px 0 0 0;
}
}

#top footer{
  margin: 0;
}

footer .wrap{
  width: 100%;
  box-sizing: border-box;
	margin: 0 auto;
}
@media (min-width: 960px){
footer .wrap{
  max-width: calc(1200px + 10vw + 10vw);
}
}

/* footer-contact ============================== */
.footer-contact .wrap{
	color: #fff;
  width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	padding: 50px 6vw 0;
}
@media (min-width: 440px){
.footer-contact .wrap{
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 64px 6vw 0;
}
}
@media (min-width: 960px){
.footer-contact .wrap{
	padding: 64px 10vw 0;
}
}

.footer-contact .section_title_block{
	display: flex;
	flex-direction: column;
	align-items: center;
}
@media (min-width: 440px){
.footer-contact .section_title_block{
	align-items: flex-start;
}
}

.footer-contact .section_title_en{
	color: #FFEB02;
	font-size: 4.2rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
}
@media (min-width: 440px){
.footer-contact .section_title_en{
	font-size: 5.6rem;
}
}

.footer-contact h2.contact_title{
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.06em;
}
@media (min-width: 440px){
.footer-contact h2.contact_title{
	font-size: 1.6rem;
}
}

.footer-contact .contact_block{
	display: flex;
	flex-direction: column;
	align-items: center;
}
@media (min-width: 440px){
.footer-contact .contact_block{
	flex-direction: row;
}
}

.footer-contact .tel_block{
	display: flex;
	flex-direction: column;
	align-items: center;
}
@media (min-width: 440px){
.footer-contact .tel_block{
	margin: 0 32px 0 0;
}
}

.footer-contact .tel{
	display: flex;
	flex-direction: row;
	align-items: center;
}

.footer-contact .tel img{
	width: 23px;
	height: auto;
	margin: 1px 8px 0 0;
}
@media (min-width: 440px){
.footer-contact .tel img{
	width: 22px;
}
}

.footer-contact .tel a{
	color: #fafafa;
	font-size: 3.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
	display: flex;
	flex-direction: row;
	align-items: center;
}
@media (min-width: 440px){
#footer ul.note li{
	font-size: 3.2rem;
}
}

.footer-contact .time{
	font-size: 1.3rem;
	line-height: 1;
	margin: 0 0 0 8px;
}
@media (min-width: 440px){
.footer-contact .time{
	font-size: 1.35rem;
}
}

.footer-contact .btn{
	width: 280px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (min-width: 440px){
.footer-contact .btn{
	width: 280px;
	height: 70px;
	align-items: center;
	justify-content: flex-start;
}
}

.footer-contact .btn a{
	color: #222;
	width: 100%;
	height: 100%;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.08em;
  line-height: 1;
	border-radius: 28px 28px 28px 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	box-sizing: border-box;
	transition: all 0.3s ease;
}
@media (min-width: 440px){
.footer-contact .btn a{
	font-size: 1.6rem;
	border-radius: 35px 35px 35px 4px;
}
}

@media (min-width: 960px){
.footer-contact .btn a:hover{
	background-color: #FFEB02;
}
}

/* footer ============================== */
.footer{
  width: 100%;
	background-color: #fff;
	border-radius: 60px 0 0 0;
}
@media (min-width: 440px){
.footer{
	border-radius: 140px 0 0 0;
}
}

.footer .wrap{
  width: 100%;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	padding: 60px 5vw 26px;
}
@media (min-width: 440px){
.footer .wrap{
	padding: 76px 10vw 66px;
}
}

.footer .nav_block{
  width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
}
@media (min-width: 440px){
.footer .nav_block{
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}
}

.footer .footer-logo{
  width: 250px;
  height: auto;
}
@media (min-width: 440px){
.footer .footer-logo{
	width: 330px;
}
}

.footer .footer-logo img{
	width: 100%;
	height: auto;
	display: block;
}

.footer ul.f_nav{
	display: flex;
	flex-direction: column;
  align-items: center;
}
@media (min-width: 440px){
.footer ul.f_nav{
	flex-direction: row;
	justify-content: flex-end;
}
}

.footer ul.f_nav li{
	display: block;
}

.footer ul.f_nav li a{
	color: #222;
	width: 100%;
  font-size: 1.6rem;
	line-height: 1;
  font-weight: 500;
	letter-spacing: 0.04em;
	text-align: center;
	display: block;
	transition: all 0.2s ease;
	margin: 0 0 16px 0;
}
@media (min-width: 440px){
.footer ul.f_nav li a{
	width: auto;
  font-size: 1.5rem;
	letter-spacing: 0.02em;
	text-align: left;
	margin: 0 0 0 30px;
}
}

@media (min-width: 960px){
.footer ul.f_nav li a:hover{
	color: #0058A3;
}
}

.footer .copy_block{
  width: 100%;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	box-sizing: border-box;
}

.footer .copyright{
	color: #777;
  font-size: 1.0rem;
	font-weight: 300;
	line-height: 1;
	letter-spacing: 0.1em;
	text-align: left;
}
@media (min-width: 440px){
.footer .copyright{
	font-size: 1.1rem;
	text-align: left;
}
}

.footer .page_top a{
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1.6px solid #88c2ef;
	border-radius: 50%;
	background-color: #fff;
	transition: all 0.2s ease;
}
@media (min-width: 440px){
.footers .page_top a{
	width: 50px;
	height: 50px;
}
}

.footer .page_top a img{
	width: 14px;
	height: 14px;
	display: block;
}

@media (min-width: 960px){
.footer .page_top a:hover{
  border: 1.6px solid #88C2EF;
	background-color: #88C2EF;
}
}


/* ==========================================================================
   drawer_menu
   ========================================================================== */
.drawer_menu{
  width: 58px;
  height: 58px;
  background-color: #FFC400;
  display: flex;
	align-items: center;
  justify-content: center;
  z-index: 2000;
  position: fixed;
  top: 0;
  right: 0;
	border-radius: 0 0 0 10px;
}
@media (min-width: 440px){
.drawer_menu{
  width: 70px;
  height: 70px;
  position: fixed;
  top: 0;
  right: 0;
}
}
@media (min-width: 960px){
.drawer_menu{
  display: none;
}
}

.drawer_menu a{
  color: inherit;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.drawer_menu a:visited{
  color: inherit;
}

.drawer_menu .drawer_bg{
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 800;
  background-image: url(../img/common/bg.jpg);
 	background-size: 100px auto;
 	background-repeat: repeat;
	background-color: #0058A3;
  display: none;
  top: 0;
  left: 0;
}
@media (min-width: 440px){
.drawer_menu .drawer_bg{
}
}

.drawer_menu .drawer_button{
  display: block;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  z-index: 1200;
	margin: 0 0 0 0;
}

.drawer_menu .drawer_nav_wrapper{
	width: 84%;
  height: 100%;
	transform: translate(100%);
  transition: all 0.2s ease;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  background-color: #FFF;
  display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-radius: 60px 0 0 60px;
}
@media (min-width: 440px){
.drawer_menu .drawer_nav_wrapper{
  width: 600px;
  transform: translate(600px);
	border-radius: 120px 0 0 120px;
}
}
@media (min-width: 960px){
.drawer_menu .drawer_nav_wrapper{
  width: 600px;
  transform: translate(600px);
}
}

.drawer_menu .drawer_nav_wrapper.open{
  transform: translate(0);
}

.menu-trigger,
.menu-trigger span{
  display: inline-block;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.menu-trigger{
  position: relative;
  width: 38px;
  height: 18px;
}

.menu-trigger span{
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.menu-trigger span:nth-of-type(1){
  top: 0;
}

.menu-trigger span:nth-of-type(2){
  top: 8px;
}

.menu-trigger span:nth-of-type(3){
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1){
  transform: translateY(7px) rotate(-45deg);
	transform: translateY(17px) rotate(-45deg);
  background-color: #0058A3;
}

.menu-trigger.active span:nth-of-type(2){
  opacity: 0;
  transform: translatex(5px) rotate(0deg);
  background-color: #0058A3;
}

.menu-trigger.active span:nth-of-type(3){
  transform: translateY(-9px) rotate(45deg);
	transform: translateY(1px) rotate(45deg);
  background-color: #0058A3;
}


.drawer_menu .nav_block{
	width: 100%;
	box-sizing: border-box;
	padding: 0 10vw;
}

.drawer_menu ul.f_nav{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
  align-items: flex-start;
	justify-content: flex-start;
}

.drawer_menu ul.f_nav li{
	width: 100%;
	padding: 0;
}

.drawer_menu ul.f_nav li a{
  font-size: 1.6rem;
	line-height: 1;
	white-space: nowrap;
	text-align: center;
	margin: 14px 0;
	letter-spacing: 0.08em;
  font-weight: 500;
  display: block;
	box-sizing: border-box;
}

.drawer_menu .btn{
	width: 100%;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.drawer_menu .btn a{
	color: #fff;
	width: 100%;
	height: 100%;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-align: center;
	border-radius: 28px 28px 28px 4px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background-color: #88C2EF;
	transition: all 0.3s ease;
	padding: 0 18px;
	box-sizing: border-box;
}
