@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900|Noto+Serif+JP:200,300,400,500,600,700,900&display=swap');
/*
Theme Name:
Theme URL: sugarbeats.co.jp
Description:
Author: sugarbeats
Version: 1
Tags:
License: sugarbeats.co.jp
License URI: sugarbeats.co.jp
*/
*{
  margin:0;
  padding:0;
  list-style: none;
  box-sizing: border-box;
}
body{
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",'Noto Sans JP';
  color:#333;
  font-size:15px;
  font-weight: normal;
  line-height: 1.5;
}
img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a,a:visited{
  text-decoration:none;
  color:#1977ec;
  transition:ease all .3s;
}
a:hover{
  color:#ec194a;
}
a:focus{
  outline: none;
}
.w10{
  width:100%;
  max-width:1000px;
  position: relative;
  margin:0 auto;
}
.w12{
  width:100%;
  max-width:1200px;
  position: relative;
  margin:0 auto;
}
/*=====================================
*
*font
*
=======================================*/
@font-face {
  font-family: "sgi";
  src: url("font/SGI-Text.woff")  format('woff');
}
.sgi {
  font-family: "sgi";
}
@font-face {
  font-family: "sgiI";
  src: url("font/sgibolditalic.woff")  format('woff');
}
.sgiI {
  font-family: "sgiI";
  letter-spacing: 1px;
}
/*=====================================
*
*header
*
=======================================*/
header{

}
.grid_header{
  display: grid;
  grid-template-columns:20% auto 10%;
  padding:0 10px;
  height:170px;
  align-content: end;

}

