@charset "UTF-8";

/* ============================================
  import
============================================ */
@import url("reset.css");
@import url("jquery.css");
@import url("//fonts.googleapis.com/css?family=Noto+Sans+JP");

/* ============================================
  共通
============================================ */

html {
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 1.875;
  font-style: normal;
  letter-spacing: 0;
  min-width: 1260px;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media only screen and (max-width: 767px) {
  body {
    min-width: 100%;
    font-size: 14px;
    line-height: 1.6;
  }
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
       -o-box-sizing: border-box;
      -ms-box-sizing: border-box;
          box-sizing: border-box;
}

a,
a:visited,
a:hover {
  color: inherit;
  text-decoration: none;
  outline: none;
}

img {
  max-width: 100%;
}

/* pc sp
--------------------------------- */
.pc {
  display: inline-block !important;;
}
.sp {
  display: none !important;;
}
.sp-min {
  display: none !important;;
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: inline-block !important;;
  }
}
@media only screen and (max-width: 480px) {
  .sp-min {
    display: inline-block !important;;
  }
}

/* flex
--------------------------------- */
.flex {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content:         space-between;
}
.flex-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap:         wrap;
}
.flex-center {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content:         center;
  -webkit-align-items: center;
  align-items:         center;
}
.flex-around {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content:         space-around;
}

/* ease
--------------------------------- */
.ease,
.ease *,
.ease *::after,
.ease *::before {
  -webkit-transition: .2s all ease;
     -moz-transition: .2s all ease;
      -ms-transition: .2s all ease;
       -o-transition: .2s all ease;
          transition: .2s all ease;
}

/* opacity
--------------------------------- */
.opacity a:hover {
  opacity: 0.7;
}

/* container
--------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
.container2 {
  max-width: 1260px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (max-width: 767px) {
	.container, .container2 {
		padding: 0 20px;
		min-width: 100%
	}
}

/* clearfix
--------------------------------- */
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.clearfix:after {
  clear: both;
}

/* font
--------------------------------- */
.f-gothic {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.f-mincho {
  font-weight: 400;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, "游明朝", "Yu Mincho", "游明朝体", YuMincho, HGS明朝E, "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.f-bold {
  font-weight: bold;
}
.f-yellow {
  color: #ffe100;
}

.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-underline {
  text-decoration: underline;
}

small {
  font-size: 86%;
  vertical-align: middle;
}

/* img object fit
--------------------------------- */
img.ofi {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}


/*mt mb
--------------------------------- */
.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px; }
.mt30 { margin-top: 30px; }
.mt40 { margin-top: 40px; }
.mt50 { margin-top: 50px; }
.mt60 { margin-top: 60px; }
.mb10 { margin-bottom: 10px; }
.mb20 { margin-bottom: 20px; }
.mb40 { margin-bottom: 40px; }
.mb30 { margin-bottom: 30px; }
.mb50 { margin-bottom: 50px; }
.mb60 { margin-bottom: 60px; }



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

.global-header__bar {
	position: relative;
	height: 45px;
	padding-top: 8px;
	background-color: #fff;
	z-index: 10
}

@media only screen and (max-width: 767px) {
	.global-header__bar {
		height: 50px;
		padding-top: 12px;
		z-index: 5500;
	}
}

.global-header__bar .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.global-header__bar .logo {
	width: 200px
}

@media only screen and (max-width: 767px) {
	.global-header__bar .logo {
		width: 160px
	}
}

.global-header__bar .logo a {
	display: block
}

.global-header__bar .tokuyaku {
	width: 316px;
}

.global-header__bar .tokuyaku a:nth-of-type(2){
	width: 150px;
}

@media only screen and (max-width: 767px) {
	.global-header__bar .tokuyaku {
		display: none
	}
}

.global-header__nav {
	position: absolute;
	top: 75px;
	right: 0;
	width: 100%;
	z-index: 2000;
}

@media only screen and (max-width: 767px) {
	.global-header__nav {
		top: 60px;
    right: 10px;
	}
}

.global-header__nav .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.global-header__nav .sns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start
}

@media screen and ( min-width : 1000px ) {
	.global-header__nav .sns{
		margin-right: 50px;
	}
}

.global-header__nav .sns li {
	padding-left: 5px
}


/*new_area setting*/
.sp_menu {
	position: absolute;
	width: 40px;
	height: 32px;
	top: 10px;
	right: 4%;
	max-width: 40px;
	display: block;
}

.sp_menu span {
	display: inline-block;
	height: 2px;
	width: 28px;
	background: #a0a0a0;
	position: absolute;
	top: 14px;
	right: 0;
	left: 6px;
	margin-top: 0;
	transition: background 0.3s 0.3s;
}

.sp_menu span::before, .sp_menu span::after {
	content: '';
	left: 0;
	right: 0;
	transform: translateZ(0);
	transform-origin: 0% 50%;
	transition: transform 0.3s 0.3s;
	position: absolute;
	display: inline-block;
	height: 2px;
	background: #a0a0a0;
}

