@charset "utf-8";

/*
============================================================
base.css	※CSSファイルタイトルを記載
------------------------------------------------------------

■ デフォルトリセット
■ フォント
■ ヘッダー
■ コンテンツ
■ フッター

============================================================
*/

/* ---------------------------------------------------------
■ デフォルトリセット
--------------------------------------------------------- */
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0 none;
	border-collapse: collapse;
	color: inherit;
	font-size: 62.5%;/*1remは10px、1.5remは15px*/
  font-size: 10px;
	font-style: inherit;
	font-weight: inherit;
	list-style-type: none;
	margin: 0;
	outline: medium none;
	padding: 0;
	table-layout: fixed;
	text-decoration: none;
	vertical-align: baseline; }

* {
  margin: 0px;
  padding: 0px;
}

/* ---------------------------------------------------------
■ フォント
--------------------------------------------------------- */
body {
  font-family: 'Noto Sans JP', sans-serif;
}
/* 明朝の場合 使わない場合は削除
body { font-family: "ヒラギノ明朝 ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; }
*/


/* ---------------------------------------------------------
■ 全体
--------------------------------------------------------- */
.clearFix:after{
	content: ".";
	display: block; 
	clear: both; 
	height: 0; 
	font-size:0;	
	visibility:hidden;
}
.f_en{
  font-family: 'Josefin Sans', sans-serif;
}

.inner{
  /*width: 920px;*/
  margin: 0 auto;
  overflow: hidden;
}
.inner p{
  line-height: 2.6;
  font-size: 1.6rem;
}
.f_left{
  float: left;
}
.f_right{
  float: right;
}
.pc { display:inline!important;}
.sp { display:none!important; }

@media screen and (max-width: 751px) {
  .inner {
  width: 92%;
  }
  .inner p{
    line-height: 2.0;
    font-size: 1.4rem;
  }
  .f_left{
    float: none;
    margin-bottom: 5%;
  }
  .f_right{
    float: none;
  }
  .pc { display:none!important; }
  .sp { display:inline!important; }
  img {
    width: 100%;
  }
}



/* ---------------------------------------------------------
■ ヘッダー
--------------------------------------------------------- */
#header{
  position: relative;
}
h1{
  width: 100%;
  position: absolute;
  top:20px;
  left:20px;
  z-index: 70;
}
.sttl{
  text-align: center;
}
.sttl div{
  margin:20px 0 30px;
  background: url("../img/sttl_icon.png") left center no-repeat;
  padding: 2px 0 2px 55px;
  display: inline-block;
  text-align: left;
}
.sttl .ttl_en{
  font-family: 'Josefin Sans', sans-serif;
  display: block;
  font-size: 3.0rem;
}
.sttl .ttl_jp{
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
}
@media screen and (max-width: 751px) {
  h1{
    width: 50%;
  }
  h1 img{
    height: 65px;
    width: auto;
  }
}

/* スクロール後に出てくるロゴと背景 */
#fix_head{
  position: fixed;
  z-index: 75;
  width: 100%;
  top: 0;
  display: none;
  background:rgba(169,190,201,0.4);
  height: 90px;
}
#fix_head h1{
  top: 20px;
}
#fix_head h1 img{
  height: 50px;
}



/* ---------------------------------------------------------
■ gnav
--------------------------------------------------------- */
#gnav{
  width: 100%;  
}
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
	position: fixed;/*ボタン内側の基点となるためrelativeを指定*/
	background:#fff;
	cursor: pointer;
  width: 50px;
  height:50px;
	border-radius: 5px;
  z-index: 10000;
  top: 20px;
  right:20px;
}
.openbtn.active {
	background:#A9BEC9;
}

/*ボタン内側*/
.openbtn span{
  display: inline-block;
  transition: all .4s;/*アニメーションの設定*/
  position: absolute;
  }

.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
  height: 2px;
	background: #A9BEC9;
  width: 62%;
  left: 10px;
 }