.grid_header .logo{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.grid_header .logo a img{
  transition:ease all .3s;
}
.grid_header .logo a img:hover{
  opacity: .6;
}
.grid_header .grid_header_center{
  display: grid;
  padding-left:10%;
  grid-template-columns: 100%;
  grid-template-rows: auto;
}
.grid_header .grid_header_center > *:nth-child(1){
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.grid_header .grid_header_center .tel{
  color:#2baaa3;
}
.grid_header .grid_header_center .tel .top{
  display: block;
  font-size:20px;
}
.grid_header .grid_header_center .tel a{
  display: block;
  margin:5px auto;
}
.grid_header .grid_header_center .tel a img{
  transition:ease all .3s;
}
.grid_header .grid_header_center .tel a img:hover{
  opacity: .6;
}
.grid_header .grid_header_center .tel .bottom{
  display: block;
  font-size:16px;
}
.grid_header .grid_header_center .contact_area{
  display: grid;
  grid-template-columns: auto auto auto;
  align-content: center;
  justify-content: end;
}
.grid_header .grid_header_center .contact_area .document{
  display: flex;
  align-items: center;
  padding:0 35px;
}
.grid_header .grid_header_center .contact_area .document a{
  background: #fcbe11;
  color: #fff;
  padding: 20px 40px;
  line-height: 1;
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  border:3px solid #fcbe11;
}
.grid_header .grid_header_center .contact_area .document a:hover{
  background: #fff;
  color: #fcbe11;
}
.grid_header .grid_header_center .contact_area .lang{
  display: grid;
  flex-wrap: wrap;
  align-content: center;
  justify-items: center;
}
.grid_header .grid_header_center .contact_area .lang span{
  display: block;
  position: relative;
  margin-bottom: 5px;
}
.grid_header .grid_header_center .contact_area .lang span::before{
  content:'';
  display: block;
  width:15px;
  height:1px;
  position: absolute;
  left:50%;
  bottom:-4px;
  transform:translateX(-50%);
  background:#222;
}
.grid_header .grid_header_center .contact_area .lang a{
  color:#ccc;
}
.grid_header .grid_header_center .contact_area .lang a:hover{
  color: #333;
}
.grid_header .grid_header_center .Gmenu{
  display: grid;
  grid-template-columns:repeat(6,calc(100%/6));
}
.grid_header .grid_header_center .Gmenu li{
  position: relative;
}
.grid_header .grid_header_center .Gmenu li::before{
  content:'';
  position: absolute;
  left:0;
  bottom:0;
  background:#2baaa3;
  height:4px;
  width:0;
  display: block;
  transition:ease all .3s;
}
.grid_header .grid_header_center .Gmenu li:hover::before{
  width:100%;
}
.grid_header .grid_header_center .Gmenu li a{
  display: block;
  padding:15px 10px;
  color:#222;
  font-size:18px;
  text-align: center;
}
.grid_header .grid_header_center .Gmenu li a:hover{
  color:#2baaa3;
}
.grid_header .grid_header_center .Gmenu li.contact::before{
  content:none;
}
.grid_header .grid_header_center .Gmenu li.contact a{
  color:#fff;
  background:#2baaa3;
}
.grid_header .grid_header_center .Gmenu li.contact a:hover{
  opacity: .6;
}
.grid_header .grid_header_center .Gmenu li .sub-menu{
  position: absolute;
  left:0;
  top:100%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition:ease all .3s;
  width:100%;
  display: block;
}
.grid_header .grid_header_center .Gmenu li:hover .sub-menu{
  opacity: 1;
  pointer-events: all;
}
.grid_header .grid_header_center .Gmenu li .sub-menu li a{
  display: block;
  text-align: left;
  background:rgba(255,255,255,.8);
  border-bottom:1px solid #efefef;
}
.grid_header .grid_header_right{
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid_header .grid_header_right a img{
  transition:ease all .3s;
}
.grid_header .grid_header_right a img:hover{
  opacity: .6;
}
/*=====================================
*mv
=======================================*/
.mv{
  position: relative;
  height:calc(100vh - 170px);
  overflow: hidden;
}
.mv li{
  position: absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:100%;
}
.mv li .image{
  position: relative;
}
.mv li .image::after{
  content:'';
  display: block;
  width:100%;
  height:100%;
  position: absolute;
  left:0;
  top:0;
  background:#000;
  opacity: .3;
}
.mv li .image img{
  max-width: inherit;
  min-width: 100vw;
  width:auto;
  min-height:100vh;
  position: relative;
  left:50%;
  transform:translate(-50%,0);
}
.mv li .text{
  position: absolute;
  top:50%;
  left:20%;
  transform:translateY(-50%);
  color:#fff;
  font-size:72px;
  text-shadow: 0 0 10px rgb(0 0 0 / .3);
}
.mv li:nth-child(1){z-index: 3;}
.mv li:nth-child(2){z-index: 2;}

@media screen and (max-width:1600px){
  .grid_header{
    grid-template-columns: 13% 77% 10%;
  }
  .grid_header .grid_header_center{
    padding-left:0;
  }
  .grid_header .grid_header_center .Gmenu li a{
    padding: 10px;
    font-size: 16px;
  }
}
@media screen and (max-width:1300px){
  .grid_header{
    height:150px;
  }
  .grid_header .grid_header_center .tel .top{
    font-size:16px;
  }
  .grid_header .grid_header_center .tel .bottom{
    font-size: 14px;
  }
  .grid_header .grid_header_center .Gmenu li a {
    padding: 10px 5px;
    font-size: 13px;
  }
  .mv{
    height: calc(100vh - 150px);
  }
}
@media screen and (max-width:1024px){
  .mv{
    height: auto;
    padding-top: 87%;
  }
  .mv li .image img{
    max-width: inherit;
    width: auto;
    position: relative;
    left:50%;
    transform:translate(-50%,0);
  }
}

/*=====================================
*
*front
*
=======================================*/
#front{
  background:#ebeeee;
  overflow: hidden;
}
.more_btn{
  display: block;
  text-align: center;
}
.more_btn a{
  font-size: 25px;
  color: #fff;
  display: inline-block;
  padding: 20px 80px;
  background: #2baaa3;
  margin-top: 80px;
  letter-spacing: 5px;
  position: relative;
  transition:ease all .3s;
  border:2px solid #2baaa3;
}
.more_btn a::before{
  content:'\e5cc';
  font-family:'Material Icons';
  position: absolute;
  right:5px;
  top:50%;
  transform:translateY(-50%);
  transition:ease all .3s;
}
.more_btn a:hover{
  color:#2baaa3;
  background:rgba(255,255,255,.5);
}
/*=====================================
*section1
=======================================*/
.section1{
  margin:100px auto 180px;
  position: relative;
}
.section1 .sec1_inner{
  position: relative;
}
.section1 .sec1_inner .image{
  position: relative;
  max-width: 50%;
  opacity: 0;
}
.section1 .sec1_inner .sec1_inner_contents{
  display: block;
  width: 900px;
  max-width:53%;
  position: absolute;
  left: calc(100% - 50px);
  top: 50%;
  transform: translate(-100%,-50%);
  font-size: 17px;
  opacity: 0;
}
.section1 .sec1_inner .sec1_inner_contents p{
  margin:20px auto;
  line-height: 1.8;
}
@media screen and (max-width:1400px){
  .section1 .sec1_inner .sec1_inner_contents{
    font-size:16px;
  }
  .section1 .sec1_inner .sec1_inner_contents p{
    margin:10px auto;
    line-height: 1.7;
  }
}
.section1 .sec1_inner.anime .image{animation:sec1_image .6s linear 0s forwards;}
.section1 .sec1_inner.anime .sec1_inner_contents{animation:sec1_inner_contents .6s linear 0s forwards;}

/*=== animation ===*/
@keyframes sec1_image{
  0%{
    opacity: 0;
    top:60px;
  }
  100%{
    opacity: 1;
    top:0;
  }
}
@keyframes sec1_inner_contents{
  0%{
    opacity: 0;
    top: 60%;
  }
  100%{
    opacity: 1;
    top: 50%;
  }
}

/*=====================================
*section2
=======================================*/
.section2{
  margin:80px auto;
  position: relative;
}
.section2 .sec2_grid{
  display: grid;
  grid-template-columns: 50% 50%;
  align-items:start;
}
.section2 .sec2_grid .sec2_grid_inner{
  position: relative;
  opacity: 0;
}
.section2 .sec2_grid .sec2_grid_inner:nth-of-type(2){
  margin-top:90px;
}
.section2 .sec2_grid .sec2_grid_inner .image{
  position: relative;
}
.section2 .sec2_grid .sec2_grid_inner .image::after{
  content:'';
  display: block;
  width:100%;
  height:100%;
  background:#000;
  position: absolute;
  left:0;
  top:0;
  opacity: .5;
}
.section2 .sec2_grid .sec2_grid_inner .image img{

}
.section2 .sec2_grid .sec2_grid_inner_contents{
  position: absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:100%;
  color: #fff;
  padding:0 14%;
}
.section2 .sec2_grid .sec2_grid_inner_contents .title{
  text-align: center;
}
.section2 .sec2_grid .sec2_grid_inner_contents .title h2{
  font-family:'Noto Serif JP';
  font-size: 30px;
  margin:0 auto 30px;
}
.section2 .sec2_grid .sec2_grid_inner_contents .title .en{
  font-size:36px;
  line-height: 1;
}
.section2 .sec2_grid .sec2_grid_inner_contents .text{
  font-size:18px;
  margin:40px auto;
}
.section2 .sec2_grid .sec2_grid_inner_contents .more{
  text-align: center;
  position: relative;
  display: inline-block;
  left:50%;
  transform:translateX(-50%);
}
.section2 .sec2_grid .sec2_grid_inner_contents .more a{
  display: inline-block;
  position: relative;
}
.section2 .sec2_grid .sec2_grid_inner_contents .more a span{
  display: inline-block;
  padding:20px 80px;
  font-size:18px;
  color:#fff;
  border:1px solid #fff;
  transition:ease all .3s;
}
.section2 .sec2_grid .sec2_grid_inner_contents .more a span::before{
  content:'\e5cc';
  font-family:'Material Icons';
  position: absolute;
  right:5px;
  top:50%;
  transform:translateY(-50%);
}
.section2 .sec2_grid .sec2_grid_inner_contents .more::before{
  content:'';
  display: block;
  height:3px;
  width:0;
  position: absolute;
  left:0;
  top:0;
  background:#2baaa3;
  transition:ease all .3s;
  z-index: 2;
}
.section2 .sec2_grid .sec2_grid_inner_contents .more::after{
  content:'';
  display: block;
  height:3px;
  width:0;
  position: absolute;
  right:0;
  bottom:0;
  background:#2baaa3;
  transition:ease all .3s;
  z-index: 2;
}
.section2 .sec2_grid .sec2_grid_inner_contents .more a::before{
  content:'';
  display: block;
  height:0;
  width:3px;
  position: absolute;
  left:0;
  bottom:0;
  background:#2baaa3;
  transition:ease all .3s;
  z-index: 2;
}
.section2 .sec2_grid .sec2_grid_inner_contents .more a::after{
  content:'';
  display: block;
  height:0;
  width:3px;
  position: absolute;
  right:0;
  top:0;
  background:#2baaa3;
  transition:ease all .3s;
  z-index: 2;
}
.section2 .sec2_grid .sec2_grid_inner_contents .more:hover::before,
.section2 .sec2_grid .sec2_grid_inner_contents .more:hover::after{
  width: 100%;
}
.section2 .sec2_grid .sec2_grid_inner_contents .more:hover a::before,
.section2 .sec2_grid .sec2_grid_inner_contents .more:hover a::after{
  height: 100%;
}
.section2 .sec2_grid .sec2_grid_inner_contents .more:hover a span{
  color:#2baaa3;
  background:rgba(0,0,0,.5);
}
@media screen and (max-width: 1450px){
  .section2 .sec2_grid .sec2_grid_inner_contents{
    padding:0 10%;
  }
  .section2 .sec2_grid .sec2_grid_inner_contents .title h2{
    margin:0 auto 20px;
  }
  .section2 .sec2_grid .sec2_grid_inner_contents .text{
    margin:30px auto;
    font-size: 16px;
  }
  .section2 .sec2_grid .sec2_grid_inner_contents .more a{
	  /*padding: 10px 60px*/
  }
}
@media screen and (max-width: 1200px){
  .section2 .sec2_grid .sec2_grid_inner_contents {
    padding: 0 4%;
  }
  .section2 .sec2_grid .sec2_grid_inner_contents .title h2{
    font-size:25px;
  }
  .section2 .sec2_grid .sec2_grid_inner_contents .title .en{
    font-size:30px;
  }
  .section2 .sec2_grid .sec2_grid_inner_contents .text {
    margin: 20px auto;
  }
}
.section2 .sec2_grid .sec2_grid_inner.anime{animation:sec2_grid_inner .5s linear 0s forwards;}
.section2 .sec2_grid .sec2_grid_inner:nth-child(2).anime{animation:sec2_grid_inner .5s linear .1s forwards;}
/*=== animation ===*/
@keyframes sec2_grid_inner{
  0%{
    opacity: 0;
    top:50px;
  }
  100%{
    opacity: 1;
    top:0;
  }
}

/*=====================================
*section3
=======================================*/
.section3{
  position: relative;
  margin:100px auto;
}
.section3 .sec3_grid{
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(auto,calc(100% / 3)));
  justify-items:center;
  justify-content: center;
}
.section3 .sec3_grid .sec3_grid_inner{
  position: relative;
  opacity: 0;
}
.section3 .sec3_grid .sec3_grid_inner .image{
  position: relative;
}
.section3 .sec3_grid .sec3_grid_inner .image::after{
  content:'';
  display: block;
  width:100%;
  height:100%;
  background:#000;
  position: absolute;
  left:0;
  top:0;
  opacity: .5;
}
.section3 .sec3_grid .sec3_grid_inner .image img{

}
.section3 .sec3_grid .sec3_grid_inner_contents{
  position: absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:100%;
  color: #fff;
  padding:0 14%;
}
.section3 .sec3_grid .sec3_grid_inner_contents .title{
  text-align: center;
}
.section3 .sec3_grid .sec3_grid_inner_contents .title h2{
  font-family:'Noto Serif JP';
  font-size: 24px;
  margin:0 auto 20px;
}
.section3 .sec3_grid .sec3_grid_inner_contents .title .en{
  font-size:24px;
  line-height: 1;
}
.section3 .sec3_grid .sec3_grid_inner_contents .more{
  text-align: center;
  position: relative;
  display: inline-block;
  margin-top:60px;
  left:50%;
  transform:translateX(-50%);
}
.section3 .sec3_grid .sec3_grid_inner_contents .more a{
  display: inline-block;
  position: relative;
}
.section3 .sec3_grid .sec3_grid_inner_contents .more a span{
  display: inline-block;
  padding:20px 80px;
  font-size:18px;
  color:#fff;
  border:1px solid #fff;
  transition:ease all .3s;
}
.section3 .sec3_grid .sec3_grid_inner_contents .more a span::before{
  content:'\e5cc';
  font-family:'Material Icons';
  position: absolute;
  right:5px;
  top:50%;
  transform:translateY(-50%);
}
.section3 .sec3_grid .sec3_grid_inner_contents .more::before{
  content:'';
  display: block;
  height:3px;
  width:0;
  position: absolute;
  left:0;
  top:0;
  background:#2baaa3;
  transition:ease all .3s;
  z-index: 2;
}
.section3 .sec3_grid .sec3_grid_inner_contents .more::after{
  content:'';
  display: block;
  height:3px;
  width:0;
  position: absolute;
  right:0;
  bottom:0;
  background:#2baaa3;
  transition:ease all .3s;
  z-index: 2;
}
.section3 .sec3_grid .sec3_grid_inner_contents .more a::before{
  content:'';
  display: block;
  height:0;
  width:3px;
  position: absolute;
  left:0;
  bottom:0;
  background:#2baaa3;
  transition:ease all .3s;
  z-index: 2;
}
.section3 .sec3_grid .sec3_grid_inner_contents .more a::after{
  content:'';
  display: block;
  height:0;
  width:3px;
  position: absolute;
  right:0;
  top:0;
  background:#2baaa3;
  transition:ease all .3s;
  z-index: 2;
}
.section3 .sec3_grid .sec3_grid_inner_contents .more:hover::before,
.section3 .sec3_grid .sec3_grid_inner_contents .more:hover::after{
  width: 100%;
}
.section3 .sec3_grid .sec3_grid_inner_contents .more:hover a::before,
.section3 .sec3_grid .sec3_grid_inner_contents .more:hover a::after{
  height: 100%;
}
.section3 .sec3_grid .sec3_grid_inner_contents .more:hover a span{
  color:#2baaa3;
  background:rgba(0,0,0,.5);
}
@media screen and (max-width: 1200px){
  .section3 .sec3_grid .sec3_grid_inner_contents .more a span{
    padding:10px 50px;
  }
}
.section3 .sec3_grid.anime .sec3_grid_inner{animation: sec3_grid_inner .5s linear 0s forwards}
.section3 .sec3_grid.anime .sec3_grid_inner:nth-child(2){animation: sec3_grid_inner .5s linear .1s forwards}
.section3 .sec3_grid.anime .sec3_grid_inner:nth-child(3){animation: sec3_grid_inner .5s linear .2s forwards}
/*=== animation ===*/
@keyframes sec3_grid_inner{
  0%{
    opacity: 0;
    top:50px;
  }
  100%{
    opacity: 1;
    top:0;
  }
}
/*=====================================
*section4
=======================================*/
.section4{
  margin:100px auto;
  background:#fff;
  position: relative;
  overflow: hidden;
}
.section4 .top_title{
  margin:150px auto 100px;
  text-align: center;
  position: relative;
  opacity: 0;
}
.section4 .top_title .en{
  font-size:72px;
  line-height: 1;
  margin-bottom:10px;
}
.section4 .top_title h2{
  font-family:'Noto Serif JP';
  font-size:34px;
}
.section4 .sec4_order{
  margin:150px auto;
  position: relative;
}
.section4 .sec4_order .title{
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  padding-left: 100px;
  min-width: 50vw;
}
.section4 .sec4_order .title::before{
  content: '';
  display: block;
  min-width: calc(100% + 15px);
  width: 50vw;
  height: 100%;
  position: absolute;
  left: -55vw;
  top: 0;
  background: #91a3a2;
  transform: skewX(-15deg);

}
.section4 .sec4_order .title .en{
  color:#fff;
  position: relative;
  line-height: 1;
  font-size:60px;
  margin-right:50px;
}
.section4 .sec4_order .title h3{
  position: relative;
  color: #fff;
  font-size:30px;
  font-family:'Noto Serif JP';
}
.section4 .sec4_order_slider{
  margin:50px auto;
}
.section4 .sec4_order_slider .slick-slide{
  margin:0 20px;
}
.section4 .sec4_order_slider a{
  position: relative;
  transition: ease all .3s;
  display: block;
}
.section4 .sec4_order_slider a::before{
  content:'View More';
  font-family: 'Noto Serif JP';
  display: flex;
  width:100%;
  height:100%;
  justify-content: center;
  align-items: center;
  position: absolute;
  left:0;
  top:0;
  z-index: 2;
  opacity: 0;
  transition:ease all .3s;
  color:#fff;
  font-size:30px;
  letter-spacing:5px;
  background:rgba(0,0,0,0);
}
.section4 .sec4_order_slider a:hover::before{
  opacity: 1;
  background:rgba(0,0,0,.5);
}
.section4 .sec4_order_slider .list_title{
  font-size:20px;
  text-align: center;
  margin:5px auto;
}
.section4 .sec4_order_slider .text{
  padding:0 20px;
}
.section4 .sec4_order_slider .slick-list::before{
  content:'';
  display: block;
  width:calc(100% / 5);
  height:100%;
  background:linear-gradient(to right,#fff 100px, #fff,rgba(255,255,255,.5),transparent);
  position: absolute;
  left:0;
  top:calc(50% - 1px);
  transform:translateY(-50%);
  z-index: 2;
}
.section4 .sec4_order_slider .slick-list::after{
  content:'';
  display: block;
  width:calc(100% / 5);
  height:100%;
  background:linear-gradient(to left,#fff 100px, #fff,rgba(255,255,255,.5),transparent);
  position: absolute;
  right:0;
  top:calc(50% - 1px);
  transform:translateY(-50%);
  z-index: 2;
}
.section4 .sec4_order_slider .slick-prev{
  left:200px;
  z-index: 3;
  width:35px;
  height:35px;
}
.section4 .sec4_order_slider .slick-next{
  right:200px;
  z-index: 3;
  width:35px;
  height:35px;
}
.section4 .sec4_order_slider .slick-prev:before{
  content:'\e5cb';
  font-family:'Material Icons';
  background:#2baaa3;
  border-radius:900px;
  width:100%;
  height:100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:ease all .3s;
}
.section4 .sec4_order_slider .slick-next:before{
  content:'\e5cc';
  font-family:'Material Icons';
  background:#2baaa3;
  border-radius:900px;
  width:100%;
  height:100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:ease all .3s;
}

.section4 .sec4_other{
  margin:150px auto;
  position: relative;
}
.section4 .sec4_other .title{
  position: relative;
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 40px;
  padding-right: 150px;
  min-width: 50vw;
  left: calc(100% + 15px);
  transform: translateX(-100%);
}
.section4 .sec4_other .title::before{
  content: '';
  display: block;
  min-width: calc(100% + 15px);
  width: 50vw;
  height: 100%;
  position: absolute;
  left: 55vw;
  top: 0;
  background: #91a3a2;
  transform: skewX(-15deg);
}
.section4 .sec4_other .title .en{
  color:#fff;
  position: relative;
  line-height: 1;
  font-size:60px;
  margin-right:150px;
}
.section4 .sec4_other .title h3{
  position: relative;
  color: #fff;
  font-size:30px;
  font-family:'Noto Serif JP';
}
.section4 .sec4_other_slider{
  margin:50px auto;
}
.section4 .sec4_other_slider .slick-slide{
  margin:0 20px;
}
.section4 .sec4_other_slider a{
  position: relative;
  transition: ease all .3s;
  display: block;
}
.section4 .sec4_other_slider a::before{
  content:'View More';
  font-family: 'Noto Serif JP';
  display: flex;
  width:100%;
  height:100%;
  justify-content: center;
  align-items: center;
  position: absolute;
  left:0;
  top:0;
  z-index: 2;
  opacity: 0;
  transition:ease all .3s;
  color:#fff;
  font-size:30px;
  letter-spacing:5px;
  background:rgba(0,0,0,0);
}
.section4 .sec4_other_slider a:hover::before{
  opacity: 1;
  background:rgba(0,0,0,.5);
}
.section4 .sec4_other_slider .list_title{
  font-size:20px;
  text-align: center;
  margin:5px auto;
}
.section4 .sec4_other_slider .text{
  padding:0 20px;
}
.section4 .sec4_other_slider .slick-list::before{
  content:'';
  display: block;
  width:calc(100% / 5);
  height:100%;
  background:linear-gradient(to right,#fff 100px, #fff,rgba(255,255,255,.5),transparent);
  position: absolute;
  left:0;
  top:calc(50% - 1px);
  transform:translateY(-50%);
  z-index: 2;
}
.section4 .sec4_other_slider .slick-list::after{
  content:'';
  display: block;
  width:calc(100% / 5);
  height:100%;
  background:linear-gradient(to left,#fff 100px, #fff,rgba(255,255,255,.5),transparent);
  position: absolute;
  right:0;
  top:calc(50% - 1px);
  transform:translateY(-50%);
  z-index: 2;
}
.section4 .sec4_other_slider .slick-prev{
  left:200px;
  z-index: 3;
  width:35px;
  height:35px;
}
.section4 .sec4_other_slider .slick-next{
  right:200px;
  z-index: 3;
  width:35px;
  height:35px;
}
.section4 .sec4_other_slider .slick-prev:before{
  content:'\e5cb';
  font-family:'Material Icons';
  background:#2baaa3;
  border-radius:900px;
  width:100%;
  height:100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:ease all .3s;
}
.section4 .sec4_other_slider .slick-next:before{
  content:'\e5cc';
  font-family:'Material Icons';
  background:#2baaa3;
  border-radius:900px;
  width:100%;
  height:100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:ease all .3s;
}
.section4 .top_title.anime{animation:title_animation .5s linear 0s forwards;}
.section4 .sec4_order.anime .title:before{animation:order_before .2s linear 0s forwards;}
.section4 .sec4_other.anime .title:before{animation:other_before .2s linear 0s forwards;}
/*=== animation ===*/
@keyframes title_animation{
  0%{
    opacity: 0;
    top:50px;
  }
  100%{
    opacity: 1;
    top:0;
  }
}
@keyframes order_before{
  0%{
    left:-55vw;
  }
  100%{
    left:-15px;
  }
}
@keyframes other_before{
  0%{
    left:55vw;
  }
  100%{
    left:-15px;
  }
}
/*=====================================
*section5
=======================================*/
.section5{
  margin:100px auto;
  position: relative;
  overflow: hidden;
}
.section5 .top_title{
  margin:150px auto 100px;
  text-align: center;
  position: relative;
  opacity: 0;
}
.section5 .top_title .en{
  font-size:72px;
  line-height: 1;
  margin-bottom:10px;
}
.section5 .top_title h2{
  font-family:'Noto Serif JP';
  font-size:34px;
}
.section5 .sec5_grid{
  display: grid;
  grid-template-columns: repeat(3,30%);
  justify-items: center;
  justify-content: center;
  grid-column-gap:2%;
}
.section5 .sec5_grid .sec5_grid_inner{
  background:#fff;
  position: relative;
  opacity: 0;
}
.section5 .sec5_grid .sec5_grid_inner .image{
  margin:0 auto;
}
.section5 .sec5_grid .sec5_grid_inner .title{
  padding:10px 20px;
  font-size:20px;
}
.section5 .sec5_grid .sec5_grid_inner .text{
  padding:0 20px 20px;
}
.section5 .top_title.anime{animation:title_animation .5s linear 0s forwards;}
.section5 .sec5_grid.anime .sec5_grid_inner{animation:sec5_grid_inner .5s linear 0s forwards;}
.section5 .sec5_grid.anime .sec5_grid_inner:nth-of-type(2){animation:sec5_grid_inner .5s linear .1s forwards;}
.section5 .sec5_grid.anime .sec5_grid_inner:nth-of-type(3){animation:sec5_grid_inner .5s linear .2s forwards;}
/*=== animation ===*/
@keyframes sec5_grid_inner{
  0%{
    opacity: 0;
    top:50px;
  }
  100%{
    opacity: 1;
    top:0;
  }
}
/*=====================================
*section6
=======================================*/
.section6{
  margin:100px auto;
  position: relative;
  overflow: hidden;
  background:#fff;
}
.section6 .top_title{
  margin:150px auto 100px;
  text-align: center;
  position: relative;
  opacity: 0;
}
.section6 .top_title .en{
  font-size:72px;
  line-height: 1;
  margin-bottom:10px;
}
.section6 .top_title h2{
  font-family:'Noto Serif JP';
  font-size:34px;
}
.section6 .left_bg{
  position: absolute;
  left:0;
  top:70%;
  transform:translateY(-50%);
}
.section6 .right_bg{
  position: absolute;
  right:0;
  top:70%;
  transform:translateY(-50%);
}
.section6 .flow{
  margin:50px auto;
}
.section6 .flow .flow_inner{
  width:100%;
  max-width: 1200px;
  height:500px;
  margin:0 auto;
  border:2px solid #333;
  background: #fff;
  position: relative;
}
.section6 .banner{
  margin:100px auto;
  width:100%;
  max-width: 1198px;
  background:url(./img/btn_bg.jpg)no-repeat center;
  background-size:cover;
  position: relative;
}
.section6 .banner::before{
  content:'';
  display: block;
  width:100%;
  height:100%;
  background:#000;
  position: absolute;
  left:0;
  top:0;
  opacity: .4;
  transition: ease all .3s;
}
.section6 .banner a{
  color: #fff;
  font-family: 'Noto Serif JP';
  text-align: center;
  font-size: 30px;
  padding: 50px;
  display: block;
  position: relative;
  border:3px solid #bbc6c5;
}
.section6 .banner a::before{
  content:'\e5cc';
  font-family:'Material Icons';
  position: absolute;
  right:20%;
  top:50%;
  transform:translateY(-50%);
  transition:ease all .3s;
}
.section6 .banner:hover::before{
  opacity: .7;
}
@media screen and (max-width:1300px){
  .section6 .flow{
    padding:10px;
  }
  .section6 .banner{
    width:calc(100% - 20px);
  }
}
.section6 .top_title.anime{animation:title_animation .5s linear 0s forwards;}
/*=====================================
*section7
=======================================*/
.section7{
  margin:80px auto;
  position: relative;
  overflow: hidden;
}
.section7 .sec7_flex{
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
  max-width:calc(100% - 200px);
  margin:0 auto;
}
.section7 .sec7_flex .sec7_flex_inner{
  width:45%;
  position: relative;
  opacity: 0;
}
.section7 .sec7_flex .sec7_flex_inner .top_title{
  margin:150px auto 100px;
}
.section7 .sec7_flex .sec7_flex_inner .top_title .en{
  font-size:72px;
  line-height: 1;
  margin-bottom:10px;
}
.section7 .sec7_flex .sec7_flex_inner .top_title h2{
  font-family:'Noto Serif JP';
  font-size:34px;
}
.section7 .sec7_flex .sec7_flex_inner li a{
  color:#222;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #ccc;
  line-height: 1.8;
}
.section7 .sec7_flex .sec7_flex_inner li a:hover{
  opacity: .6;
}
.section7 .sec7_flex .sec7_flex_inner a time{
  display: inline-block;
  margin-right: 50px;
}
.section7 .sec7_flex .sec7_flex_inner a .text{
  display: inline;
}
.section7 .sec7_flex .sec7_flex_inner a h3{
  display: inline-block;
  position: relative;
  padding-left:30px;
  margin-left:10px;
  font-weight: normal;
  font-size:16px;
}
.section7 .sec7_flex .sec7_flex_inner a h3::before{
  content:'';
  display: block;
  width:20px;
  height:1px;
  background:#222;
  position: absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
}
.section7 .banner{
  margin:50px auto 150px;
  max-width:800px;
  width:100%;
  background:url(img/sec7_bg.jpg)no-repeat center;
  background-size:cover;
  position: relative;
}
.section7 .banner::before{
  content:'';
  display: block;
  width:100%;
  height:100%;
  background:#000;
  position: absolute;
  left:0;
  top:0;
  opacity: .4;
  transition:ease all .3s;
}
.section7 .banner a{
  color: #fff;
  font-family: 'Noto Serif JP';
  text-align: center;
  font-size: 30px;
  padding: 50px;
  display: block;
  position: relative;
  border:3px solid #bbc6c5;
}
.section7 .banner:hover::before{
  opacity: .7;
}
@media screen and (max-width: 1300px){
  .section7 .sec7_flex{
    max-width:calc(100% - 100px);
  }
}
.section7 .sec7_flex .sec7_flex_inner.anime{animation:sec7_flex_inner .5s linear 0s forwards;}
.section7 .sec7_flex .sec7_flex_inner:nth-of-type(2).anime{animation:sec7_flex_inner .5s linear .1s forwards;}
/*=== animation ===*/
@keyframes sec7_flex_inner{
  0%{
    opacity: 0;
    top:50px;
  }
  100%{
    opacity: 1;
    top:0;
  }
}
/*=====================================
*section8
=======================================*/
.section8{
  background:#fff;
  position: relative;
  margin:0 auto;
  overflow: hidden;
}
.section8 .sec8_bg{
  background:url(./img/sec8_bg.jpg)no-repeat right center;
  background-size: cover;
  width:100%;
}
.section8 .sec8_bg .sec8_bg_inner{
  width:100%;
  max-width:600px;
  padding: 80px 0 ;
  font-size:17px;
}
.section8 .sec8_bg .sec8_bg_inner p{
  line-height: 1.8;
  margin:20px auto;
}
@media screen and (max-width:1300px){
  .section8 .sec8_bg .sec8_bg_inner{
    padding:80px 10px;
  }
}
/*=====================================
*section9
=======================================*/
.section9{
  position: relative;
  overflow: hidden;
  padding:80px 0;
  background:#91a3a2;
}
.section9 .sec9_inner{
  background:#fff;
  position: relative;
  overflow: hidden;
}
.section9 .top_title{
  margin:150px auto 100px;
  text-align: center;
  position: relative;
  opacity: 0;
}
.section9 .top_title .en{
  font-size:72px;
  line-height: 1;
  margin-bottom:10px;
}
.section9 .top_title h2{
  font-family:'Noto Serif JP';
  font-size:34px;
}
.section9 .sec9_flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap:wrap;
  width:100%;
  max-width:calc(100% - 200px);
  position: relative;
  margin:80px auto;
}
.section9 .sec9_flex .maps{
  width:50%;
  position: relative;
  opacity: 0;
}
.section9 .sec9_flex .text{
  width:45%;
  text-align: left;
  font-size:17px;
  position: relative;
  opacity: 0;
}
.section9 .sec9_flex .text p{
  margin:20px auto;
}
.section9 .cv_area{
  position: relative;
  overflow: hidden;
}
.section9 .cv_area .cv_area_flex{
  display: flex;
  justify-content: space-between;
  max-width:calc(100% - 200px);
  margin:50px auto;
}
.section9 .cv_area .cv_area_flex_inner{
  color:#fff;
  max-width: 32%;
  position: relative;
  opacity: 0;
}
.section9 .cv_area .cv_area_flex_inner a{
  color:#fff;
  display: block;
}
.section9 .cv_area .cv_area_flex_inner a:hover{
  opacity: .6;
}
.section9 .cv_area .cv_area_flex_inner a .en{
  font-size:72px;
  line-height: 1;
  margin-bottom:10px;
}
.section9 .cv_area .cv_area_flex_inner a .title{
  font-family:'Noto Serif JP';
  font-size:34px;
}
.section9 .cv_area .cv_area_flex_inner a .contact{
  font-size: 25px;
  color: #fff;
  display: inline-block;
  padding:30px 120px;
  letter-spacing: 5px;
  position: relative;
  transition:ease all .3s;
  border:2px solid #fff;
}
.section9 .cv_area .cv_area_flex_inner a .contact::before{
  content:'\e5cc';
  font-family:'Material Icons';
  position: absolute;
  right:5px;
  top:50%;
  transform:translateY(-50%);
  transition:ease all .3s;
}
.section9 .cv_area .cv_area_flex_inner a .contact:hover{
  color:#fff;
  background:rgba(255,255,255,.3);
}
.section9 .social{
  margin:50px auto;
  border-top:1px solid #9fadac;
}
.section9 .social ol{
  display: flex;
  justify-content: center;
  flex-wrap:wrap;
  max-width:calc(100% - 200px);
  margin:50px auto;
}
.section9 .social ol li{
  position: relative;
  opacity: 0;
}
.section9 .social ol li:nth-child(2){
  margin:0 150px;
}
.section9 .social li a{
  display: block;
}
.section9 .social li a:hover{
  opacity: .6;
}
@media screen and (max-width: 1300px){
  .section9 .sec9_flex{
    max-width:calc(100% - 100px);
  }
  .section9 .cv_area .cv_area_flex{
    max-width:calc(100% - 100px);
  }
  .section9 .cv_area .cv_area_flex_inner a .contact{
    padding:30px 50px;
  }
}
.section9 .top_title.anime{animation:title_animation .5s linear 0s forwards;}
.section9 .sec9_flex .maps.anime{animation:sec9 .5s linear 0s forwards;}
.section9 .sec9_flex .text.anime{animation:sec9 .5s linear .1s forwards;}
.section9 .cv_area .cv_area_flex_inner:nth-child(1).anime{animation:sec9 .5s linear 0s forwards;}
.section9 .cv_area .cv_area_flex_inner:nth-child(2).anime{animation:sec9 .5s linear .1s forwards;}
.section9 .cv_area .cv_area_flex_inner:nth-child(3).anime{animation:sec9 .5s linear .2s forwards;}
.section9 .social li:nth-child(1).anime{animation:sec9 .5s linear 0s forwards;}
.section9 .social li:nth-child(2).anime{animation:sec9 .5s linear .1s forwards;}
.section9 .social li:nth-child(3).anime{animation:sec9 .5s linear .2s forwards;}
/*=== animation ===*/
@keyframes sec9{
  0%{
    opacity: 0;
    top:50px;
  }
  100%{
    opacity: 1;
    top:0;
  }
}
/*=====================================
*section10
=======================================*/


/*=====================================
*
*single
*
=======================================*/
#single{
	
}
#single .maincontents{
	width:100%;
	max-width:1200px;
	margin:0 auto 80px;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
#single .maincontents .contents{
	width:100%;
	max-width:800px;
}
#single .maincontents .contents .estate_table{
	margin:40px auto;
}
#single .maincontents .contents .estate_table table{
	border-collapse:collapse;
	max-width:600px;
	margin:0 auto;
}
#single .maincontents .contents .estate_table table th{
	background:#32aaa3;
	border: 1px solid #fff;
	color:#fff;
	padding: 15px 10px;
	width: 40%;
}
#single .maincontents .contents h2{
	font-size: 25px;
    font-weight: bold;
    padding-left: 20px;
	position:relative;
	margin: 60px auto 20px;
}
#single .maincontents .contents h2::before{
	content:'';
	display:block;
	height:100%;
	width:10px;
	background:#2baaa3;
	transform:skew(-10deg);
	position:absolute;
	left:0;
	top:0;
}
#single .maincontents .contents p{
	margin:20px auto;
	line-height:1.7;
}
#single .maincontents .contents h3{
	font-size: 23px;
    font-weight: bold;
	padding:10px;
	border-bottom:3px solid #2baaa3;
	position:relative;
	margin: 60px auto 20px;
}
#single .maincontents .contents ul{
	margin:40px auto;
	width:100%;
	display:block;
	border: 1px solid #e8bbbb;
	background: #fffcfc;
	padding: 20px;
}
#single .maincontents .contents ul li{
	margin-bottom:10px;
}
#single .maincontents .contents ul li:last-child{
	margin-bottom:0;
}
#single .maincontents .contents ul.dot_list li{
	list-style-type: disc;
	list-style-position:inside;
}
#single .maincontents .contents ul.num_list li{
	list-style-type: decimal;
	list-style-position:inside;
}
#single .maincontents .contents table{
	width:100%;
	border-collapse:collapse;
}
#single .maincontents .contents table th{
	padding:10px;
	text-align:left;
	font-size:17px;
	border:1px solid #ccc;
	background:#f9f9f9;
}
#single .maincontents .contents table td{
	padding:10px;
	border:1px solid #ccc;
}
#single .maincontents .contents .modal_image{
	margin:30px auto;
}
#single .maincontents .contents .modal_image .front p{
	display:flex;
	flex-wrap:wrap;
}
#single .maincontents .contents .modal_image .front img{
	max-width:24%;
	margin-right:1%;
}
#single .maincontents .contents .modal_image .front img:nth-child(4n){
	
}
#single .maincontents .contents .modal_image .back{
	opacity:0;
	pointer-events:none;
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:#000;
	transition:ease-out all .3s;
}
#single .maincontents .contents .modal_image .back.active{
	opacity:.4;
	pointer-events:all;
}
#single .maincontents .contents .modal_image .modal{
	
}
#single .maincontents .contents .modal_image .modal img{
	position:fixed;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	max-width:50vw;
	max-height:70vh;
	opacity:0;
	pointer-events:none;
	transition:ease-out all .3s;
}
#single .maincontents .contents .modal_image .modal img.active{
	opacity:1;
	pointer-events:all;
}
.page_pn{
	display:block;
	margin-top: 80px;
}
.page_pn ol{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.page_pn ol li{
	width:49%;
}
.page_pn ol li a{
	color:#333;
	padding: 10px;
    display: block;
	transition:ease all .3s;
}
.page_pn ol li .image{
	background:#333;
	transition:ease all .3s;
}
.page_pn ol li a .cont{
	margin-top:5px;
}
.page_pn ol li a .title{
	font-size:18px;
	font-weight:bold;
}
.page_pn ol li a:hover{
	background:#efefef;
}
.page_pn ol li a:hover .image{
	opacity:.8;
}
/*=====================================
*
*page
*
=======================================*/
#page{

}
#page .maincontents{
  overflow: hidden;
}
#page .maincontents .contents{
	position:relative;
}
#page .page_header{
  position: relative;
  height:calc(100vh - 170px);
  overflow: hidden;
}
#page .page_header .image_bg{
  position: relative;
  height:100%;
}
#page .page_header .image_bg::after{
  content:'';
  display: block;
  width:100%;
  height:100%;
  background:#000;
  position: absolute;
  left:0;
  top:0;
  opacity: .4;
}
#page .page_header .image_bg img{
  max-width: inherit;
  height:100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