.sp_menu span::before {
	top: -8px;
}

.sp_menu span::after {
	top: 8px;
}

.sp_menu.active span {
	background-color: transparent;
}

.sp_menu.active span::before {
	transform: translateX(4px) translateY(-2px) rotate(45deg);
}

.sp_menu.active span::after {
	transform: translateX(4px) translateY(2px) rotate(-45deg);
}

.sp_menu_nav{
	display: none;
	position: fixed;
	z-index: 5500;
	top: 40px;
	bottom: 0;
	left: 0;
	width: 100%;
	height:55%;
	background-color: #fff;
}

.sp_menu_nav_list{
	margin: 20% auto auto;
}

.sp_menu_nav_lists{
	margin: 10% auto auto;
	text-align: center;
}

.sp_menu_nav_lists a{
	text-decoration: underline;
}
.wrapper_sp{
	width: 100%;
	margin: 10vh auto auto;
}


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

.footer {
	position: relative;
	z-index: 10
}

.footer__osusume {
	padding: 20px 0 0;
	background-color: #fff
}

.footer__osusume .inner {
	display: block;
	position: relative;
	width: 1000px;
	margin: 0 auto;
	max-width: 100%
}

@media only screen and (max-width: 767px) {
  .footer__osusume {
    padding: 0;
  }
	.footer__osusume .inner {
		display: block;
		position: relative;
		width: 100%;
		margin: 0 auto;
		max-width: 100%
	}
}

.footer__osusume dl {
	width: 100%;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 0 20px
}

@media only screen and (max-width: 767px) {
	.footer__osusume dl {
		width: 100%;
		margin: 0 auto;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding: 5px 0 20px
	}
}

.footer__osusume dl dt {
	width: 47px
}

@media only screen and (max-width: 767px) {
	.footer__osusume dl dt {
		text-align: center;
		width: auto
	}
}

.footer__osusume dl dt img {
	max-width: 47px
}

@media only screen and (max-width: 767px) {
	.footer__osusume dl dt img {
		max-width: 80px
	}
}

.footer__osusume dl dd {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	padding-left: 36px;
	line-height: 1.5;
	font-family: "kozuka-mincho-pro", Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif !important
}

.footer__osusume dl dd.-row2 {
	text-align: right;
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto
}

@media only screen and (max-width: 767px) {
	.footer__osusume dl dd.-row2 {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 100%;
		flex: 1 0 100%;
		margin-top: 20px;
		padding: 25px 0 0;
		border-top: 2px solid #000
	}
}

.footer__osusume dl dd a {
	text-decoration: underline
}

@media only screen and (max-width: 767px) {
	.footer__osusume dl dd {
		-webkit-box-flex: 0;
		-ms-flex: none;
		flex: none;
		-ms-flex-item-align: center;
		-ms-grid-row-align: center;
		align-self: center;
		padding-left: 15px;
		line-height: 1.5;
		font-family: "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif
	}
}

@media only screen and (max-width: 767px) {
	.footer__osusume .footer__j-life {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding: 0 23px
	}
}

.footer__osusume .footer__j-life .footer_info {
	display: inline-block;
	vertical-align: middle;
	padding-right: 30px
}

@media only screen and (max-width: 767px) {
	.footer__osusume .footer__j-life .footer_info {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 30%;
		flex: 1 0 30%;
		padding-right: 0
	}
}

.footer__osusume .footer__j-life .footer_info img {
	max-width: 316px;
	height: auto
}

@media only screen and (max-width: 767px) {
	.footer__osusume .footer__j-life .footer_info img {
		max-width: 100%
	}
}

.footer_copyright {
  font-size: 12px;
	position: relative;
	padding: 10px 0;
	text-align: center;
	color: #a1a1a0;
	background: #000
}

.footer-info__banner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
	justify-content: space-between;
	width: 850px;
	max-width: 90%;
	margin: 20px auto 50px;
}

.footer-info__banner a{
	width: 47%;
  margin-top: 30px;
}

.footer-info__banner a:hover {
	opacity: 0.7;
}

@media screen and ( max-width : 767px ) {
	.footer-info__banner {
		flex-wrap: wrap;
		width: 92%;
		padding: 0;
		margin: 0 auto 5%;
	}

	.footer-info__banner a{
		width: 100%;
	}

	.footer-info__banner a + a{
		margin-top: 6%;
	}
}


.btn-gototop {
	position: fixed;
	width: 56px;
	height: 56px;
	bottom: 20px;
	right: 20px;
	z-index: 2000;
	opacity: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s
}

@media only screen and (max-width: 767px) {
	.btn-gototop {
		width: 40px;
		height: 40px;
		bottom: 10px;
		right: 10px
	}
}

.btn-gototop a:hover {
	opacity: 0.7
}