.openbtn span:nth-of-type(1) {
	top:13px;	
}
.openbtn span:nth-of-type(2) {
	top:18px;
	left:0;
  right:0;
  margin: 0 auto;
	color: #A9BEC9;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.4rem;
  text-align: center;
}
.openbtn span:nth-of-type(3) {
	top:36px;
}
/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  background: #fff;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
  background: #fff;
}
#menu-btn-check {
  display: none;
}
#menu-btn-check:checked ~ .menu-content {
  left: 0;/*メニューを画面内へ*/
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background:rgba(255,255,255,0.8);
  text-align: center;
  transition: all 0.5s;/*アニメーション設定*/
}
.menu-content ul {
  padding: 70px 10px 0;
}
.menu-content ul li {
  list-style: none;
}
.menu-content ul li a {
  display: inline;
  width: 100%;
  font-size: 1.6rem;
  box-sizing: border-box;
  line-height: 2.8;
  border-bottom: 1px dashed #000;
  /*padding: 9px 15px 10px 0;
  position: relative;*/
}
/*.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
*/
@media screen and (max-width: 751px) {
  .menu-content ul li a {
    font-size: 1.4rem;
  }
}

/* ---------------------------------------------------------
■ MV（Slider）
--------------------------------------------------------- */
.mvArea{
  position: fixed;
  width: 100%;
  z-index: -1;
  top: 0;
}
.swiper-container {
  margin: 0 auto;
  width: 100%;
  /*height: 1000px;*//*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  position: relative;
  top:0;
  left:0;
  right:0;
  overflow: hidden;
}
.swiper-wrapper {
  width: 100%;
}
.swiper-wrapper .swiper-slide img{
  width: 100%;
}
@media screen and (max-width: 751px) {
  .swiper-container {
    /*height: 100vh;スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    height: auto;
  }
  .swiper-wrapper .swiper-slide img{
    width: 100%;
    margin: 0 auto;
  }
}

/*　MV下スクロールヒント　*/
/*スクロールダウン全体の場所*/
.scrolldown1{
	position:absolute;
	left:50%;
	bottom:10px;
	height:50px;/*全体の高さ*/
  z-index: 70;
}
/*Scrollテキストの描写*/
.scrolldown1 span{
	position: absolute;
	left:-15px;
	top: -15px;
	color: #fff;
	font-size: 1.4rem;
	letter-spacing: 0.00em;
}
/* 線の描写 */
.scrolldown1::after{
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 30px;
	background: #fff;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}



/* ---------------------------------------------------------
■ コンテンツ
--------------------------------------------------------- */
#contents{
  width: 100%;
  padding: 1042px 0 0;
  position: relative;
  z-index: 1;
}
#contents .contents_inner{
  width: 100%;
  background: #fff;
  padding-top: 10px;
}
/* sec01 */
.sec01 .inner{
  margin-top: 80px;
  max-width: 1400px;
  display: table;
}
.sec01 .left{
  width: 50%;
  padding: 0 2% 0 10%;
  box-sizing: border-box;
  display: table-cell;
  vertical-align: middle;
}
.sec01 .left p{
}
.sec01 .right{
  width: 47%;
  display: table-cell;
}
.sec01 .right img{
  width: 100%;
}
@media screen and (max-width: 1125px) {
.sec01 .left{
  padding: 0 2% 0 2%;
}
  
}
@media screen and (max-width: 751px) {
  #contents{
    padding: 800px 0 0;
  }
  /* sec01 */
  .sec01 .inner{
    margin-top: 30px;
    max-width: 92%;
  }
  .sec01 .left{
    width: 100%;
    display: block;
    padding: 0 0 30px;
  }
  .sec01 .right{
    width: 100%;
    display: block;
  }
}


/* sec02 */
.sec02 {
  margin: 100px auto;
  overflow: visible;
}
.sec02 .inner{
  max-width: 1400px;
  position: relative;
  height: 630px;
  overflow: visible;
}
.thum{
  position: absolute;
  display: block;
}
.thum.thum01{
  top:0;
  left:2.857%;
  z-index: 2;
  width: 29%;
  
}
.thum.thum02{
  top:56.3%;
  left:0;
  z-index: 1;
  width: 21%;
}
.thum.thum03{
  top:31.7%;
  left:24.2%;
  z-index: 1;
  width: 20%;
}
.thum.thum04{
  top:26.9%;
  left:47.7%;
  z-index: 2;
  width: 16%;
}
.thum.thum05{
  top:7.9%;
  right:23.4%;
  z-index: 1;
  width: 20%;
}
.thum.thum06{
  top:63.4%;
  right:11.5%;
  z-index: 2;
  width: 20%;
}
.thum.thum07{
  top:0;
  right:0;
  z-index: 1;
  width: 20%;
}