#page .page_header .white_box{
	max-width:840px;
  width:100%;
  position: absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  padding:60px;
  color:#fff;
}
#page .page_header .white_box::before{
  content:'';
  display: block;
  width:0;
  height:3px;
  background:#fff;
  position: absolute;
  left:0;
  top:0;
  opacity: .6;
  transition:ease all .3s;
  animation:page_header_w .3s linear .05s forwards;
}
#page .page_header .white_box::after{
  content:'';
  display: block;
  width:3px;
  height:0;
  background:#fff;
  position: absolute;
  right:0;
  top:3px;
  opacity: .6;
  transition:ease all .3s;
  animation:page_header_h .3s linear .1s forwards;
}
#page .page_header .white_box .border::before {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: .6;
  transition:ease all .3s;
  animation:page_header_w .3s linear .15s forwards;
}
#page .page_header .white_box .border::after {
  content:'';
  display: block;
  width:3px;
  height:0;
  background:#fff;
  position: absolute;
  left:0;
  bottom:3px;
  opacity: .6;
  transition:ease all .3s;
  animation:page_header_h .3s linear .2s forwards;
}
#page .contact_header{
	height:400px;
	position:relative;
	overflow:hidden;
}
#page .contact_header .image_bg{
	position:relative;
}
#page .contact_header .image_bg::before{
	content:'';
	display:block;
	width:100%;
	height:100%;
	background:#000;
	position:absolute;
	left:0;
	top:0;
	opacity:.6;
}
#page .contact_header h1{
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	color:#fff;
}
@keyframes page_header_w{
  0%{
    width:0;
  }
  100%{
    width:100%;
  }
}
@keyframes page_header_h{
  0%{
    height:0;
  }
  100%{
    height:calc(100% - 6px);
  }
}
#page .page_header .white_box h1{
  font-size:40px;
  font-weight: normal;
  font-family:'Noto Serif JP';
  text-align: center;
  position: relative;
  top:20px;
  opacity: 0;
  animation:page_header_fade .5s linear .2s forwards;
}
#page .page_header .white_box .title_en{
  font-size:36px;
  text-align: center;
  margin:30px auto 50px;
  position: relative;
  top:20px;
  opacity: 0;
  animation:page_header_fade .5s linear .2s forwards;
}
#page .page_header .white_box .subtext{
  font-size:16px;
  text-align: center;
  position: relative;
  top:20px;
  opacity: 0;
  animation:page_header_fade .5s linear .2s forwards;
}
@keyframes page_header_fade{
  0%{
    opacity: 0;
    top:20px;
  }
  100%{
    opacity: 1;
    top:0;
  }
}
#page .pr_block{
  margin:250px auto;
	position: relative;
    z-index: 2;
}
#page .pr_block:nth-child(1){
  margin-top:40px;
}
#page .pr_block .lister{
	font-weight: bold;
    position: relative;
    padding-left: 25px;
    display: inline-block;
    line-height: 1.3;
	margin-top: 10px;
}
#page .pr_block .lister::before{
	content:'';
	position: absolute;
	left: 0;
    top: 0;
}
#page .pr_block .lister.no1::before{
	content:'1.';
}
#page .pr_block .lister.no2::before{
	content:'2.';
}
#page .pr_block .lister.no3::before{
	content:'3.';
}
#page .under_flex{
  display: flex;
  justify-content: space-between;
  flex-wrap:wrap;
  position: relative;
	z-index:2;
	margin: 50px auto;
}
#page .under_flex .iamge{
  max-width:950px;
  width:100%;
  position: relative;
  z-index: 2;
}
#page .under_flex .iamge img{
  position: relative;
}
#page .under_flex .iamge::after{
  content: '';
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition:ease all .5s;
}
#page .under_flex.anime .iamge::after{
  width:0;
}
#page .under_flex .bg_inner{
  position: absolute;
  right:0;
  bottom:-50px;
  padding:0 50px;
  padding-right:calc((100vw - 1200px) / 2);
  width:calc(100% - 950px);
}
#page .under_flex .bg_inner::before {
  content: '';
  display: block;
  background: #ebeeee;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width:1400px;
  height:100%;
}
#page .under_flex .bg_inner::after{
  content: '';
  background: #fff;
  display: block;
  width: 1400px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  transition: ease-out all .5s;
  transition-delay:.1s;
}
#page .under_flex.anime .bg_inner::after{
  width:0;
}
#page .under_flex .text {
  min-height: 580px;
  display: flex;
  align-items: center;
}
#page .under_flex .title_en{
  color:#fff;
	font-size:95px;
  position: absolute;
  right:10px;
  bottom: -20px;
  line-height: 1;
	opacity:.6;
}
#page .under_flex .text_area{
  position: relative;
	font-size:18px;
  line-height: 2;
}
#page .under_flex.re{
  flex-flow: row-reverse;
}
#page .under_flex.re .iamge::after{
  left:auto;
  right:0;
}
#page .under_flex.re .bg_inner{
  left:0;
  padding:0 50px;
  padding-right:50px;
  padding-left:calc((100vw - 1200px) / 2);
}
#page .under_flex.re .bg_inner::before{
  left:0;
}
#page .under_flex.re .bg_inner::after {
  left:0;
}
#page .under_flex.re .title_en{
  left:10px;
}
@media screen and (max-width:1600px){
  #page .under_flex .iamge{
    max-width:50%;
  }
  #page .under_flex .bg_inner{
    width:calc(100% - 50%);
  }
  #page .under_flex .title_en{
    font-size:85px;
  }
  #page .under_flex .text{
    min-height:420px;
  }
  #page .under_flex .text_area{
    font-size:18px;
  }
}
@media screen and (max-width:1100px){
  #page .under_flex .bg_inner,
  #page .under_flex.re .bg_inner {
    padding:0 20px;
  }
  #page .under_flex .text{
    min-height:320px;
  }
  #page .under_flex .text_area{
    font-size:15px;
  }
}
#page .contents_bottom {
  position: relative;
}
#page .contents_bottom .bg_area{
  position: absolute;
  width:100%;
  display: flex;
  justify-content: space-between;
  top: 50%;
  transform: translateY(-50%);
}
#page .contents_bottom_area{
  position: relative;
}
#page .contents_bottom_area .inner{
  max-width:1200px;
  width:100%;
  margin:80px auto;
  position: relative;
  top:20px;
  border:3px solid #bbc6c5;
  opacity: 0;
  top:20px;
  overflow: hidden;
  padding: 80px 20px;
}
#page .contents_bottom_area .inner.anime{
  animation: c_fade .5s linear 0s forwards;
}
#page .contents_bottom_area .inner .image_bg{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
#page .contents_bottom_area .inner .image_bg::after {
  content:'';
  display: block;
  width:100%;
  height:100%;
  background:#000;
  opacity: .5;
  position: absolute;
  left: 0;
  top: 0;
}
#page .contents_bottom_area .inner .text{
  color:#fff;
  position: relative;
  width:100%;
  text-align: center;
}
#page .contents_bottom_area .inner .text h2{
  font-size:40px;
  font-family:'Noto Serif JP';
}
#page .contents_bottom_area .inner .text .title_en{
  font-size:36px;
  margin:30px auto 70px;
}
#page .contents_bottom_area .inner .text .text_area p{
  margin:20px auto;
}
#page .contents_bottom_area .inner_btn {
  opacity: 0;
  position: relative;
  top:20px;
}
#page .contents_bottom_area .inner_btn a{
  display: block;
  position: relative;
  padding:40px 20px;
  overflow: hidden;
  border:3px solid #bbc6c5;
  margin:150px auto;
  width:100%;
  max-width:1200px;
  transition:ease all .3s;
}
#page .contents_bottom_area .inner_btn.anime{
  animation: c_fade .5s linear 0s forwards;
}
@keyframes c_fade{
  0%{
    top:20px;
    opacity: 0;
  }
  100%{
    top:0;
    opacity: 1;
  }
}
#page .contents_bottom_area .inner_btn a .image_bg{
  position: absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  width: 100%;
}
#page .contents_bottom_area .inner_btn a .text{
  position: relative;
  color:#fff;
}
#page .contents_bottom_area .inner_btn a .text::before{
  content: "chevron_right";
  display: inline-block;
  margin: 0 3px;
  font-family: 'Material Icons';
  color: #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  line-height: 1;
}
#page .contents_bottom_area .inner_btn a .text .t_top{
  font-size:35px;
  text-align: center;
}
#page .contents_bottom_area .inner_btn a .text .t_bottom{
  text-align: center;
  margin-top:10px;
  font-size:25px;
}
#page .contents_bottom_area .inner_btn a:hover{
  opacity: .8;
}
#page .text_btn {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
#page .text_btn.right{
	text-align:right;
}
#page .text_btn.left{
	text-align:left;
}
#page .text_btn a {
    font-size: 20px;
    color: #fff;
    display: inline-block;
    padding: 15px 40px;
    background: #2baaa3;
    margin-top: 35px;
    letter-spacing: 5px;
    position: relative;
    transition: ease all .3s;
    border: 2px solid #2baaa3;
}
#page .text_btn a::before {
    content: '\e5cc';
    font-family: 'Material Icons';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    transition: ease all .3s;
}
#page .text_btn a:hover {
    color: #2baaa3;
    background: rgba(255,255,255,.5);
}
#page .pr{
	position:relative;
}
#page .bg_images{
	display:flex;
	justify-content:space-between;
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	transform: translateY(50%);
	opacity:.3;
	z-index:-1;
}
#page .contact_form{
	margin:0 auto;
	width:100%;
	max-width:800px;
}
#page .contact_form .contact_table{
	width:100%;
	border-collapse:collapse;
	table-layout:fixed;
	position:relative;
	z-index:2;
	background:#fff;
}
#page .contact_form .contact_table th{
	width:35%;
	padding:15px;
	border:1px solid #ccc;
	text-align: left;
    font-size: 18px;
	position:relative;
}
#page .contact_form .contact_table th span{
	font-size:15px;
	color:#fff;
	display:inline-block;
	padding:5px 10px;
	line-height:1;
	background:#2baaa3;
	position:absolute;
	right:10px;
	top:50%;
	transform:translateY(-50%);
}
#page .contact_form .contact_table td{
	padding:15px;
	border:1px solid #ccc;
}
#page .contact_form .contact_table td input[type="text"],
#page .contact_form .contact_table td textarea{
	padding:5px;
	border:1px solid #ccc;
	font-size:18px;
	display: block;
    width: 100%;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",'Noto Sans JP';
}
#page .contact_form .contact_table td input[type="text"].age{
	width: 60px;
    display: inline-block;
}
#page .contact_form .contact_table td select{
	padding:5px;
	font-size:18px;
	border:1px solid #ccc;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",'Noto Sans JP';
}
#page .contact_form .submit_btn{
	margin:80px auto;
	text-align:center;
}
#page .contact_form .submit_btn input{
	display: inline-block;
    font-size: 20px;
    padding: 10px 50px;
    color: #2baaa3;
    background: #fff;
    border: none;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",'Noto Sans JP';
	transition:ease all .3s;
	border:2px solid #2baaa3;
}
#page .contact_form .submit_btn input:hover{
    background: #2baaa3;
    color: #fff;
	cursor:pointer;
}
#page .maincontents.news_event{
	max-width:1200px;
	width:100%;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	margin: 0 auto;
}
#page .maincontents.news_event .contents{
	width:100%;
	max-width:800px;
}
#page .maincontents.news_event .image{
	background:#333;
}
#page .news_event .inner{
	margin: 50px auto;
}
#page .news_event .inner h2{
	font-size: 25px;
    font-weight: bold;
    padding-left: 20px;
	position:relative;
	margin: 60px auto 20px;
	left:5px;
}
#page .news_event .inner h2::before{
	content:'';
	display:block;
	height:100%;
	width:10px;
	background:#2baaa3;
	transform:skew(-10deg);
	position:absolute;
	left:0;
	top:0;
}
#page .news_event .inner li{
	
}
#page .news_event .inner li a{
	color:#333;
	padding:10px;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	position:relative;
    border-bottom: 1px solid #ccc;
	transition:ease all .3s;
}
#page .news_event .inner li a::before{
	content:'';
	display:block;
	width:100%;
	height:100%;
	background:#000;
	opacity:0;
	pointer-events:none;
	transition:ease all .3s;
	position:absolute;
	left:0;
	top:0;
}
#page .news_event .inner li a .image{
	background:#333;
}
#page .news_event .inner li a h3{
	font-size:20px;
	margin-bottom:10px;
}
#page .news_event .inner li a time{
	display: inline-block;
    margin-bottom: 10px;
    padding: 5px 10px;
    line-height: 1;
    border-radius: 15px;
    background: #2baaa3;
    color: #fff;
    font-size: 12px;
}
#page .news_event .inner li a .image{
	width:40%;
}
#page .news_event .inner li a .text{
	width:58%;
}
#page .news_event .inner li a .more{
	display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    transition: ease all .3s;
    font-size: 18px;
}
#page .news_event .inner li a .more::before{
	content: '';
    display: block;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    background: #00000066;
    border: 2px solid #fff;
    opacity: 0;
    transition: ease all .3s;
    z-index: -1;
}
#page .news_event .inner li a .more::after{
	content: '\e5cc';
    font-family: 'Material Icons';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
	transition:ease all .3s;
}
#page .news_event .inner li a:hover::before{
	opacity:.4;
	pointer-events:all;
}
#page .news_event .inner li a:hover .more{
	opacity:1;
}
#page .news_event .inner li a:hover .more::before{
	opacity:.6;
}
#page .news_event .inner li a:hover .more::after{
	opacity:1;
}
#page .news_event .inner .all_more{
	margin:50px auto;
}
#page .news_event .inner .all_more a{
	
}
#page .news_event .inner .all_more a{
  font-size: 25px;
	color: #fff;
	display: inline-block;
	padding: 20px 80px;
	background: #2baaa3;
	margin-top: 20px;
	margin-bottom: 80px;
	letter-spacing: 5px;
	position: relative;
	transition: ease all .3s;
	border: 2px solid #2baaa3;
}
#page .news_event .inner .all_more a::before{
  content:'\e5cc';
  font-family:'Material Icons';
  position: absolute;
  right:5px;
  top:50%;
  transform:translateY(-50%);
  transition:ease all .3s;
}
#page .news_event .inner .all_more a:hover{
  color:#2baaa3;
  background:rgba(255,255,255,.5);
}
#page .finance{
}
#page .finance .desc_text{
	width: 100%;
    margin: 20px auto;
    background: #f0fbfa;
    border: 1px solid #2baaa3;
    padding: 30px;
    text-align: center;
    line-height: 1.8;
    font-size: 18px;
}
#page .finance h2{
	font-size: 25px;
    font-weight: bold;
    padding-left: 20px;
	position:relative;
	margin: 20px auto;
	clear:both;
}
#page .finance h2::before{
	content:'';
	display:block;
	height:100%;
	width:10px;
	background:#2baaa3;
	transform:skew(-10deg);
	position:absolute;
	left:0;
	top:0;
}
#page .finance p{
	font-size:16px;
	line-height:1.8;
}
#page .finance .finance_flex{
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin:180px auto;
	flex-wrap:wrap;
	width:100%;
	max-width:1400px;
	position:relative;
	padding:10px;
}
#page .finance .finance_flex.re{
	flex-flow: row-reverse;
}
#page .finance .finance_flex .image{
	width:60%;
}
#page .finance .finance_flex .text{
	width: 55%;
    background: #fff;
    position: absolute;
    right:10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 30px;
    box-shadow: 3px 3px 0px 0px #00000020;
    border: 2px solid #2baaa3;
}
#page .finance .finance_flex .text p{
	font-size:15px;
}
#page .finance .finance_flex.re .text{
	left:10px;
}
#page .contact_end{
	margin: 50px auto;
    line-height: 1.8;
}
#page .about,
#page .profile,
#page .history,
#page .privacy,
#page .notice,
#page .sitemap{
	margin:20px auto 80px;
	position:relative;
	z-index:2;
}
#page .about h2,
#page .profile h2,
#page .history h2,
#page .privacy h2,
#page .sitemap h2{
	font-size: 25px;
    font-weight: bold;
    padding-left: 20px;
	position:relative;
	margin: 80px auto 20px;
	clear:both;
	left:5px;
}
#page .about h2::before,
#page .profile h2::before,
#page .history h2::before,
#page .privacy h2::before,
#page .sitemap h2::before{
	content:'';
	display:block;
	height:100%;
	width:10px;
	background:#2baaa3;
	transform:skew(-10deg);
	position:absolute;
	left:0;
	top:0;
}
#page .about h3,
#page .privacy h3,
#page .sitemap h3{
	font-size: 22px;
    font-weight: bold;
    padding-left: 20px;
	position:relative;
	margin: 40px auto 20px;
	clear:both;
	padding:10px;
	border-bottom:2px solid #2baaa3;
}
#page .about p,
#page .history p,
#page .privacy p,
#page .notice p,
#page .sitemap p{
	margin:20px auto;
}
#page .about .text_title{
	font-weight:bold;
	color:#2baaa3;
	font-size:16px;
}
#page .about .right_text{
	text-align:right;
}
#page .about .about_flex{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	align-items:center;
}
#page .about .about_flex .image{
	width:15%;
}
#page .about .about_flex .text{
	width:85%;
}
#page .profile .profile_table{
	width:100%;
	max-width:800px;
	padding:10px;
	margin:30px auto;
}
#page .profile .profile_table table{
	width:100%;
	border-collapse:collapse;
}
#page .profile .profile_table table th{
	border:1px solid #ccc;
	padding:10px;
    text-align: left;
    font-size: 17px;
}
#page .profile .profile_table table td{
	border:1px solid #ccc;
	padding:10px;
}
#page .profile .profile_flex{
	display:flex;
	justify-content:space-between;
	position:relative;
	flex-wrap:wrap;
	margin-bottom:180px;
}
#page .profile .profile_flex .image{
	width: 40%;
}
#page .profile .profile_flex .text{
	width: 58%;
    background: #ffffffed;
    display: block;
    line-height: 1.8;
}
#page .profile .profile_flex .text p{
	margin:20px auto;
}
#page .history .history_flex{
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
}
#page .history .history_flex .image{
	width:20%;
	text-align:center;
}
#page .history .history_flex .text{
	width:80%;
}
#page .history_block{
    margin: 50px auto;
    background: #ffffff;
    border: 1px solid #2baaa3;
    padding: 30px;
    padding-top: 0;
    box-shadow: 5px 5px 1px 0px #3675723b;
}
#page .history_block h3{
    display: inline-block;
    position: relative;
    top: 0;
    transform: translateY(-50%);
    font-size: 25px;
    left: 30px;
	color: #2baaa3;
}
#page .history_block h3::before{
    content: '';
    display: block;
    width: calc(100% + 50px);
    height: 1px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: calc(50% - 1px);
    transform: translate(-50%,-50%);
    z-index: -1;
}
#page .history .history_block p{
	font-size:16px;
	line-height:1.8;
	margin: 10px auto;
}
#page .history .history_block img{
	display:block;
}
#page .access{
	margin:20px auto 80px;
}
#page .access .access_flex{
	display: flex;
    justify-content: space-between;
    margin: 80px auto;
    flex-wrap: wrap;
}
#page .access .access_flex .map{
	width:49%;
}
#page .access .access_flex .access_table{
	width:49%;
}
#page .access .access_flex .access_table table{
	width:100%;
	border-collapse: collapse;
}
#page .access .access_flex .access_table table th{
	padding:40px 10px;
	text-align:left;
	border:1px solid #ccc;
}
#page .access .access_flex .access_table table td{
	border:1px solid #ccc;
	padding:10px;
	text-align:left;
}
#page .privacy h3::before{
	content:'1.';
	margin-right:5px;
}
#page .privacy h3.no2::before{content:'2.';}
#page .privacy h3.no3::before{content:'3.';}
#page .privacy h3.no4::before{content:'4.';}
#page .privacy h3.no5::before{content:'5.';}
#page .privacy h3.no6::before{content:'6.';}
#page .privacy h3.no7::before{content:'7.';}
#page .privacy h3.no8::before{content:'8.';}
#page .privacy h3.no9::before{content:'9.';}
#page .privacy h3.no10::before{content:'10.';}
#page .home{
	position:relative;
	z-index:2;
	margin-bottom:180px;
}
#page .home h2 {
    font-size: 25px;
    font-weight: bold;
    padding-left: 20px;
    position: relative;
    margin: 80px auto 20px;
    left: 5px;
}
#page .home h2::before {
    content: '';
    display: block;
    height: 100%;
    width: 10px;
    background: #2baaa3;
    transform: skew(-10deg);
    position: absolute;
    left: 0;
    top: 0;
}
#page .home p{
	margin:20px auto;
}
#page .home .pick_title{
	font-weight:bold;
	font-size:20px;
	display:block;
}
#page .home .home_flex{
	display:flex;
	flex-flow: row-reverse;
}
#page .home .home_flex.re{
	flex-flow: inherit;
}
#page .home .home_flex.wrap{
	flex-wrap:wrap;
	flex-flow:wrap;
	margin: 50px auto;
	align-items: flex-start;
}
#page .home .home_flex.wrap.re{
	flex-wrap:wrap;
	flex-flow:row-reverse;
}
#page .home .structure .home_flex,
#page .home .series .home_flex{
	margin:120px auto;
}
#page .home .home_flex.center{
	align-items:center;
}
#page .home .home_flex .image{
	width:50%;
	text-align:center;
	position:relative;
}
#page .home .home_flex.wrap .image{
	width:50%;
	box-shadow: 3px 3px 5px 0 #0000001c;
}
#page .home .home_flex.wrap .image::before{
	content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #00000020;
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: -1;
}
#page .home .home_flex.wrap .text{
	width:48%;
	margin-left: 2%;
}
#page .home .home_flex.wrap.re .text{
	margin-left:0;
	margin-right:2%;
}
#page .home .home_flex.wrap .text h2{
	font-size:25px;
	margin-top:0;
	margin-bottom:10px;
}
#page .home .home_flex .text_flex{
	width:100%;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