.btn-gototop.show {
	opacity: 1
}


/* ============================================
  contents
============================================ */

.mainContents {
  position: relative;
}

/* sec_mv
--------------------------------- */
.sec_mv {
  position: relative;
}
.sec_mv_bg {
  height: calc(100vh - 45px);
  min-height: 700px;
  background: url("../img/bg_mv.jpg") no-repeat center bottom / cover;
}
.mv_text {
  padding-top: 50px;
  position: relative;
}
.mv_catch {
  width: 163px;
  margin: auto;
}
.mv_logo {
  width: 176px;
  margin: auto;
  position: absolute;
  left: -90px;
  top: 40px;
}
.mv_hakodate {
  margin-top: 30px;
  width: 300px;
}
.sec_mv .information {
  background: #fff;
  font-size: 14px;
  padding: 5px 15px;
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.sec_mv .info_title {
  color: #005d8d;
  font-weight: bold;
  margin-right: 10px;
}
.sec_mv .information > span {
  margin-left: 10px;
}

@media only screen and (max-width: 767px) {
  .sec_mv_bg {
    height: calc(100vh - 120px);
    min-height: 500px;
  }
  .mv_text {
    width: 60%;
    max-width: 300px;
  }
  .mv_logo {
    width: 50%;
    left: -12%;
  }
  .mv_catch {
    max-width: 163px;
    margin: auto;
    width: 56%;
  }
  .mv_hakodate {
    width: 100%;
    margin: 20px auto 0;
  }
  .sec_mv .information {
    display: block;
    font-size: 12px;
    width: 100%;
    position: static;
    bottom: 0;
    left: 0;
    right: auto;
  }
  .sec_mv .information p {
    line-height: 1.6;
  }
}

/* nav
--------------------------------- */
.nav {
  background: rgba(89, 73, 63, .85);
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 11;
}
.menu__item {
  color: #fff;
  text-align: center;
  width: 25%;
	height: 100%;
  position: relative;
}
.menu__item:::before {
	content: '';
	display: block;
	position: absolute;
	width: 1px;
	height: calc(100% - 16px);
	top: 8px;
	left: 0;
	background-color: #535353
}
.menu__item > a {
	display: block;
	padding: 15px 0;
	color: #fff;
	text-align: center;
	cursor: pointer;
  transition: .2s;
}
.menu__item > a::after {
	content: '';
	display: inline-block;
	position: relative;
	width: 12px;
	height: 12px;
	top: -3px;
	margin-left: 10px;
	border: solid 1px #fff;
	border-left: 0;
	border-top: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.menu__item > a:hover {
  background: #857d7a;
}
.nav.fixed {
	position: fixed;
	width: 100%;
	top: 0
}

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

  .nav .container {
    padding: 0;
  }

  .menu__item > a {
    padding: 10px 2px;
    font-size: 8px;
		line-height: 1.4;
  }
  .menu__item > a::after {
		display: block;
		width: 10px;
		height: 10px;
		left: calc(50% - 5px);
		top: 0;
		margin-left: 0
	}

}


/* sec_seibuarea
--------------------------------- */
.seibuarea_main {
  height: 100vh;
  min-height: 1000px;
  position: relative;
}
.sec_seibuarea::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../img/bg_seibuarea_fixed.jpg") no-repeat center bottom / cover;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -2;
}
.seibuarea_title {
  width: 130px;
  position: absolute;
  right: 5%;
  top: 12%;
}
.seibuarea_text {
  font-size: 18px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  height: 680px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  bottom: 5%;
  left: 3%;
}
.seibuarea_block {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}
.seibuarea_block::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../img/bg_seibuarea_grad.png") no-repeat center top / cover;
  position: absolute;
  left: 0;
  top: 0;
}
.seibuarea_block.first-block::after {
  height: 150%;
  top: -50%;
  background-image: url("../img/bg_seibuarea_grad_first.png");
}
.seibuarea_block_in {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.seibuarea_block_title {
  width: 500px;
  margin: 0 auto 30px;
}
.seibuarea_block_img {
  width: 755px;
}
.seibuarea_block_text {
  width: 365px;
  margin-left: 20px;
}
.seibu_block_text_title {
  width: 395px;
  margin-left: -30px;
  margin-bottom: 30px;
}
.seibu_block_text_access {
  border: 1px solid #8d8372;
  padding: 15px 20px;
  margin-top: 20px;
}
.seibu_block_text_access dt {
  font-size: 18px;
  font-weight: bold;
}
.seibu_block_text_sub_title {
  font-size: 24px;
  font-weight: bold;
}

.seibuarea_block figcaption {
  font-size: 14px;
  text-align: right;
}

.seibuarea_block02 {
  overflow: hidden;
}
.seibuarea_block02 .box01 {
  width: 500px;
  float: left;
  margin-left: 120px;
  margin-top: 106px;
}
.seibuarea_block02 .box02 {
  width: 500px;
  float: right;
}
.seibuarea_block02 .box03 {
  clear: both;
  padding-top: 40px;
  overflow: hidden;
}
.seibuarea_block02 .box04 {
  margin-top: 40px;
  position: relative;
}
.seibuarea_block02 .box03 .img {
  float: left;
  width: 570px;
}
.seibuarea_block02 .box04 .img {
  float: right;
  width: 545px;
  margin-top: -180px;
}
.seibuarea_block02 .box03 .text {
  float: right;
  width: 545px;
}
.seibuarea_block02 .box04 .text {
  float: left;
  width: 570px;
}

.seibuarea_block02 .seibuarea_block_cont {
  position: relative;
}

.seibuarea_block03 .box01 .img {
  width: 545px;
  float: right;
}
.seibuarea_block03 .box01 .text {
  width: 565px;
  float: left;
  margin-top: 40px;
}
.seibuarea_block03 .box01 {
  overflow: hidden;
  margin-bottom: 20px;
}
.seibuarea_block03 .box02,
.seibuarea_block03 .box03,
.seibuarea_block03 .box04 {
  width: 370px;
  float: left;
}
.seibuarea_block03 .box02 {
  margin-top: -70px;
}
.seibuarea_block03 .box03 {
  margin-top: 0px;
  margin-left: 15px;
}
.seibuarea_block03 .box04 {
  margin-top: 70px;
  margin-left: 15px;
}

.seibuarea_block04 .seibuarea_block_in {
  overflow: hidden;
}
.seibuarea_block04 .box01 .img {
  width: 545px;
  float: right;
}
.seibuarea_block04 .box01 .text {
  width: 565px;
  float: left;
}
.seibuarea_block04 .box01 {
  overflow: hidden;
  margin-bottom: 20px;
}
.seibuarea_block04 .box02,
.seibuarea_block04 .box03,
.seibuarea_block04 .box04 {
  width: 370px;
  float: left;
}
.seibuarea_block04 .box02 {
  margin-top: -70px;
}
.seibuarea_block04 .box03 {
  margin-top: 0px;
  margin-left: 15px;
}
.seibuarea_block04 .box04 {
  margin-top: 70px;
  margin-left: 15px;
}

.seibuarea_block05 .box01 {
  position: relative;
}
.seibuarea_block05 .box01 .img {
  width: 545px;
  position: absolute;
  right: 0;
  top: 0;
}
.seibuarea_block05 .box01 .text {
  width: 570px;
}

.seibuarea_pickup {
  padding-bottom: 150px;
}
.seibuarea_pickup_box {
  width: 940px;
  margin: auto;
  padding: 40px;
  background: #e6dccf;
}
.seibuarea_pickup_icon {
  width: 136px;
  margin-top: -52px;
}
.seibuarea_pickup_title {
  width: 278px;
  margin: 30px 0;
}
.seibuarea_pickup .text {
  width: 620px;
  margin-right: 20px;
}
.seibuarea_pickup .img {
  width: 220px;
  margin-top: 35px;
}
.seibuarea_pickup .text a {
  text-decoration: underline;
}

.deco {
  position: absolute;
  z-index: 2;
}
.deco01 {
  left: 0;
  top: 100px;
}
.deco02 {
  left: -80px;
  top: 420px;
}
.deco03 {
  right: -40px;
  top: 380px;
}
.deco04 {
  left: 0;
  top: -60px;
}
.deco05 {
  right: 0;
  top: 510px;
}
.deco06 {
  left: 2%;
  bottom: 0;
}

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

  .seibuarea_main {
    min-height: 780px;
  }
  .seibuarea_title {
    max-width: 90px;
    width: 24%;
    position: absolute;
    right: 3%;
    top: 10%;
  }
  .seibuarea_text {
    height: auto;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    position: absolute;
    bottom: 5%;
    left: 3%;
    right: 3%;
    font-size: 13px;
    line-height: 1.6;
  }

  .seibuarea_block_title {
    width: 250px;
  }

  .seibuarea_block_text {
    width: 100%;
    margin: 0;
  }
  .seibu_block_text_title {
    width: 100%;
    margin-left: auto;
    margin-bottom: 10px;
  }
  .seibuarea_block_cont {
    display: block;
  }
  .seibuarea_block_img {
    width: 100%;
    margin: 0 -15px;
  }
  .seibu_block_text_sub_title {
    font-size: 18px;
  }
  .seibu_block_text_access dt {
    font-size: 16px;
  }
  .seibuarea_block {
    padding-top: 30px;
    padding-bottom: 30px;
  }


  .seibuarea_block figcaption {
    font-size: 11px;
    text-align: right;
    line-height: 1.4;
    margin-top: 4px;
  }
  .seibuarea_block02 .box01 {
    width: 48.5%;
    float: left;
    margin-left: 0;
    margin-top: 10%;
  }
  .seibuarea_block02 .box02 {
    width: 48.5%;
    float: right;
  }
  .seibuarea_block02 .box03 {
    width: 100%;
    clear: both;
    float: none;
    padding-top: 20px;
  }
  .seibuarea_block02 .box03 .img {
    width: 86%;
    margin: 0 auto 20px;
    float: none;
  }
  .seibuarea_block02 .box03 .text,
  .seibuarea_block02 .box04 .text {
    width: 100%;
    float: none;
  }
  .seibuarea_block02 .box04 .img {
    width: 86%;
    position: static;
    margin: 0 auto 20px;
    float: none;
  }
  .seibuarea_block02 .box04 {
    width: 100%;
    float: none;
    margin-top: 30px;
    position: relative;
  }

  .deco04 {
    top: -30px;
    width: 60%;
  }

  .seibuarea_block03 .box01 .img {
    width: 86%;
    float: none;
    margin: auto;
  }
  .seibuarea_block03 .box01 .text {
    width: 100%;
    float: none;
    margin-top: 20px;
  }
  .seibuarea_block03 .box02 {
    margin-top: 0;
  }
  .seibuarea_block03 .box02, .seibuarea_block03 .box03, .seibuarea_block03 .box04 {
    width: 49%;
    float: left;
    margin-left: 0;
  }
  .seibuarea_block03 .box03 {
    margin-left: 2%;
    margin-top: 25%;
  }
  .seibuarea_block03 .box04 {
    clear: both;
    margin-top: -14%;
  }
  .deco07 {
    width: 20%;
    right: 5%;
    bottom: -5%;
  }


  .seibuarea_block04 .box01 {
    margin-bottom: 0;
  }
  .seibuarea_block04 .box01 .text {
    width: 100%;
    float: none;
  }
  .seibuarea_block04 .box01 .img {
    width: 86%;
    float: none;
    margin: 20px auto;
  }
  .seibuarea_block04 .box02 {
    margin-top: 0;
  }
  .seibuarea_block04 .box02, .seibuarea_block04 .box03, .seibuarea_block04 .box04 {
    width: 49%;
    float: left;
    margin-left: 0;
  }
  .seibuarea_block04 .box03 {
    margin-left: 2%;
    margin-top: 20%;
  }
  .seibuarea_block04 .box04 {
    clear: both;
    margin-top: -14%;
  }

  .seibuarea_block05 .box01 .text {
    width: 100%;
    margin-bottom: 20px;
  }
  .seibuarea_block05 .box01 .img {
    width: 86%;
    margin: 20px auto;
    position: static;
  }
  .seibuarea_pickup_box {
    width: 100%;
    padding: 20px;
  }
  .seibuarea_pickup_icon {
    width: 120px;
    margin-top: -35px;
  }
  .seibuarea_pickup_title {
    width: 200px;
    margin: 15px 0;
  }
  .seibuarea_pickup .img {
    width: 220px;
    margin-top: 20px;
    margin: 20px auto 0;
  }

}

