@charset "utf-8";
/* ********************************************************************************
 * Browser Style Reset
 * ******************************************************************************** */
  html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,section,article,aside,hgroup,header,footer,nav,dialog,figure,menu,video,audio,mark,time,canvas,details {    margin: 0;    padding: 0;    border: 0;    font-size: 100%;    background: transparent;    -webkit-box-sizing: border-box;    box-sizing: border-box;}
  html { overflow-y:scroll; }
  img { border:none; vertical-align: bottom; }
  a img { border:none; 
    text-decoration:none; 
    outline:0; 
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-decoration: none;}
  h1,h2,h3,h4,h5,h6 { font-size:100%; font-weight:normal; }
  ul,ol { list-style-type:none; }
/* ********************************************************************************
 * Default Style
 * ******************************************************************************** */
  object,embed { border:0; vertical-align:bottom; outline:none; }
  table { border-collapse:collapse; }
  input{ vertical-align:middle; }
  address,caption,cite,code,dfn,em,strong,th,var { font-style:normal; font-weight:normal; }
  strong { font-weight:bold; text-decoration:none; }	
  label { cursor:pointer; }
  select option { padding:0 3px; }
  hr { height: 0; margin: 0; padding: 0; border: 0; display:none;}
  section,article,aside,hgroup,header,footer,nav,dialog,figure,figcaption { display: block; }
  input,select { vertical-align: middle; }
/* ********************************************************************************
 * style
 * ******************************************************************************** */