.fade {
  transition: all 1500ms;
  opacity: 0;
  visibility: hidden;
  transform: translate(0px, 40px);
}

.fadein {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
} 
@media screen and (max-width: 751px) {
  .sec02 .inner{
    max-width: 92%;
    height: 500px;
  }
  
  .thum.thum01{
    top:0;
    left:2.857%;
    width: 39%;

  }
  .thum.thum02{
    top:80%;
    left:28%;
    width: 31%;
    z-index: 2;
  }
  .thum.thum03{
    top:38%;
    left:10%;
    width: 30%;
  }
  .thum.thum04{
    top:35%;
    left:46%;
    width: 22%;
  }
  .thum.thum05{
    top:7.9%;
    right:35%;
    width: 35%;
  }
  .thum.thum06{
    top:73%;
    right:3%;
    width: 35%;
  }
  .thum.thum07{
    top:0;
    right:0;
    width: 30%;
  }
}
@media screen and (max-width: 520px) {  
  .sec02 .inner{
    height: 510px;
  }
  .thum.thum01{
    top:0;
    left:5%;
    width: 52%;

  }
  .thum.thum02{
    top:85%;
    left:10%;
    width: 38%;
  }
  .thum.thum03{
    top:40%;
    left:0%;
    width: 35%;
  }
  .thum.thum04{
    top:53%;
    left:47%;
    width: 26%;
    z-index: 3;
  }
  .thum.thum05{
    top:30%;
    right:43%;
    width: 40%;
  }
  .thum.thum06{
    top:80%;
    right:0%;
    width: 40%;
  }
  .thum.thum07{
    top:5%;
    right:0;
    width: 35%;
  }
}




/* sec03 */
.sec03 .inner{
  max-width: 1400px;
  display: table;
}
.sec03 .left{
  width: 47%;
  display: table-cell;
}
.sec03 .left img{
  width: 100%;
}
.sec03 .right {
  display: table-cell;
  width: 50%;
  padding-left: 5%;
  box-sizing: border-box;
  vertical-align: middle;
}
.sec03 .right p{
  padding-left: 10%;
}
@media screen and (max-width: 751px) {
  .sec03 .left{
    width: 100%;
    display: block;
    padding-right: 0;
  }
    .sec03 .right {
    width: 100%;
    padding-left: 0;
    display: block;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .sec03 .right p{
    padding-left: 0;
  }
}


/* sec04 */
.sec04 {
  background: url("../img/bg_plan.png") center center no-repeat;
  background-size: cover;
  margin: 100px auto;
  padding: 100px 0 140px;
}
.sec04 .inner{
  width: 920px;
}
.sec04 h2{
  margin: 0 auto 20px;
}
.sec04 ul{
  width: 920px;
  overflow: hidden;
}
.sec04 li{
  width: 215px;
  min-height: 500px;
  float: left;
  margin-right: 20px;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}
.sec04 li:last-child{
  margin-right: 0;
}
.sec04 h3.ttl_price{
  font-size: 1.4rem;
  margin: 15px auto;
  font-weight: bold;
}
.sec04 .ph{
  margin-bottom: 15px;
  line-height: 0;
}
.sec04 .price{
  margin-bottom: 10px;
  font-size: 2.4rem;
  line-height: 1.6;
}
.sec04 .price span{
  font-size: 1.2rem;
}
.sec04 .text{
  text-align: left;
}
.sec04 .text span{
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 5px;
  display: block;
}
.sec04 .text span.attention {
  font-size: 1.2rem;
  padding-left: 1em;
  text-indent: -1em;
}
.sec04 h3.f_en{
  font-size: 3.0rem;
  text-align: center;
  margin:80px auto 25px;
}

.sec04 .swiper-button-next, .swiper-rtl .swiper-button-prev,
.swiper-button-prev, .swiper-rtl .swiper-button-next{
  display: none;
}
  /* ページネーションのサイズと色 */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  display: none;
}
@media screen and (max-width: 751px) {
  .sec04 {
    margin: 50px auto;
    padding: 50px 0 ;
  }
  .sec04 .inner{
    width: 92%;
  }
  .sec04 h2{
    margin: 0 auto 10px;
  }
  .sec04 h3.f_en{
    margin:50px auto 25px;
  }
  .sec04 .swiper {
    width: 70%;
    margin: 0 auto; 
    padding: 0 50px;
  }
  .sec04 ul{
    width: 100%;
    overflow: visible;
  }
  .sec04 li,
  .sec04 li:last-child{
    width: 65%;
    float: none;
    margin: 0 auto 20px;
  }
  .sec04 h3.ttl_price{
    margin: 5px auto 12px;
  }
  .sec04 .price{
    font-size: 2.0rem;
    line-height: 1.4;
  }
  
  .sec04 .swiper-wrapper .swiper-slide img{
    width: 100%;
  }
  .sec04 .swiper-button-next, .swiper-rtl .swiper-button-prev,
  .swiper-button-prev, .swiper-rtl .swiper-button-next{
    display: block;
    color: #fff;
  }
  /* ページネーションのサイズと色 */
  .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    display: inline-block;
    background-color: #000;
  }
  /* ページネーションの位置 */
  .swiper-horizontal>.swiper-pagination-bullets, 
  .swiper-pagination-bullets.swiper-pagination-horizontal, 
  .swiper-pagination-custom, 
  .swiper-pagination-fraction{
    bottom: 0px;
  }
}