/* sec_interview
--------------------------------- */
.sec_interview {
  position: relative;
  background: #fff;
}
.interview_text {
  width: 550px;
  padding: 100px 0 70px;
  background: #d9e0da;
}
.interview_text_in {
  width: 410px;
}
.interview_main_figure_wrap .img {
  width: 220px;
  margin: 100px auto 30px;
  text-align: center;
}

.interview_img {
  width: calc(100% - 550px);
  position: relative;
}
.interview_img figcaption {
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 15px 30px;
  background: rgba(47, 49, 48, 0.8);
}

.interview_cont_in {
  position: relative;
}
.interview_cont_title {
  width: 50px;
  position: absolute;
  left: 30px;
  top: 80px;
}
.interview_cont_qa {
  padding: 80px 0 80px 100px;
}
.interview_cont_qa .qa_text {
  margin-top: 80px;
  padding-left: 50px;
}
.interview_cont_qa .interview_q {
  font-size: 20px;
  line-height: 1.4;
  text-indent: -2.2em;
  margin-bottom: 10px;
}
.interview_cont_qa .interview_a {
  text-indent: -3em;
}

.interview_gallery {
  padding-bottom: 100px;
}
.interview_gallery_title {
  width: 425px;
  margin: auto;
}
.interview_gallery_slide {
  max-width: 1000px;
  margin: 20px auto 0;
  position: relative;
}
.interview_gallery_slide_main {
  padding: 7px;
}
.interview_gallery_slide_main .slide-item {
  position: relative;
}
.interview_gallery_slide_main .caption {
  background: #fff;
  font-size: 14px;
  padding: 5px 10px;
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.interview_gallery_slide_main .caption .slick-counter {
  margin-left: 10px;
  display: inline-block;
  font-weight: bold;
}
.interview_gallery_slide_thumb .thumbnail-item {
  width: 188px;
  float: left;
  margin: 7px;
}
.interview_gallery_slide .slick-prev:before,
.interview_gallery_slide .slick-next:before {
  content: none;
}
.interview_gallery_slide .slick-prev,
.interview_gallery_slide .slick-next {
  width: 40px;
  height: 60px;
  top: auto;
  bottom: 10px;
  opacity: 1;
}
.interview_gallery_slide .slick-prev:hover,
.interview_gallery_slide .slick-next:hover {
  opacity: 1;
}
.interview_gallery_slide .slick-prev {
  left: -60px;
  background: url("../img/prev.png") no-repeat center center;
}
.interview_gallery_slide .slick-next {
  right: -60px;
  background: url("../img/next.png") no-repeat center center;
}


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

  .interview_text_in {
    width: 100%;
  }
  .interview_title {
    width: 200px;
    margin: 20px auto;
  }
  .interview_text {
    width: 100%;
    padding: 20px 20px 30px;
    background: #d9e0da;
  }
  .interview_main_figure_wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .interview_main_figure_wrap .img {
    width: 100px;
    margin: 0;
    text-align: center;
  }
  .interview_main_figure_desc {
    width: calc(100% - 80px);
    padding-left: 20px;
  }
  .interview_img {
    width: 100%;
    position: relative;
  }
  .interview_img figcaption {
    color: #fff;
    font-size: 12px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(47, 49, 48, 0.8);
    padding: 8px 20px;
  }

  .interview_cont_title {
    width: 50px;
    position: absolute;
    left: 0px;
    top: 20px;
  }
  .interview_cont_qa {
    padding: 30px 0 0 10px;
  }
  .interview_cont_qa .qa_text {
    margin-top: 30px;
    padding-left: 40px;
  }
  .interview_cont_qa .interview_q {
    font-size: 16px;
    font-weight: bold;
  }

  .interview_gallery {
    padding: 40px 0;
  }
  .interview_gallery_title {
    width: 260px;
    margin: auto;
  }
  .interview_gallery_slide {
    padding: 10px 0;
  }
  .interview_gallery_slide_main .caption {
    background: #fff;
    font-size: 11px;
    padding: 2px 5px;
    position: absolute;
    right: 5px;
    bottom: 5px;
  }
  .interview_gallery_slide_main {
    padding: 2px;
  }
  .interview_gallery_slide_thumb .thumbnail-item {
    margin: 2px;
  }
  .interview_gallery_slide .slick-prev,
  .interview_gallery_slide .slick-next {
    width: 10px;
    height: 20px;
    background-size: 10px 20px;
    bottom: 5%;
  }
  .interview_gallery_slide .slick-next {
    right: -14px;
  }
  .interview_gallery_slide .slick-prev {
    left: -14px;
  }

}