#page .home .home_flex .text_flex img{
	max-width:45%;
}
#page .home .home_flex .table{
	
}
#page .home .home_flex .table table{
	width:100%;
	border-collapse:collapse;
}
#page .home .home_flex .table table th{
	padding:10px;
	font-size:17px;
	font-weight:normal;
	border:1px solid #ccc;
	background: #2baaa3;
    color: #fff;
}
#page .home .home_flex .table table td{
	padding:10px;
	background:#fff;
	border:1px solid #ccc;
}
#page .home .home_flex .table p{
	margin:5px auto;
}
#page .home .home_flex.wrap .w30{
	width:30%;
}
#page .home .home_flex.wrap .w33{
	width:33%;
}
#page .home .home_flex.wrap .w50{
	width:50%;
}
#page .home .home_flex.wrap .w68{
	width:68%;
}
#page .home .home_flex.wrap .w65{
	width:65%;
}
#page .home .home_flex.wrap .w130{
	width:130px;
}
#page .home .home_flex.wrap .w130c{
	width:calc(100% - 200px);
}
#page .home_btn{
	margin:30px auto;
}
#page .home_btn ol{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
#page .home_btn ol li a{
	padding: 5px 20px;
    border: 1px solid #2baaa3;
    display: inline-block;
    color: #2baaa3;
    font-size: 16px;
	transition:ease all .3s;
}
#page .home_btn ol li a:hover{
	background:#2baaa3;
	color:#fff;
}
#page .home_btn ol li.current{
	padding: 5px 20px;
    border: 1px solid #2baaa3;
	background:#2baaa3;
    display: inline-block;
    color: #fff;
    font-size: 16px;
}
#page .home .desc_text{
	margin: 30px auto;
    text-align: center;
    line-height: 1.8;
    font-size: 17px;
}
#page .home .concept p{
	margin:30px auto;
}
#page .home .concept .alignright{
	margin-left:20px;
	float:right;
	width:38%;
}
#page .home .price{
	
}
#page .home .price_box{
    background: #fff;
    padding: 20px;
    border: 1px solid #efefef;
    box-shadow: 10px 10px 0px #00000030;
	margin: 50px auto;
}
#page .home .price_box h3{
	background: #91a3a2;
    color: #fff;
    padding: 10px 20px;
    margin-bottom: 20px;
    font-size: 22px;
}
#page .home .price_flex{
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
}
#page .home .price_flex .image{
	width:40%;
}
#page .home .price_flex .text{
	width:59%;
}
#page .home .price_flex .text p{
	margin:0 auto;
}
#page .home .price_flex .text li{
	margin:20px auto;
}
#page .home .price_flex .text li .title{
	font-size:18px;
	font-weight:bold;
	margin-bottom: 5px;
}
#page .home .partner_box{
	margin:80px auto;
    background: #fff;
    padding: 20px;
    border: 1px solid #efefef;
    box-shadow: 10px 10px 0px #00000030;
}
#page .home .partner_box .profile_flex{
	margin:10px auto;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	align-items:center;
}
#page .home .partner_box .profile_flex .image{
	width:130px;
	overflow:hidden;
	position:relative;
	border-radius:10px;
}
#page .home .partner_box .profile_flex .text{
	width:calc(100% - 180px);
}
#page .home .partner_box .profile_flex .text h2{
	margin:0 auto 10px;
}
#page .home .partner_box .profile_flex .comment{
	margin:0 auto;
}
#page .home .partner_box .profile_flex .comment li{
	display:block;
	position:relative;
	font-weight: bold;
    font-size: 16px;
	margin:8px auto;
}
#page .home .partner_box .profile_flex .comment li:nth-child(2){
	padding-left:20%;
}
#page .home .partner_box .profile_flex .comment li:nth-child(3){
	padding-left:40%;
}