body {
	color: #000;
  background: #f5f4f0;
  font-family: "Zen Kaku Gothic New", sans-serif,  YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif ;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
	width: 100%;
  min-width: 1100px;
  overflow-x: scroll;
  line-height: 2;
	-webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  letter-spacing: 0.1em;
}
a {
  color: #000;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
	display: inline-block;
  width: 100%;
  height: 100%;
}
a:hover{
  opacity: 0.5;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
img {
	max-width: 100%;
	margin: auto;
}
ul,li,dl,dt,dd,form {
  margin: 0px;
  padding: 0px;
  border: 0px;
  list-style: none;
  letter-spacing: normal;
  /* For IE 6/7 */
  zoom: 1;
}
li::marker {
  margin: 0;
  padding: 0;
}
blockquote,q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
ins {
  /* remember to highlight inserts somehow! */
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
table {
  /* markup tables with 'cellspacing="0"' */
  border-collapse: collapse;
  border-spacing: 0;
  font-size:inherit; font:100%;
}
select,input,textarea { 
  font-size:99%; 
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.fadein {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  -o-transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}
.is-fadein {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
/*======== header nav==========*/
.nav {
  width:100%;
  height: 80px;
  position: fixed;
  z-index: 99;
}
.nav_logo {
  width: 42%;
  max-width: 220px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav_logo a {
  height: 100%;
}
.nav_logo img {
  width:100%;
}
.nav_bg {
  position:fixed;
  width: 100%;
  height: 80px;
  background-size: cover;
  padding: 10px 2%;
  background-color: #fff;
  border-bottom: 1px solid #000;
}
header .menu_btn {
  display: block;
  width: 60px;
  height: 60px;
  position: fixed;
  top:10px;
  right: 20px;
  z-index: 99;
  padding: 20px 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #f05400;
  border-radius: 5px;
}
.open header .menu_btn{
  display: block;
  line-height: 30px;
  text-align: center;
  z-index: 999;
}
/* メニューが閉じている時のアイコン */
header .menu_btn span {
  display: block;
  width: 32px;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  border-radius: 5px;
  -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
          transform: translateY(2px);
}
header .menu_btn span.bottom {
  background: #fff;
  -webkit-transform: translateY(12px);
  -ms-transform: translateY(12px);
  transform: translateY(12px);
}
/* メニューが開いた時のアイコン */
.open header .menu_btn span.top {
  -webkit-transform: rotate(-45deg) translate(-8px, 12px);
  -ms-transform: rotate(-45deg) translate(-8px, 12px);
  transform: rotate(-45deg) translate(-5px, 9px);
}
.open header .menu_btn span.bottom {
  -webkit-transform: rotate(45deg) translate(9px, 5px);
  -ms-transform: rotate(45deg) translate(9px, 5px);
  transform: rotate(45deg) translate(8px, 5px);
}
/* メニューが開いた時のメニューの中身 */
/* 開閉用ボタンがクリックされた時のスタイル */
.open header .menu_bg {
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  visibility: visible;
  opacity: 1;
  position: fixed;
  width: 50%;
  padding: 0 5%;
}
header .menu_bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background:rgba(240, 80, 0,1);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
header .menu {
  display: table;
  width: 100%;
  padding: 0;
  border: none;
}
header .menu .header_nav {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 70px 0 0;
}
header .menu .header_nav li {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.nav_box {
  padding-top: 60px;
}
.nav_menu {
  text-align: left;
}
.nav_menu a {
  color: #fff;
}
.nav_menu_main,
.nav_menu_main02 {
  cursor: pointer;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 12px 4%;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6em;
  color: #fff;
  position: relative;
  border-bottom: solid 0.5px #eeeeee;
}
.nav_menu_main02::after {
  content:'';
  position: absolute;
  top: 50%;
  right:15px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);  
  -webkit-transition: all .3s;    
  -o-transition: all .3s;    
  transition: all .3s;
  border-radius: 2px;
}
.nav_menu_main02.open::after {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.txt_ico::after {
  border-left: 9px solid #fff;
}
.nav_menu_drop_box {
  display: none;
}
.nav_menu_drop_item {
  cursor: pointer;
  border-bottom: solid 0.5px #eeeeee;
  display: block;
  padding: 12px 4%;
  font-weight: 500;
}
.nav_menu_drop_item a {
  font-size: 14px;
  display: block;
}
.nav_menu_drop_item a span {
  font-size: 12px;
}
/*======== footer ==========*/
footer {
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: -45%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../common/img/footer_ico.png);
  background-repeat: no-repeat;
  background-size: contain; 
  background-position: top left;
  z-index: -1;
}
footer .ft_area {
  background-color: #fff;
  border-top: 1px solid #000;
}
footer .ft_area_box {
  padding: 0 5%;
}
.ft_flex{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ft_logo{
  width: 65%;
}
.ft_flex > li:first-of-type{
  width: 42%;
  padding-left: 5%;
}
.ft_flex > li:last-of-type{
  width: 56%;
  border-left: 1px solid #000;
  padding-top: 50px;
  padding-left: 50px;
  padding: 50px 5% 0;
}
.ft_flex > li:first-of-type > div > p {
  padding-left: 1.5em;
  line-height: 1;
  margin-bottom: 1em;
}
.ft_link{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}
.ft_link li:first-child {
  width: 50%;
}
.ft_link li:nth-child(2) {
  width: 45%;
}
.ft_link li:last-child .ft_link_ttl {
  margin-bottom: 20px;
}
.ft_link li:last-child a {
  display: block;
  margin-left: 24px;
  margin-bottom: 10px;
}
.ft_link li .ft_link_ttl {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 40px;
}
.ft_link li .ft_link_ttl a {
  display: block;
  font-size: 24px;
  line-height: 1;
}
.ft_link li a span {
  display: inline-block;
  margin-left: 5%;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
}
.ft_copy {
  padding: 5px 0;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  background: #f05400;
  color: #000;
}
/*======== common ==========*/
main {
  margin-top: 80px;
}
.top main {
  margin-top: 130px;
}
.en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
}
.btn {
  display: block;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  max-width: 280px;
  border-radius: 40px;
  padding: 10px 0;
  margin: 50px auto 0;
  position: relative;
  border: 1px solid #000;
}
.btn::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  top: 50%;
  right: 5%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/arrow.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.btn:hover {
  background-color: #000;
  color: #fff;
  font-weight: 600;
  opacity: 1;
}
.btn:hover::before {
  background-image: url(../img/arrow_wht.png);
}
.ttl {
  margin-bottom: 60px;
  text-align: center;
}
.ttl p {
  font-size: 20px;
  font-weight: 500;
}
.ttl_org {
  font-size: 80px;
  color: #f05400;
  line-height: 1;
  padding-bottom: 20px;
  text-shadow: 1px 1px 0px black, 1px -1px 0px black, -1px 1px 0px black, -1px -1px 0px black, 1px 0px 0px black, 0px 1px 0px black, -1px 0px 0px black, 0px -1px 0px black;
}
.ttl_bl {
  font-size: 80px;
  color: #1ea0a0;
  line-height: 1;
  padding-bottom: 20px;
  text-shadow: 1px 1px 0px black, 1px -1px 0px black, -1px 1px 0px black, -1px -1px 0px black, 1px 0px 0px black, 0px 1px 0px black, -1px 0px 0px black, 0px -1px 0px black;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.txt_flow {
  height: 80px;
  background-color: #fff;
  border-top: 1px solid #000;
  border-bottom: 1px solid #7d7d7d;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #f05400;
  overflow: hidden;
}
.ticker {
  position: relative;
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.ticker__text {
  display: inline-block;
  height: 80px; /* txt_flowの高さに合わせる */
  padding-left: 1rem;
  font-size: 18px;
  line-height: 80px; /* txt_flowの高さと同じ */
  font-weight: bold;
  letter-spacing: 0.075rem;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: tickerAnimation;
          animation-name: tickerAnimation;
  -webkit-animation-duration: 10s;
          animation-duration: 10s; /* JSで上書きする */
}
@-webkit-keyframes tickerAnimation {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes tickerAnimation {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll {
  0% { -webkit-transform: translateX(0); transform: translateX(0); }
  100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); } /* 50% = 2クローン分 */
}
@keyframes scroll {
  0% { -webkit-transform: translateX(0); transform: translateX(0); }
  100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); } /* 50% = 2クローン分 */
}
.txt {
  font-size: 16px;
  line-height: 2;
}
/* 下層ヘッダー */

.sub-head_bg{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 350px;
  border-radius: 0 0 80px 80px;
  position: relative;
  margin-bottom: 30px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.sub-head_bg::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .2);
  mix-blend-mode: multiply;
  border-radius: 0 0 80px 80px;
}
.sub-head_ttl{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.sub-head_ttl_en{
  font-size: 60px;
  color: #f05400;
  line-height: 1;
  text-shadow: 1px 1px 0px black, 1px -1px 0px black, -1px 1px 0px black, -1px -1px 0px black, 1px 0px 0px black, 0px 1px 0px black, -1px 0px 0px black, 0px -1px 0px black;
  padding: 20px 30px;
  background: rgba(255,255,255,.7);
  border-radius: 20px;
  margin-bottom: 20px;
}
.sub-head_ttl_ja{
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  padding: 10px 30px;
  background: rgba(255,255,255,.7);
  border-radius: 10px;
}
/* 下層ヘッダー パンくず */
.sub-head_bc{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 80px;
}
.sub-head_bc li{
  position: relative;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sub-head_bc li:not(:first-child){
  margin-left: 10px;
}
.sub-head_bc li:not(:first-child)::before{
  content: '';
  width: 7px;
  height: 11px;
  display: inline-block;
  background: url(../img/ico_arw.png) no-repeat center center / cover;
  margin-right: 7px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 1024px) {
  body {
    min-width: 100%;
    font-size: 15px;
    line-height: 1.8;
  }
  .pc {
    display: none!important;
  }
  .sp {
    display: block!important;
  }
  .nav_pc{
    display: none;
  }
  .nav_bg {
    height: 70px;
  }
  header .menu_btn {
    width: 50px;
    height: 50px;
    top: 10px;
    right: 10px;
    padding: 10px 8px;
  }
  header .menu_btn span.bottom {
    -webkit-transform: translateY(17px);
        -ms-transform: translateY(17px);
            transform: translateY(17px);
  }
  header .menu_btn span {
    -webkit-transform: translateY(9px);
        -ms-transform: translateY(9px);
            transform: translateY(9px);
  }
  .nav_logo {
    width: 50%;
    max-width: 220px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .open header .menu_bg {
    width: 80%;
    padding: 0 5%;
  }
  footer .ft_area {
  padding: 30px 0 0;
  }
  .ft_flex > li:first-of-type {
  width: 100%;
  padding-left: 0;
  }
  .ft_flex > li:first-of-type > div > p{
  padding-left: 1.8em;
  text-align: center;
  }
  .ft_logo{
  width: 50%;
  margin: 0 auto 30px;
  }
  footer::before {
  top: -50%;
  background-size: 70%;
  }
  .flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  }
  .txt {
  font-size: 15px;
  line-height: 1.6;
  }
  .ttl {
  margin-bottom: 40px;
  }
  .ttl p {
  font-size: 18px;
  }
  .ttl_org {
  font-size: 54px;
  padding-bottom: 10px;
  }
  .ttl_bl {
  font-size: 54px;
  padding-bottom: 10px;
  }
  .btn {
  margin: 30px auto;
  }
  .txt_flow {
  height: 70px;
  }
  .ticker__text {
  height: 70px; /* txt_flowの高さに合わせる */
  font-size: 16px;
  line-height: 70px; /* txt_flowの高さと同じ */
  }
  /* 下層 */
  .sub-head_ttl_en {
    font-size: 38px;
    padding: 10px 20px;
    border-radius: 20px;
    margin-bottom: 10px;
    word-wrap: break-word;
  }
  .sub-head_ttl_ja {
    font-size: 16px;
    padding: 10px 20px;
  }
  .sub-head_bg {
    height: 200px;
    border-radius: 0 0 60px 60px;
  }
  .sub-head_bc {
    margin-bottom: 60px;
  }
  .sub-head_bg::before{
    border-radius: 0 0 60px 60px;
  }
}
@media only screen and (max-width: 750px) {
  .ft_logo {
    width: 60%;
    margin: 0 auto 30px;
  }
}