/* sec_story
--------------------------------- */
.sec_story {
  background: #fff;
  position: relative;
  padding-bottom: 100px;
}
.story_title_wrap {
  height: 300px;
  color: #fff;
  background: url("../img/bg_story_title.png") no-repeat center center / cover;
}
.story_title {
  width: 350px;
  margin: 0 auto 30px;
}

.story_block {
  position: relative;
  margin-top: 50px;
  line-height: 1.6;
}
.story_block01_title {
  width: 47px;
  position: absolute;
  top: 0;
  right: 50px;
}
.story_block01_img {
  margin-bottom: 10px;
}
.story_block01_img li {
  width: 50%;
}
.story_block02_img {
  width: 760px;
  float: left;
}
.story_block02 {
  overflow: hidden;
}
.story_block02_title {
  width: 47px;
  position: absolute;
  top: 0;
  left: 40px;
}
.story_block02_text {
  width: 410px;
  float: right;
}
.story_block02_text_img {
  width: 160px;
  margin-top: 14px;
}

.story_block03_title {
  width: 241px;
  margin: 120px 0 12px 5px;
}
.story_block03_text {
  float: left;
  width: 360px;
}
.story_block03_img {
  float: right;
  width: 830px;
}
.story_block03_img li {
  width: 50%;
  padding-left: 1%;
}