#page .home .bot_banner{
	text-align:center;
	margin:80px auto;
}
#page .sales{
	position:relative;
	z-index:2;
}
#page .sales .desc_text{
	text-align:center;
	margin:50px auto;
	line-height:1.8;
	font-size:17px;
}
#page .sales .desc_text p{
	margin:20px auto;
}
#page .sales .sales_list{
	margin: 80px auto;
    border: 1px solid #32aaa3;
    background: #f5fffe;
    padding:40px 80px;
}
#page .sales .sales_list li{
	margin:40px auto;
}
#page .sales .sales_list li .title{
	font-size:18px;
	font-weight:bold;
	margin-bottom:5px;
}
#page .sales .sales_flex{
	margin:40px auto;
	display:flex;
	flex-wrap:wrap;
	align-items: center;
}
#page .sales .sales_flex .image{
	width:100%;
	max-width:350px;
	text-align:center;
}
#page .sales .sales_flex .image img{
	display:block;
	margin:0 auto 10px;
}
#page .sales .sales_flex .image span{
	font-weight:bold;
}
#page .sales .sales_flex .text{
	width:100%;
	max-width:calc(100% - 350px);
}
#page .sales .sales_flex .text p{
	margin:20px auto;
}
#page .sales .sales_flex .text span{
	font-weight:bold;
}
#page .sales .sales_flex .right_bottom{
	text-align:right;
}