/*all*/
.price_option {
  overflow: hidden;
}
.price_option li{
  float: left;
  margin-right: 20px;
  background: #fff;
  width: 215px;
  border: 1px solid #000;
  padding: 1px;
  box-sizing: border-box;
  text-align: center;
  min-height: auto;
}
.price_option.col2 li{
  margin-right: 2%;
  width: 49%;
}
.price_option li:last-child{
  margin-right: 0;
}
.price_option .price_option_ttl {
  background: #000;
  padding: 15px 0;
  font-size: 1.6rem;
  color: #fff;
}
.price_option div.box_in {
  display: table;
  height: 100px;
  width: 100%;
}
.price_option p{
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 0 5px;
  display: table-cell;
  vertical-align: middle;
}
.price_option p span{
  font-size: 1.2rem;
  padding: 5px 0 0;
  display: block;
}
@media screen and (max-width: 751px) {
  .price_option li,
  .price_option.col2 li,
  .price_option li:last-child{
    margin: 0 auto 2%;
    width: 100%;
    float: none;
  }
  .price_option .price_option_ttl {
    padding: 10px;
    font-size: 1.4rem;
  }
  .price_option div.box_in {
    height: auto;
    padding: 10px;
  } 
  .price_option p{
    font-size: 1.4rem;
    padding: 10px;
  }
  .price_option p span{
    font-size: 1.0rem;
  }
}




/* sec05 */
.sec05{
  width: 920px;
  margin: 0 auto 50px;
}
.sec05 h2 {
  margin-bottom: 20px;
}
.sec05 li{
  display: table;
  width: 100%;
  margin-bottom: 50px;
}
.sec05 .box_num{
  position: relative;
  width: 160px;
  height: 160px;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  border: 1px solid #000;
  font-size: 3.0rem;
}
.sec05 .box_num:after {
	display: block;
	position: absolute;
	top: 1px;
	right: 109px;
	border-right: 50px solid transparent;
	border-top: 50px solid #000; 
	content: "";
}
.sec05 .flow dl {
  display: table-cell;
  padding-left: 30px;
  vertical-align: middle;
}
.sec05 .flow dt {
  padding: 0.2rem 1.5rem;
  border-left: 3px solid #000;
  margin-bottom: 15px;
  font-size: 2.0rem;
  font-weight: 600;
}
.sec05 .flow dd {
  font-size: 1.6rem;
  line-height: 1.6;
}