.story_block04 {
  overflow: hidden;
}
.story_block04_img {
  width: 800px;
  float: left;
}
.story_block04_text {
  width: 360px;
  float: right;
}
.story_block04_text a {
  color: #005d8d;
  text-decoration: underline;
}
.story_block04_title {
  width: 328px;
  margin: 175px 0 20px;
}

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

  .sec_story {
    padding-bottom: 20px;
  }
  .story_title_wrap {
    height: auto;
    padding: 40px 20px;
  }
  .story_title {
    width: 220px;
    margin: 0 auto 30px;
  }
  .story_title_wrap p {
    text-align: left;
  }
  .story_block {
    margin-top: 30px;
  }
  .story_block01_title {
    width: 30px;
    position: absolute;
    top: 0;
    right: -10px;
  }
  .story_block01_img {
    margin: 0 -20px 10px;
  }

  .story_block01_img li {
    height: 40vw;
    min-height: 150px;
  }

  .story_block02_title {
    width: 30px;
    position: absolute;
    top: 0;
    left: 10px;
  }
  .story_block02_img,
  .story_block02_text {
    width: 100%;
    float: none;
  }
  .story_block02_img {
    height: 200px;
    margin-bottom: 10px;
  }
  .story_block02_text_img {
    width: 100px;
    margin-top: 10px;
    margin-right: 0;
    margin-left: auto;
  }
  .story_block03_title {
    width: 160px;
    margin: -65px 0 12px 0;
  }
  .story_block03_text {
    float: none;
    width: 100%;
  }
  .story_block03_img {
    float: none;
    width: 100%;
    padding-top: 20px;
  }
  .story_block04_text {
    width: 100%;
    float: none;
  }
  .story_block04_title {
    width: 200px;
    margin: 0 0 20px;
  }

  .story_block04_img {
    width: 100%;
    float: none;
    margin: 30px auto;
  }

}