/*=====================================
*
*archive
*
=======================================*/
#archive{
	
}
#archive .category_header{
	height:400px;
	position:relative;
	overflow:hidden;
}
#archive .category_header .image_bg{
	position:relative;
}
#archive .category_header .image_bg::before{
	content:'';
	display:block;
	width:100%;
	height:100%;
	background:#000;
	position:absolute;
	left:0;
	top:0;
	opacity:.6;
}
#archive .category_header h1{
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	color:#fff;
}
#archive .maincontents{
	width:100%;
	max-width:1200px;
	margin:0 auto 80px;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
#archive .maincontents .contents{
	width:100%;
	max-width:800px;
}
#archive .maincontents .looplist li a{
	color:#333;
	padding:10px;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	position:relative;
    border-bottom: 1px solid #ccc;
	transition:ease all .3s;
}
#archive .maincontents .looplist li a::before{
	content:'';
	display:block;
	width:100%;
	height:100%;
	background:#000;
	opacity:0;
	pointer-events:none;
	transition:ease all .3s;
	position:absolute;
	left:0;
	top:0;
}
#archive .maincontents .looplist li a .image{
	background:#333;
}
#archive .maincontents .looplist li a h2{
	margin-bottom:10px;
}
#archive .maincontents .looplist li a time{
	display: inline-block;
    margin-bottom: 10px;
    padding: 5px 10px;
    line-height: 1;
    border-radius: 15px;
    background: #2baaa3;
    color: #fff;
    font-size: 12px;
}
#archive .maincontents .looplist li a .image{
	width:40%;
}
#archive .maincontents .looplist li a .text{
	width:58%;
}
#archive .maincontents .looplist li a .more{
	display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    transition: ease all .3s;
    font-size: 18px;
}
#archive .maincontents .looplist li a .more::before{
	content: '';
    display: block;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    background: #00000066;
    border: 2px solid #fff;
    opacity: 0;
    transition: ease all .3s;
    z-index: -1;
}
#archive .maincontents .looplist li a .more::after{
	content: '\e5cc';
    font-family: 'Material Icons';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
	transition:ease all .3s;
}
#archive .maincontents .looplist li a:hover::before{
	opacity:.4;
	pointer-events:all;
}
#archive .maincontents .looplist li a:hover .more{
	opacity:1;
}
#archive .maincontents .looplist li a:hover .more::before{
	opacity:.6;
}
#archive .maincontents .looplist li a:hover .more::after{
	opacity:1;
}
#archive .maincontents .contents .category_contents h2{
	font-size: 25px;
    font-weight: bold;
    padding-left: 20px;
	position:relative;
	margin: 60px auto 20px;
}
#archive .maincontents .contents .category_contents h2::before{
	content:'';
	display:block;
	height:100%;
	width:10px;
	background:#2baaa3;
	transform:skew(-10deg);
	position:absolute;
	left:0;
	top:0;
}
#archive .maincontents .contents .category_contents p{
	margin:20px auto;
}
#archive .maincontents .contents .category_contents table{
	width:100%;
	border-collapse:collapse;
	table-layout:fixed;
}
#archive .maincontents .contents .category_contents table th{
	background:#2baaa3;
	color:#fff;
	padding:10px;
	font-size:14px;
	border: 1px solid #2baaa3;
}
#archive .maincontents .contents .category_contents table th:first-child{
	width:35%;
}
#archive .maincontents .contents .category_contents table td{
	padding:5px 10px;
	font-size:14px;
	border:1px solid #2baaa3;
	text-align:center;
}
#archive .maincontents .contents .category_contents table td:first-child{
	text-align:left;	
}