@media screen and (max-width: 751px) {
  .sec05 {
    width: 100%;
  }  
  .sec05 .box_num{
    width: 60px;
    font-size: 2.0rem;
  }
  .sec05 .box_num:after {
    right: 1px;
    border-right: 58px solid transparent;
    border-top: 58px solid #000; 
  }
  .sec05 .flow dl {
    padding-left: 20px;
  }
  .sec05 .flow dt {
    font-size: 1.6rem;
    padding: 0.1rem 1.0rem;
    margin-bottom: 10px;
  }
  .sec05 .flow dd {
    font-size: 1.4rem;
  }
}



/* sec06 rantal studio*/
.sec06{
  margin: 0 auto 100px;
}
.sec06 .inner {
  max-width: 1400px;
}
.sec06 h2 {
  margin-bottom: 20px;
}
.sec06 .f_left{
  width: 50%;
  padding-left: 10%;
  box-sizing: border-box;
}
.sec06 .f_right{
  width: 47%;
}
.sec06 .f_right img{
  width: 100%;
}
.sec06 ul.price_option{
  margin: 30px 0 20px;
}
ul.attention{
  width: 100%;
}
ul.attention li{
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 5px;
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 751px) {
  .sec06 .inner {
    max-width: 92%;
  }
  .sec06 .f_left{
    width: 100%;
    padding-left: 0;
  }
  .sec06 .f_right{
    width: 100%;
  }
}

/* sec07 */
.sec07{
  width: 920px;
  margin: 0 auto 100px;
}
.sec07 h2 {
  margin-bottom: 20px;
}
.sec07 .class {
  margin: 50px auto 100px;
}
.sec07 .f_left{
  width: 480px;
}
.sec07 .f_right{
  width: 410px;
  border: 1px solid #000;
  padding: 40px 35px;
  box-sizing: border-box;
}
.sec07 ul.price_option{
  margin: 30px 0 20px;
}
.sec07 dl dt{
  background: url("../img/icon_camera.png") left center no-repeat;
  padding-left: 50px;
  margin-bottom: 30px;
  font-size:2.0rem; 
  font-weight: 600;
}
.sec07 dl dd .f_en{
  font-size:2.0rem; 
}
.sec07 dl dd{
  border-bottom: 1px dashed #000;
  padding-bottom: 5px;
  margin-bottom: 10px;
  line-height: 2.0;
  font-size:2.0rem; 
}
@media screen and (max-width: 751px) {
  .sec07 {
    width: 100%;
  }
  .sec07 .class {
    margin: 30px auto 0;
  }
  .sec07 .f_left{
    width: 100%;
  }
  .sec07 .f_right{
    width: 100%;
  }
  .sec07 dl dt{
    font-size:1.6rem; 
  }
  .sec07 dl dd .f_en{
    font-size:1.4rem; 
  }
  .sec07 dl dd{
    font-size:1.4rem; 
  }
}



/* sec08 */
.sec08{
  width: 920px;
  margin: 0 auto 100px;
}
.sec08 h2 {
  margin-bottom: 20px;
}
.sec08 .staff {
  overflow: hidden;
}
.sec08 .f_left{
  width: 500px;
}
.sec08 .f_right{
  width: 373px;
}
.sec08 .staff h3 {
  border: 1px dashed #000;
  padding: 10px 20px;
  margin-bottom: 30px;
  font-size: 1.6rem;
  display: inline-block;
}
@media screen and (max-width: 751px) {
  .sec08 {
    width: 100%;
  }
  .sec08 .f_left{
    width: 100%;
  }
  .sec08 .f_right{
    width: 70%;
    margin: 0 auto;
  }
  .sec08 .staff h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}


/* sec09 */
.sec09{
  width: 920px;
  margin: 0 auto 100px;
}
.sec09 h2 {
  margin-bottom: 20px;
}
@media screen and (max-width: 751px) {
  .sec09 {
    width: 100%;
  }
}