/* sec_hotel
--------------------------------- */
.sec_hotel {
  position: relative;
  background: #fff;
}
.hotel_title_wrap {
  background: #005d8d;
  text-align: center;
  padding: 30px 0;
}
.hotel_title {
  width: 454px;
  margin: auto;
}
.hotel_text {
  width: 550px;
  padding: 100px 0 70px;
  background: #d6dfe4;
}
.hotel_text_in {
  width: 430px;
}
.hotel_name {
  width: 300px;
  margin-bottom: 40px;
}
.hotel_img {
  width: calc(100% - 550px);
  position: relative;
}
.hotel_info {
  margin-top: 100px;
}
.hotel_info dt {
  font-size: 18px;
  font-weight: bold;
}
.hotel_info dd {
  width: 100%;
  background: #fff;
  padding: 15px 25px;
  line-height: 1.6;
}
.hotel_info dd a {
  display: block;
  transition: .2s;
}
.hotel_info dd a:hover {
  opacity: 0.7;
}
.hotel_info_name {
  font-size: 18px;
  font-weight: bold;
}

.hotel_gallery_block_wrap {
  overflow: hidden;
  padding-bottom: 100px;
}
.hotel_gallery_block_wrap .slick-list {
  overflow: visible;
}
.hotel_gallery_block {
  margin-top: 110px;
  position: relative;
}
.hotel_slide_item {
  position: relative;
  outline: none;
}
.hotel_gallery_title {
  width: 87px;
  position: absolute;
  right: 50px;
  top: -35px;
}
.hotel_desc {
  width: 410px;
  padding: 3px;
  border: 2px solid #000;
  background: #fff;
  position: absolute;
  left: 30px;
  top: 365px;
  z-index: 1;
}
.hotel_desc_in {
  padding: 10px 15px;
  border: 1px solid #000;
}
.hotel_desc_title {
  font-size: 18px;
  font-weight: bold;
}
.hotel_desc p {
  line-height: 1.6;
}

.hotel_gallery_block01 .hotel_desc {
  top: 365px;
}
.hotel_gallery_block01 .hotel_gallery_list li:nth-child(1),
.hotel_gallery_block02 .hotel_gallery_list li:nth-child(1),
.hotel_gallery_block03 .hotel_gallery_list li:nth-child(1) {
  width: 100%;
}
.hotel_gallery_block01 .hotel_gallery_list li:nth-child(2),
.hotel_gallery_block01 .hotel_gallery_list li:nth-child(3) {
  width: 50%;
}