/*=====================================
*
*breadcrumb
*
=======================================*/
.breadcrumb{
  max-width:1200px;
  width:100%;
  margin:40px auto;
}
.breadcrumb ul{
  display: flex;
  justify-content: flex-start;
  flex-wrap:wrap;
}
.breadcrumb ul li{
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right:10px;
	margin-bottom:5px;
}
.breadcrumb ul li::before {
  content: '';
  display: block;
  width:100%;
  height:100%;
  background:#2baaa3;
  position: absolute;
  left:0;
  top:0;
  transform:skew(-10deg);
}
.breadcrumb ul li:last-child::before{
  background:#91a3a2;
}
.breadcrumb ul li a{
  display: inline-block;
  color:#fff;
  padding:3px 10px;
  position: relative;
  transition:ease all .3s;
}
.breadcrumb ul li a:hover {
  opacity: .7;
}

/*=====================================
*
*toc
*
=======================================*/
.toc{
	width: 100%;
    max-width: 500px;
    margin: 20px auto;
    background: #f0fbfa;
    border: 1px solid #2baaa3;
    padding: 30px;
}
.toc .title{
	text-align:center;
	font-weight:bold;
	font-size: 20px;
	margin-bottom:30px;
}
#single .maincontents .contents .toc ul{
	padding:0;
	margin:0;
	border:none;
	background:none;
}
.toc li{
	margin:5px auto;
	position:relative;
}
.toc li a{
	color:#333;
	transition:ease all .3s;
}
.toc li a:hover{
	opacity:.6;
}
.toc li.ids3{
	margin-left:20px;
}
.toc li.ids3::before{
	content: '└';
    position: absolute;
    left: -5px;
    top: 0;
    transform: translateX(-100%);
}
/*=====================================
*
*footer
*
=======================================*/
footer{
  background:#334241;
  padding:80px 0 10px;
}
footer .footer_flex{
  display: flex;
  justify-content: space-between;
  flex-wrap:wrap;
  width:100%;
  max-width:calc(100% - 200px);
  margin:50px auto;
}
footer .footer_flex .left_inner{
  color:#fff;
  width:30%;
}
footer .footer_flex .left_inner .text{
  margin-top:20px;
}
footer .footer_flex .right_inner{
  width:65%;
}
footer .footer_flex .right_inner_flex{
  display: flex;
  justify-content: space-between;
  flex-wrap:wrap;
}
footer .footer_flex .right_inner_flex .list{

}
footer .footer_flex .right_inner_flex .title{
  font-weight: bold;
  font-size:20px;
  color:#fff;
}
footer .footer_flex .right_inner_flex .title a{
  font-weight: bold;
  font-size:20px;
  color:#fff;
  display: inline-block;
  margin:10px 0;
}
footer .footer_flex .right_inner_flex .list li a{
  color:#fff;
  display: inline-block;
  margin:5px 0;
}
footer .copyright{
  color:#9fadac;
  text-align: center;
}
footer a:hover{
  opacity: .6;
}
@media screen and (max-width: 1300px){
  footer .footer_flex{
    max-width:calc(100% - 100px);
  }
}
/*=====================================
*
*sidenav
*
=======================================*/
.sidenav{
	width:100%;
	max-width:300px;
}
.sidenav .sidebar_top_title{
	font-size: 20px;
    font-weight: bold;
    padding-left: 20px;
	position:relative;
	margin-bottom:10px;
}
.sidenav .sidebar_top_title::before{
	content:'';
	display:block;
	height:100%;
	width:10px;
	background:#2baaa3;
	transform:skew(-10deg);
	position:absolute;
	left:0;
	top:0;
}
.sidebar_widget li{
	display:block;
	margin:10px auto;
}
.sidebar_widget li a{
	display:inline-block;
	color:#333;
	transition:ease all .3s;
	padding:5px;
	padding-right:20px;
	position:relative;
}
.sidebar_widget li a::before{
	content:'';
	display:block;
	width:0;
	height:2px;
	position:absolute;
	left:0;
	bottom:0;
	transition:ease all .3s;
	background:#2baaa3;
}
.sidebar_widget li a:hover::before{
	width:100%;
}
/*=====================================
*
*pcのみ
*
=======================================*/
@media screen and (min-width:1024px){
  .sp{
    display: none;
  }
}
/*=====================================
*
*sp用
*
=======================================*/
@media screen and (max-width:1023px){
  .pc{
    display: none;
  }
  .grid_header{
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: space-between;
  }
  .grid_header .grid_header_center{
    display: block;
    position: fixed;
    left:100%;
    top:0;
    width:100%;
    height:100vh;
    transition:ease all .3s;
    z-index: 98;
    background: rgb(255 255 255 / .9);
    padding: 80px 20px;
    overflow-y: scroll;
  }
  .grid_header .grid_header_center.opened{
    left:0;
  }
  .grid_header .grid_header_center .contact_area{
    display: block;
    text-align: center;
  }
  .grid_header .grid_header_center .contact_area .document{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 35px;
    margin: 30px auto;
  }
  .grid_header .grid_header_center .Gmenu{
    display: block;
  }
  .grid_header .grid_header_center .Gmenu li a{
    font-size:18px;
  }
	.grid_header .grid_header_center .Gmenu li::before{
		content:none;
	}
  .grid_header .grid_header_center .Gmenu li .sub-menu{
    position: relative;
    opacity: 1;
    pointer-events: all;
  }
  .grid_header .grid_header_center .Gmenu li .sub-menu li a{
    font-size:15px;
    background:none;
    border:none;
    text-align: center;
  }
  .grid_header .grid_header_right{
    display: none;
  }
  .menubtn{
    width:50px;
    position: relative;
    z-index: 99;
  }
  .menubtn span{
    display: block;
    background:#2baaa3;
    width:70%;
    height:5px;
    margin:5px auto;
    position: relative;
    transition: ease all .3s;
    top:0;
  }
  .menubtn.close span:nth-child(1){
    transform: rotate(-45deg);
    top: 10px;
  }
  .menubtn.close span:nth-child(2){
    transform: rotate(45deg);
  }
  .menubtn.close span:nth-child(3){
    opacity: 0;
    pointer-events: none;
  }
  .mv li .image img{
    height: 70vh;
    min-height: inherit;
  }
  .mv li .text{
    left: 0;
    width: 100%;
    font-size: 10vw;
    text-align: center;
  }

  .more_btn a{
    margin-top:40px;
    padding: 20px 50px;
    font-size:20px;
  }

  .section1{
    margin:50px auto;
  }
  .section1 .sec1_inner .image{
    max-width: 100%;
  }
  .section1 .sec1_inner .sec1_inner_contents{
    position: relative;
    width:100%;
    max-width: 100%;
    left:0;
    top:0;
    transform: none;
    padding:10px 15px;
    font-size:14px;
  }

  .section2{
    margin:50px auto;
  }
  .section2 .sec2_grid{
    grid-template-columns: 100%;
  }
  .section2 .sec2_grid .sec2_grid_inner .image img {
    max-width: inherit;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .section2 .sec2_grid .sec2_grid_inner:nth-of-type(2){
    margin-top:0;
  }
  .section2 .sec2_grid .sec2_grid_inner_contents .more a{
    padding:0;
  }

  .section3 .sec3_grid{
    grid-template-columns: 100%;
  }
  .section3 .sec3_grid .sec3_grid_inner_contents .more{
    margin-top:30px;
  }

  .section4 .top_title{
    margin:50px auto;
  }
  .section4 .top_title .en {
    font-size: 50px;
  }
  .section4 .top_title h2 {
    font-family: 'Noto Serif JP';
    font-size: 25px;
  }
  .section4 .sec4_order{
    margin:50px auto;
  }
  .section4 .sec4_order .title{
    padding-left:10px;
  }
  .section4 .sec4_order .title .en,
  .section4 .sec4_other .title .en{
    font-size:20px;
    margin-right:20px;
  }
  .section4 .sec4_order .title h3,
  .section4 .sec4_other .title h3{
    font-size:20px;
  }
  .section4 .sec4_order_slider .slick-slide,
  .section4 .sec4_other_slider .slick-slide{
    margin: 0 10px;
  }
  .section4 .sec4_order_slider .slick-list::before,
  .section4 .sec4_order_slider .slick-list::after,
  .section4 .sec4_other_slider .slick-list::before,
  .section4 .sec4_other_slider .slick-list::after{
    content:none;
  }
  .section4 .sec4_order_slider .slick-prev,
  .section4 .sec4_other_slider .slick-prev{
    left:10px;
  }
  .section4 .sec4_order_slider .slick-next,
  .section4 .sec4_other_slider .slick-next{
    right:10px;
  }
  .section4 .sec4_other{
    margin:100px auto 50px;
  }

  .section5 .top_title{
    margin:50px auto;
  }
  .section5 .top_title .en {
    font-size: 50px;
  }
  .section5 .top_title h2 {
    font-family: 'Noto Serif JP';
    font-size: 25px;
  }
  .section5 .sec5_grid{
    grid-template-columns:100%;
    padding:10px;
  }
  .section5 .sec5_grid .sec5_grid_inner{
    margin-bottom:20px;
  }

  .section6 .top_title{
    margin:50px auto;
  }
  .section6 .top_title .en {
    font-size: 50px;
  }
  .section6 .top_title h2 {
    font-family: 'Noto Serif JP';
    font-size: 25px;
  }
  .section6 .flow{
    padding:10px;
  }
  .section6 .banner{
    margin:50px 10px;
    width: auto;
  }
  .section6 .banner a{
    padding:30px;
    font-size:20px;
  }

  .section7 .sec7_flex .sec7_flex_inner .top_title{
    margin:50px auto;
  }
  .section7 .sec7_flex .sec7_flex_inner .top_title .en {
    font-size: 50px;
  }
  .section7 .sec7_flex .sec7_flex_inner .top_title h2 {
    font-family: 'Noto Serif JP';
    font-size: 25px;
  }
  .section7 .sec7_flex{
    max-width: calc(100% - 20px)
  }
  .section7 .sec7_flex .sec7_flex_inner{
    width:100%;
  }
  .section7 .sec7_flex .sec7_flex_inner li a{
    padding:20px 10px;
  }
  .section7 .sec7_flex .sec7_flex_inner a time{
    margin-right:20px;
  }
  .section7 .sec7_flex .sec7_flex_inner a .text{
    font-size:14px;
  }
  .section7 .sec7_flex .sec7_flex_inner a h3{
    font-size:14px;
  }
  .section7 .banner{
    margin:50px 10px;
    width: auto;
  }
  .section7 .banner a{
    padding:30px;
    font-size:20px;
  }

  .section8 .sec8_bg {
    background: url(./img/sec8_bg.jpg)no-repeat center center;
    background-size: cover;
    width: 100%;
  }
  .section8 .sec8_bg .sec8_bg_inner {
    width: 100%;
    max-width: 600px;
    padding: 30px 10px;
    font-size: 14px;
  }
  .section8 .more_btn a{
    letter-spacing: 1px;
  }

  .section9 .top_title{
    margin:50px auto;
  }
  .section9 .top_title .en {
    font-size: 50px;
  }
  .section9 .top_title h2 {
    font-family: 'Noto Serif JP';
    font-size: 25px;
  }
  .section9 .sec9_flex{
    max-width:calc(100% - 10px);
  }
  .section9 .sec9_flex .maps{
    width:100%;
  }
  .section9 .cv_area .cv_area_flex{
    margin:30px auto 20px;
  }
  .section9 .sec9_flex .text{
    width:100%;
    font-size:15px;
  }
  .section9 .cv_area .cv_area_flex{
    max-width:calc(100% - 30px);
    flex-wrap:wrap;
  }
  .section9 .cv_area .cv_area_flex .cv_area_flex_inner{
    width:100%;
    max-width:100%;
    margin:15px auto;
  }
  .section9 .cv_area .cv_area_flex_inner a .en{
    font-size: 50px;
  }
  .section9 .cv_area .cv_area_flex_inner a .title{
    font-family: 'Noto Serif JP';
    font-size: 25px;
  }
  .section9 .cv_area .cv_area_flex_inner a .text{
    font-size:14px;
  }
  .section9 .cv_area .cv_area_flex_inner a .contact{
    font-size: 20px;
    color: #fff;
    text-align: center;
    display: block;
    padding: 15px;
  }
  .section9 .social{
    margin:20px auto 50px;
  }
  .section9 .social ol{
    max-width: calc(100% - 20px);
    justify-content: space-between;
    align-items: center;
  }
  .section9 .social ol li{
    width:26%;
  }
  .section9 .social ol li:nth-child(2){
    margin:0;
  }

  footer .footer_flex{
    max-width:calc(100% - 20px);
  }
  footer .footer_flex .left_inner{
    width:100%;
  }
  footer .footer_flex .right_inner {
    width: 100%;
    margin-top: 40px;
  }
  footer .footer_flex .right_inner_flex .list {
    margin: 15px 0;
  }
  footer .footer_flex .right_inner_flex .title{
    font-size:18px;
  }
  footer .footer_flex .right_inner_flex .title a{
    font-size:15px;
  }
  footer .copyright {
    font-size: 12px;
  }
  /*=====================================
  *page
  =======================================*/
  #page .page_header .white_box{
    width: calc(100% - 20px);
    padding:20px;
  }
  #page .page_header .white_box h1{
    font-size:35px;
  }
  #page .page_header .white_box .title_en{
    font-size:25px;
    margin:20px auto;
  }
  #page .page_header .white_box .subtext{
    font-size:14px;
  }
	#page .pr_block{
		margin:80px auto;
	}
  #page .under_flex,
  #page .under_flex.re {
    padding:10px;
    margin:0 auto;
    flex-wrap:wrap;
  }
  #page .under_flex .iamge{
    max-width:100%;
  }
  #page .under_flex .iamge img{
    max-width:80%;
  }
  #page .under_flex .bg_inner,
  #page .under_flex.re .bg_inner{
    width: 100%;
    position: relative;
    transform: none;
    margin: 0;
    bottom: 50px;
    padding: 10px;
  }
  #page .under_flex .bg_inner::before{
    width:calc(100% + 10px);
  }
  #page .under_flex .text {
    min-height: inherit;
    margin-top: 20px;
    padding: 40px 0;
  }
  #page .under_flex .text_area {
    font-size: 14px;
    line-height: 1.8;
  }
  #page .under_flex .title_en{
    font-size:60px;
    bottom:-15px;
  }
  #page .under_flex.re .iamge{
    text-align: right;
  }
  #page .contents_bottom{
    padding:10px;
  }
  #page .contents_bottom .bg_area{
    flex-wrap:wrap;
    left:0;
  }
  #page .contents_bottom .bg_area img{
    margin:50px auto;
  }
  #page .contents_bottom_area .inner{
    padding:40px 10px;
  }
  #page .contents_bottom_area .inner .image_bg{
    height: 100%;
  }
  #page .contents_bottom_area .inner .image_bg img{
    max-width: inherit;
    height: 100%;
  }
  #page .contents_bottom_area .inner .text h2{
    font-size: 35px;
  }
  #page .contents_bottom_area .inner .text .title_en{
    font-size: 25px;
    margin: 20px auto;
  }
  #page .contents_bottom_area .inner .text .text_area{
    font-size:14px;
  }
  #page .contents_bottom_area .inner_btn a{
    padding: 20px 5px;
  }
  #page .contents_bottom_area .inner_btn a .text .t_top{
    font-size:20px;
  }
  #page .contents_bottom_area .inner_btn a .text .t_bottom{
    font-size:13px;
  }
  #page .contents_bottom_area .inner_btn a .text::before{
    font-size:30px;
    right:10px;
  }
	#page .text_btn{
		padding:10px;
	}
	#page .text_btn a{
		margin-top:10px;
		letter-spacing:0;
		font-size:18px;
		padding:10px 20px;
	}
	#page .contact_header{
		height: 150px;
	}
	#page .contact_header h1{
		font-size:24px;
		width:100%;
		text-align: center;
    	padding: 10px;
	}
	#page .contact_form{
		padding:10px;
	}
	#page .contact_form .contact_table th{
		display:block;
		width:100%;
		border:none;
		padding-bottom: 5px;
	}
	#page .contact_form .contact_table td{
		display:block;
		width:100%;
		border:none;
		padding-top:0;
	}
	#page .news_event .inner{
		padding:10px;
		margin:20px auto;
	}
	#page .news_event .inner h2{
		margin:20px auto;
	}
	#page .news_event .inner li a .image{
		width:100%;
	}
	#page .news_event .inner li a .text{
		width:100%;
	}
	#page .news_event .inner li a h3{
		margin:10px auto;
	}
	#page .news_event .inner .all_more{
		margin:20px auto;
		text-align:center;
	}
	#page .news_event .inner .all_more a {
		margin: 20px auto;
		padding: 10px 50px;
		font-size: 20px;
	}
	#page .finance .desc_text{
		width: calc(100% - 20px);
		font-size: 15px;
		padding: 20px;
	}
	#page .finance h2{
		font-size:20px;
	}
	#page .finance .finance_flex,
	#page .finance .finance_flex.re{
		flex-wrap:wrap;
		margin:50px auto;
	}
	#page .finance .finance_flex .image,
	#page .finance .finance_flex.re .image{
		width:100%;
	}
	#page .finance .finance_flex .text,
	#page .finance .finance_flex.re .text{
		width: 100%;
		position: relative;
		top: 0;
		left: 0;
		transform: none;
		padding: 10px;
		margin-top:30px;
	}
	#page .finance .finance_flex .text p {
		font-size: 14px;
		line-height: 1.5;
	}
	#page .profile h2{
		left:10px;
	}
	#page .profile .profile_table table th{
		padding: 8px;
		font-size: 14px;
	}
	#page .profile .profile_table table td {
		border: 1px solid #ccc;
		padding: 8px;
		font-size: 14px;
	}
	#page .profile .profile_flex{
		padding:10px;
	}
	#page .profile .profile_flex .image{
		width:100%;
	}
	#page .profile .profile_flex .text{
		width:100%;
		margin-top:20px;
	}
	#page .access .access_flex{
		padding:10px;
		margin:30px auto;
	}
	#page .access .access_flex .map{
		width:100%;
		height:300px;
	}
	#page .access .access_flex .access_table{
		width:100%;
		margin-top:30px;
	}
	#page .access p{
		padding:10px;
	}
	#page .access .access_flex .access_table table th,
	#page .access .access_flex .access_table table td{
		font-size:14px;
		padding:8px;
	}
	#page .history{
		padding:10px;
	}
	#page .history_block{
		padding: 15px;
    	padding-top: 0;
	}
	#page .history h2,
	#page .about h2,
	#page .privacy h2{
		font-size:20px;
	}
	#page .history h3,
	#page .about h3,
	#page .privacy h3{
		font-size:18px;
	}
	#page .history .history_block p{
		font-size: 15px;
		line-height:1.6;
	}
	#page .history .history_flex .image{
		width:100%;
	}
	#page .history .history_flex .text{
		width:100%;
	}
	#page .about,
	#page .privacy{
		padding:10px;
	}
	#page .about .about_flex .image{
		width:100%;
		text-align:center;
	}
	#page .about .about_flex .text{
		width:100%;
	}
	#page .home{
		padding:10px;
	}
	#page .home h2,
	#page .home .home_flex.wrap .text h2{
		font-size:20px;
	}
	#page .home .home_flex .image,
	#page .home .home_flex.wrap .image{
		width:100%;
	}
	#page .home .home_flex,
	#page .home .home_flex.re,
	#page .home .home_flex.wrap.re {
		flex-wrap: wrap;
		flex-flow: column;
	}
	#page .home .structure .home_flex{
		margin:40px auto;
	}
	#page .home .home_flex.wrap .image::before{
		left:5px;
		top:5px;
	}
	#page .home .home_flex .text,
	#page .home .home_flex.wrap .text,
	#page .home .home_flex.wrap.re .text{
		width:100%;
		margin:0;
		margin-top:20px;
	}
	#page .home .pick_title{
		font-size:16px;
	}
	#page .home .price_box{
		padding:10px;
		box-shadow:5px 5px 0px #00000030;
	}
	#page .home .price_flex .image{
		width:100%;
	}
	#page .home .price_flex .text{
		width:100%;
		margin-top:20px;
	}
	#page .home .partner_box .profile_flex .image{
		width:100%;
		text-align:center;
		margin-bottom:10px;
	}
	#page .home .partner_box .profile_flex .text{
		width:100%;
	}
	#page .home .partner_box{
		padding:10px;
		box-shadow:5px 5px 0px #00000030;
	}
	#page .home .partner_box .profile_flex .comment{
		text-align:center;
	}
	#page .home .partner_box .profile_flex .comment li{
		font-size:15px;
	}
	#page .home .partner_box .profile_flex .comment li:nth-child(2),
	#page .home .partner_box .profile_flex .comment li:nth-child(3){
		padding:0;
	}
	#page .sales{
		padding:10px;
	}
	#page .sales .desc_text {
		text-align: center;
		margin: 25px auto;
		line-height: 1.8;
		font-size: 15px;
	}
	#page .sales .sales_list{
		padding:10px;
	}
	#page .sales .sales_list li {
		margin: 20px auto;
		font-size: 14px;
	}
	#page .sales .sales_list li .title{
		font-size:16px;
	}
	#page .sales .sales_flex .image,
	#page .sales .sales_flex .text{
		max-width: inherit;
	}
	#page .contact_form .contact_table td input[type="text"].age{
		width:calc(100% - 20px);
	}
	#page .home .concept .alignright{
		width:100%;
		float:none;
		margin:20px auto;
	}
	#page .home_btn ol li {
		width: 48%;
		margin: 10px 0;
	}
	#page .home_btn ol li.current{
		padding: 5px 10px;
		font-size: 15px;
		text-align:center;
	}
	#page .home_btn ol li a {
		padding: 5px 10px;
		font-size: 15px;
		width: 100%;
		height: 100%;
		text-align:center;
	}

  /*=====================================
  *breadcrumb
  =======================================*/
  .breadcrumb{
    padding:10px;
    margin:20px auto;
  }
  .breadcrumb li a{
    font-size:11px;
  }
  /*=====================================
  *single
  =======================================*/
	#single h1{
		font-size:25px;
	}
	#single .maincontents .contents{
		padding:10px;
	}
	#single .maincontents .contents h2{
		font-size:23px;
	}
	#single .maincontents .contents h3{
		font-size:20px;
	}
	#single .maincontents .contents table th,
	#single .maincontents .contents table td{
		font-size:14px;
	}
	#single .maincontents .contents .modal_image .modal img{
		max-width: 80vw;
    	max-height: 85vh;
	}
	.page_pn ol li a .date{
		font-size:12px;
	}
	.page_pn ol li a .title{
		font-size:14px;
	}
  /*=====================================
  *archive
  =======================================*/
	#archive .maincontents .looplist li a{
		
	}
	#archive .maincontents .contents{
		padding:10px;
	}
	#archive .maincontents .looplist li a .image{
		width:100%;
	}
	#archive .maincontents .looplist li a .text{
		width:100%;
	}
	#archive .maincontents .looplist li a h2{
		margin:10px auto;
	}
	#archive .category_header{
		height: 150px;
	}
	#archive .category_header h1{
		font-size:24px;
	}
	#archive .maincontents .contents .category_contents h2{
		font-size:20px;
	}
	#archive .maincontents .contents .category_contents .blog_table{
		width:100%;
		overflow-x:scroll;
	}
	#archive .maincontents .contents .category_contents table{
		width:800px;
	}
  /*=====================================
  *sidenav
  =======================================*/
	.sidenav{
		padding:10px;
	}
}
/*=====================================
*
*IE hack
*
=======================================*/
@media all and (-ms-high-contrast: none){
  .grid_header{
    display: flex;
    justify-content: space-between;
  }
  .grid_header .logo{
    width:20%;
  }
  .grid_header .grid_header_center{
    width:65%;
    margin-left:5%;
    padding-left:5%;
    display: flex;
    flex-wrap:wrap;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .grid_header .grid_header_center .contact_area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:65%;
  }
  .grid_header .grid_header_center .menu-global-container{
    width:100%;
  }
  .grid_header .grid_header_center .Gmenu{
    display: flex;
    justify-content: space-between;
    width:100%;
  }
  .grid_header .grid_header_center .Gmenu li{
    width:calc(100% / 6);
  }
  .grid_header .grid_header_center .Gmenu li .sub-menu li{
    width:100%;
  }
  .grid_header .grid_header_right{
    width:10%;
  }
  .section2 .sec2_grid{
    display: flex;
  }
  .section3 .sec3_grid{
    display: flex;
    justify-content: space-around;
  }
  .section5 .sec5_grid{
    display: flex;
    justify-content: space-around;
  }
  .section5 .sec5_grid .sec5_grid_inner{
    width:30%;
  }
}