/* sec10 */
.sec10{
  width: 920px;
  margin: 0 auto 100px;
}
.sec10 h2 {
  margin-bottom: 20px;
}
.sec10 .map {
  margin-bottom: 50px;
}
.sec10 .access {
  overflow: hidden;
}
.sec10 h3 {
  border: 1px dashed #000;
  padding: 10px 20px;
  margin-bottom: 30px;
  font-size: 1.6rem;
  display: inline-block;
}
.sec10 .f_left{
  width: 480px;
}
.sec10 .f_right{
  width: 400px;
}
.sec10 .f_left p{
  margin-bottom: 30px;
}
.sec10 .f_left p:last-child{
  margin-bottom: 0;
}
.sec10 .f_right img{
  width: 100%;
}
@media screen and (max-width: 751px) {
  .sec10 {
    width: 100%;
  }
  .sec10 .f_left{
    width: 100%;
  }
  .sec10 .f_right{
    width: 100%;
  }
  .sec10 h3 {
    font-size: 1.4rem;
  }
}



/* sec11 Q&A */
.sec11{
  width: 920px;
  margin: 0 auto 100px;
}
.sec11 h2 {
  margin-bottom: 20px;
}
.sec11 dl dt {
  background: url("../img/icon_arrow.png") 98% center no-repeat;
  border: 1px dashed #000;
  padding: 10px 10px 5px;
  margin-bottom: 30px;
  font-size: 1.6rem;
  line-height: 1.6;
}
.sec11 dl  dt.selected {
  background: url("../img/icon_arrow_close.png") 98% center no-repeat;
}
.sec11 dl dd {
  padding: 10px;
  margin-bottom: 50px;
  margin-left: 13px;
  font-size: 1.6rem;
  display: none;
  text-indent: -1.8em;
  padding-left: 1.8em;
  box-sizing: border-box;
}
.sec11 dl dt .f_en,
.sec11 dl dd .f_en{
  font-size:3.0rem; 
  vertical-align: sub;
}

/* アコーディオン */
.toggle_contents:first-of-type dd {
	display: block;
}


@media screen and (max-width: 751px) {
  .sec11{
    width: 100%;
  }
  .sec11 dl dt {
    background: url("../img/icon_arrow.png") 96% center no-repeat;
    font-size: 1.4rem;
    background-size: 15px auto;
  }
  .sec11 dl  dt.selected {
    background: url("../img/icon_arrow_close.png") 96% center no-repeat;
    background-size: 15px auto;
  }
  .sec11 dl dd {
    margin-bottom: 40px;
    font-size: 1.4rem;
  }
  .sec11 dl dt .f_en,
  .sec11 dl dd .f_en{
    font-size:2.0rem; 
    vertical-align: sub;
  }
}



/* sec12 */
.sec12{
  width: 920px;
  margin: 0 auto 100px;
}
.sec12 .inner {
  border: 1px solid #000;
  padding: 50px ;
  position: relative; 
  box-sizing: border-box;
}
.sec12 h2 {
  margin-bottom: 20px;
}
.sec12 p {
  line-height: 2.5;
}
.sec12 ul {
  position: relative;
  left: 50%; 
  float: left;
}
.sec12 ul li {
  position: relative;
  left: -50%; 
  float: left;
  list-style: none; 
  margin: 25px;
}
@media screen and (max-width: 751px) {
  .sec12 {
    width: 100%;
  }
  .sec12 .inner {
    padding: 10px 15px 25px;
  }
  .sec12 h2 {
    margin-bottom: 0;
  }
  .sec12 p {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
.sec12 ul li {
  margin: 5px;
}
.sec12 ul li img{
    width: 60%;
  }
}


/* ---------------------------------------------------------
■ フッター
--------------------------------------------------------- */
/* footer */
#footer {
  background: url("../img/bg_foot.png") center center no-repeat;
  background-size: cover;
  height: 400px;
  padding: 200px 0 40px;
  box-sizing: border-box;
  text-align: center;
}
#footer a{
  display: block;
  margin: 0 auto 30px;
}
#footer p{
  font-size: 1.4rem;
  line-height: 2.0;
  color: #fff;
}

@media screen and (max-width: 751px) {
  #footer {
  }
  #footer a {
    width: 100px;
  }
  #footer p{
    font-size: 1.0rem;
    line-height: 2.0;
    color: #fff;
  }
}