.hotel_gallery_block02 .hotel_desc {
  top: 340px;
}
.hotel_gallery_block02 .hotel_gallery_list li:nth-child(2) {
  width: 685px;
}
.hotel_gallery_block02 .hotel_gallery_list li:nth-child(3) {
  width: 515px;
  height: 300px;
}
.hotel_gallery_block02 dl {
  width: 485px;
  line-height: 1.4;
  position: absolute;
  right: 0;
  top: 825px;
}
.hotel_gallery_block02 dt {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.hotel_gallery_block03 .hotel_desc {
  top: 30px;
}
.hotel_gallery_block03 .hotel_slide_item {
  padding-bottom: 150px;
}
.hotel_gallery_block03 .hotel_gallery_list li:nth-child(2) {
  width: 350px;
  position: absolute;
  left: 25px;
  bottom: 0;
}
.hotel_gallery_block03 .hotel_slide_item dl {
  padding: 10px 0 0 400px;
}

.hotel_gallery .slick-dots li button:before {
  content: none;
}
.hotel_gallery .slick-dots li,
.hotel_gallery .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.hotel_gallery .slick-dots {
  bottom: -40px;
}
.hotel_gallery .slick-dots li {
  margin: 10px;
}
.hotel_gallery .slick-dots button {
  background: #ddd;
}
.hotel_gallery .slick-active button {
  background: #999;
}

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

  .hotel_title_wrap {
    padding: 25px 0;
  }
  .hotel_title {
    width: 260px;
    margin: auto;
  }
  .hotel_text {
    width: 100%;
    padding: 20px;
    order: 1;
  }
  .hotel_img {
    width: 100%;
    order: 0;
  }
  .hotel_info {
    margin-top: 10px;
  }
  .hotel_name {
    width: 200px;
    margin-bottom: 20px;
  }
  .hotel_info dd {
    padding: 10px 15px;
  }
  .hotel_info_name {
    font-size: 16px;
  }

  .hotel_gallery_in {
    padding: 0;
  }
  .hotel_gallery_block {
    margin-top: 60px;
  }
  .hotel_gallery_block .hotel_desc {
    position: static;
    width: calc(100% - 90px);
    margin: 0 0 15px 15px;
  }
  .hotel_gallery_title {
    width: 45px;
    position: absolute;
    right: 15px;
    top: -120px;
  }
  .hotel_desc_in {
    padding: 7px 10px;
  }
  .hotel_desc_title {
    font-size: 14px;
  }
  .hotel_desc p {
    font-size: 12px;
  }

  .hotel_gallery_block02 .hotel_gallery_list li:nth-child(2),
  .hotel_gallery_block02 .hotel_gallery_list li:nth-child(3) {
    width: 50%;
    height: 30vw;
  }
  .hotel_gallery_block02 dl {
    position: static;
    width: 100%;
    padding: 20px;
  }
  .hotel_gallery_block02 dt {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .hotel_gallery_block03 .hotel_gallery_list li:nth-child(2) {
    width: 120px;
    position: absolute;
    left: 10px;
    top: 175px;
    bottom: auto;
  }
  .hotel_gallery_block03 .hotel_slide_item {
    padding-bottom: 0;
  }
  .hotel_gallery_block03 .hotel_slide_item dl {
    padding: 10px 10px 0 140px;
    font-size: 12px;
  }
  .hotel_gallery_block_wrap {
    padding-bottom: 40px;
  }

}

/* sec_map
--------------------------------- */
.sec_map {
  padding: 140px 0 70px;
  background: url("../img/bg_map.jpg") no-repeat center center / cover;
}
.osusume_shop {
  width: 1000px;
  margin: 0 auto 60px;
}
.map_title_wrap {
  background: #005d8d;
  text-align: center;
  line-height: 120px;
}
.map_title {
  max-width: 400px;
  margin: auto;
}
.map_title img {
  vertical-align: middle;
}
.osusume_shop_in {
  padding: 40px;
  background: #fff;
}
.osusume_shop_cont {
  padding: 10px;
  background: url("../img/bg_stripe_blue.jpg") repeat left top;
  border-radius: 16px;
}
.osusume_shop_list {
  width: 830px;
  margin: auto;
  padding: 15px 0;
}
.osusume_shop_list li {
  width: 50%;
  padding: 5px;
}
.osusume_shop_list a {
  transition: .2s;
}
.osusume_shop_list a:hover {
  opacity: 0.7;
}

.rentalcar_title {
  width: 715px;
  margin: auto;
}
.spons_list {
  width: 440px;
  margin: 50px auto 30px;
}
.spons_list li {
  width: 182px;
}
.rentalcar_list {
  width: 860px;
  margin: 40px auto 10px;
	justify-content: space-around;
}
.rentalcar_list li {
  width: 172px;
}

.band_area {
  color: #fff;
  font-size: 14px;
  background: #005d8d
}
.band_area_in {
  max-width: 1080px;
  margin: auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

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

  .sec_map {
    padding: 60px 0 40px;
  }
  .osusume_shop {
    width: 100%;
    margin: 0 auto 60px;
  }
  .map_title_wrap {
    line-height: 60px;
  }
  .map_title {
    max-width: 240px;
    margin: auto;
  }
  .osusume_shop {
    width: 100%;
    margin: 0 auto 40px;
  }
  .osusume_shop_in {
    padding: 10px;
  }
  .osusume_shop_list {
    width: 100%;
    margin: auto;
    padding: 5px 0;
  }
  .osusume_shop_list li {
    width: 100%;
    padding: 2px 5px;
  }
  .osusume_shop_cont {
    padding: 10px 5px 0;
    border-radius: 6px;
  }

  .spons_list {
    width: 280px;
    margin: 30px auto;
  }
  .spons_list li {
    width: 140px;
  }
  .rentalcar_list_wrap.sp {
    display: block!important;
  }
  .rentalcar_list {
    width: 100%;
    margin: 20px auto;
  }
  .rentalcar_list li {
    width: 33%;
    text-align: center;
    padding: 10px 0;
  }
  .rentalcar_list li:nth-child(4n) {
    /*margin-left: 11%;*/
		margin: 0 auto;
  }
  .rentalcar_title {
    width: 260px;
    margin: auto;
  }
  .band_area_in {
    width: 86%;
    min-width: 86%;
  }

}
