@charset "UTF-8";
/* CSS Document */
/*--------------------
01.共通
02.ヘッダー
03.フッター
04.下層共通
--------------------*/
/*----------
01.共通
----------*/
* {
  box-sizing: border-box;
}
body {
  background: url(../img/common/header_bg.svg) repeat-x top center;
  background-size: 1600px auto;
  color: #323232;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
a {
  transition: all 0.3s;
}
.contents_in {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.notoserif {
  font-family: 'Noto Serif JP', serif;
}
.notosans {
  font-family: 'Noto Sans JP', sans-serif;
}
main {
  display: block;
  padding-top: 138px;
  overflow: hidden;
}
/*背景パターン*/
.bg_orange {
  background-color: #FFF3E5;
}
.bg_blue {
  background-color: rgba(86, 164, 230, 0.1);
}
/*animate.css動作*/
.animated {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-delay: 0.2s;
}
/*範囲に入ってから動作開始までの遅延時間（秒）*/
.animate_delay {
  animation-delay: 0.2s;
}
.animate_duration {
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
}
/*inview.js要素の初期表示*/
.iv, .ivo {
  visibility: hidden;
}
/*タイトルパターン*/
/*タブCSS*/
.tab_area {
  margin-bottom: 62px;
}
.cnt_area .tab {
  max-width: 540px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.cnt_area .tab li {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 236px;
  width: 43.7%;
  background: #fff;
  border-radius: 20px 20px 0 0;
  font-size: 26px;
  font-weight: 500;
  line-height: 40px;
  padding: 3px 0 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.cnt_area .tab li:first-child {
  border-top: 4px solid #0096E0;
  border-right: 4px solid #0096E0;
  border-left: 4px solid #0096E0;
  color: #0096E0;
}
.cnt_area .tab li:nth-child(2) {
  border-top: 4px solid #F39800;
  border-right: 4px solid #F39800;
  border-left: 4px solid#F39800;
  color: #F39800;
}
.cnt_area .tab li:first-child:hover, .cnt_area .tab li:first-child.active {
  background: #0096E0;
  color: #fff;
}
.cnt_area .tab li:nth-child(2):hover, .cnt_area .tab li:nth-child(2).active {
  background: #F39800;
  color: #fff;
}
.cnt_area .area {
  display: none;
  opacity: 0;
  padding: 53px 0;
}
.cnt_area .area#area01 {
  border-top: 1px solid #0096E0;
}
.cnt_area .area#area02 {
  border-top: 1px solid #F39800;
}
.cnt_area .area.is_show {
  display: block;
  animation-name: displayAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.cnt_area .area p, .cnt_area .area ul li {
  font-size: 19px;
  font-weight: 500;
  line-height: 33px;
}
/*END タブCSS*/
/*タブ内ナビゲーション*/
.cnt_area .area .cnt_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-bottom: 2px solid #0096E0;
  padding: 42px 0 35px;
}
.cnt_area .area .cnt_menu li {
  width: 40%;
  margin: 0 99px;
}
.cnt_area .area .cnt_menu li:first-child {
  text-align: right;
  margin-left: 0;
}
.cnt_area .area .cnt_menu li:last-child {
  text-align: left;
  margin-right: 0;
}
.cnt_area .area .cnt_menu li a {
  color: #F39800;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
}
.cnt_area .area .cnt_menu li a.current, .cnt_area .area .cnt_menu li a:hover {
  color: #0096E0;
}
/*ENDタブ内ナビゲーション*/
/*----------
02.ヘッダー
----------*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #49B3E7;
  padding: 51px 10px 12px;
  transition: .3s;
  z-index: 999;
}
header.active {
  padding-top: 10px;
}
header .contents_in {
  display: flex;
  justify-content: space-between;
  max-width: 1580px;
}
header .logo {
  max-width: 250px;
  margin-left: 100px;
}
header .menu_g {
  display: flex;
  align-items: center;
  justify-content: end;
  width: calc(100% - 270px);
  margin-top: 32px;
	-webkit-justify-content: flex-end;
}
.menu_g .menu_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 810px;
}
.menu_g .menu_list li a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  text-align: center;
  padding: 5px 0;
  margin: 0 25px;
}
.menu_g .menu_list li a::after {
  position: absolute;
  content: "";
  display: block;
  height: 2px;
  background-color: #fff;
  bottom: -5px;
  left: 0;
  width: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.menu_g .menu_list li a:hover::after {
  width: 100%;
}
/*----------
03.フッター
----------*/
footer {
  position: relative;
  border-top: 3px solid #FD9200;
}
footer .contents_in {
  max-width: 1110px;
}
footer .menu_g {
  padding: 17px 0;
}
footer .menu_g .menu_list {
  max-width: none;
}
footer .menu_g .menu_list li {
  max-width: none;
}
footer .menu_g .menu_list li a {
  color: #56A4E6;
  margin: 0;
}
footer .menu_g .menu_list li a::after {
  background-color: #49B3E7;
}
footer .footer_info {
  background: #49B3E7;
  padding: 19px 0 22px;
}
footer .footer_info .contents_in {
  max-width: 1258px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}
footer .footer_info .info_box {
  max-width: 590px;
  width: 46.90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer_info .logo {
  max-width: 250px;
  width: 42.37%;
  margin-left: 3.7%;
}
footer .footer_info .group_list {
  max-width: 250px;
}
footer .footer_info .address_g {
  max-width: 500px;
}
footer .footer_info .address_g .contact_text {
  display: flex;
  flex-wrap: wrap;
}
footer .footer_info .address_g .contact_text > div {
  display: flex;
}
footer .footer_info .address_g .contact_text > div:first-child {
  margin-right: 35px;
}
footer .footer_info .address_g .contact_text dt {
  margin-right: 1em;
}
footer .footer_info .address_g .contact_text dd span {
  display: inline-block;
  margin: 0 1em;
}
footer .footer_info .address_g .contact_text dd a {
  word-break: break-all;
}
footer .copyright {
  display: block;
  width: 100%;
  padding: 20px 20px 27px;
  text-align: center;
}
footer .copyright small {
  font-size: 12px;
  line-height: 1;
}
footer .page_top {
  position: fixed;
  right: 37px;
  bottom: 10px;
  width: 86px;
  height: 104px;
  transition: all 0.3s;
}
footer .page_top:hover {
  bottom: 25px;
}
/*----------
04.下層共通
----------*/
.under_page #title_area {
  padding: 165px 0 90px;
}
.under_page #title_area .page_title {
  color: #56A4E6;
  font-size: 33px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}
.under_page .cnt_area .area {
  padding-top: 0;
}
.under_page .block_title {
  color: #0096E0;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}
/*モーダル*/
.fancybox-bg {
  background: #fff;
  backdrop-filter: blur(3px);
}
.fancybox-button {
  background: #323232;
  border-radius: 50%;
  height: 51px;
  width: 51px;
}
.fancybox-slide {
  padding: 45px 75px;
}
.fancybox-toolbar {
  right: 5px;
  top: 25px;
}
/* iframe.modaal-iframe-elem {
  width: 100%;
  height: 100vh;
}

.modaal-inner-wrapper {
  backdrop-filter: blur(3px);
}

.modaal-wrapper .modaal-close {
  position: absolute;
  right: -60px;
  top: -20px;
  background: #323232;
} */
.fancybox-slide--iframe .fancybox-content {
  height: 100% !important;
}
@media only screen and (max-width:1580px) {
  /*----------
01.共通 1580
----------*/
  .contents_in {
    width: 94%;
  }
  /*----------
 02.ヘッダー 1580
----------*/
  header .logo {
    margin-left: 0;
  }
  /*----------
  04.下層共通 1580
  ----------*/
}
@media only screen and (max-width:1280px) {
  /*----------
  01.共通 1280
  ----------*/
  body {
    background-size: 1380px auto;
  }
  /*タブ内ナビゲーション*/
  .cnt_area .area .cnt_menu li {
    width: auto;
    margin: 0 40px;
  }
  .cnt_area .area .cnt_menu li a {
    font-size: 24px;
  }
  /*ENDタブ内ナビゲーション*/
  /*----------
  02.ヘッダー 1280
  ----------*/
  header .logo {
    max-width: 215px;
  }
  header .menu_g {
    width: calc(100% - 230px);
  }
  .menu_g .menu_list li a {
    margin: 0 15px;
  }
  .menu_g .menu_list li a {
    font-size: 15px;
  }
  /*----------
03.フッター 1280
----------*/
  footer .footer_info .logo {
    width: 35%;
    margin-left: 0;
  }
  footer .footer_info .contents_in {
    font-size: 14px;
  }
  footer .footer_info .info_box {
    width: 42%;
  }
  /*----------
  04.下層共通 1280
  ----------*/
  .under_page #title_area {
    padding: 10.313vw 0 90px;
  }
}
@media only screen and (max-width:1024px) {
  /*----------
    01.共通 1024
    ----------*/
  /*タブCSS*/
  .cnt_area .tab li {
    font-size: 20px;
    line-height: 40px;
  }
  .cnt_area .tab li:first-child {
    border-top: 3px solid #0096E0;
    border-right: 3px solid #0096E0;
    border-left: 3px solid #0096E0;
    color: #0096E0;
  }
  .cnt_area .tab li:nth-child(2) {
    border-top: 3px solid #F39800;
    border-right: 3px solid #F39800;
    border-left: 3px solid#F39800;
    color: #F39800;
  }
  .cnt_area .area p, .cnt_area .area ul li {
    font-size: 16px;
    line-height: 30px;
  }
  /*END タブCSS*/
  /*タブ内ナビゲーション*/
  .cnt_area .area .cnt_menu li {
    margin: 0 30px;
  }
  .cnt_area .area .cnt_menu li a {
    font-size: 20px;
  }
  /*ENDタブ内ナビゲーション*/
  /*----------
02.ヘッダー 1024
----------*/
  header .logo {
    max-width: 170px;
  }
  header .menu_g {
    width: calc(100% - 180px);
    margin-top: 15px;
  }
  .menu_g .menu_list li a {
    font-size: 13px;
    margin: 0 5px;
  }
  /*----------
    03.フッター 1024
    ----------*/
  footer .footer_info .info_box {
    width: 50%;
  }
  footer .footer_info .address_g {
    width: 47%;
  }
  /*----------
  04.下層共通 1024
  ----------*/
  .under_page #title_area .page_title {
    font-size: 28px;
  }
  .under_page .block_title {
    font-size: 20px;
  }
}
@media only screen and (max-width:767px) {
  /*----------
01.共通 767
----------*/
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .contents_in {
    width: calc(100% - 45px);
  }
  body {
    background: url(../img/common/header_bg_sp.svg) repeat-x top center;
    background-size: 100% auto;
  }
  main {
    padding-top: 31.200vw;
  }
  /*タブCSS*/
  .tab_area {
    margin-bottom: 35px;
  }
  .cnt_area .tab {
    max-width: 290px;
  }
  .cnt_area .tab li {
    max-width: 136px;
    width: 46.9%;
    border-radius: 8px 8px 0 0;
    font-size: 18px;
    line-height: 25px;
    padding: 1px 0 3px;
  }
  .cnt_area .tab li:first-child {
    border-top: 2px solid #0096E0;
    border-right: 2px solid #0096E0;
    border-left: 2px solid #0096E0;
    color: #0096E0;
  }
  .cnt_area .tab li:nth-child(2) {
    border-top: 2px solid #F39800;
    border-right: 2px solid #F39800;
    border-left: 2px solid#F39800;
    color: #F39800;
  }
  .cnt_area .area {
    padding: 32px 0 60px;
  }
  .cnt_area .area p, .cnt_area .area ul li {
    font-size: 14px;
    line-height: 25px;
  }
  .cnt_area .area#area01 {
    border-top: 2px solid #0096E0;
  }
  .cnt_area .area#area02 {
    border-top: 2px solid #F39800;
  }
  /*END タブCSS*/
  /*タブ内ナビゲーション*/
  .cnt_area .area .cnt_menu.pc {
    display: none;
  }
  /*ENDタブ内ナビゲーション*/
  /*----------
02.ヘッダー 767
----------*/
  /*ハンバーガーボタン*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    top: 17px;
    right: 15px;
    width: 36px;
    height: 17px;
    cursor: pointer;
  }
  .openbtn span {
    display: inline-block;
    background-color: #fff;
    transition: all .4s;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
  }
  .openbtn span:nth-of-type(1) {
    top: 0;
  }
  .openbtn span:nth-of-type(2) {
    top: 7px;
  }
  .openbtn span:nth-of-type(3) {
    top: 14px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 8px;
    left: 0;
    width: 90%;
    transform: translateY(6px) rotate(-45deg);
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 20px;
    left: 0;
    width: 90%;
    transform: translateY(-6px) rotate(45deg);
  }
  /*END　ハンバーガーボタン*/
  header {
    padding: 19px 0 0;
  }
  header.active {
    padding-top: 19px;
  }
  header .logo {
    max-width: 190px;
    margin: 0 auto;
  }
  header .menu_g {
    display: none;
  }
  header .menu_g.active {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    display: block;
    width: 100%;
    background: #49B3E7;
    padding: 61px 22px;
    margin-top: 0;
    z-index: 999;
  }
  header .menu_g nav {
    position: relative;
  }
  header .menu_g .menu_list {
    position: relative;
    display: block;
  }
  header .menu_g .menu_list li a {
    display: inline-block;
    font-size: 25px;
    line-height: 56px;
    padding: 0;
    text-align: left;
    margin: 0;
  }
  header .menu_g .menu_list li:last-child a {
    font-size: 17px;
  }
  header .menu_g .menu_list li a::after {
    bottom: 8px;
    width: 100%;
  }
  /*----------
03.フッター 767
----------*/
  footer {
    border-top: 2px solid #FD9200;
    padding-top: 20px;
  }
  footer .footer_info {
    padding: 22px 0 32px;
  }
  footer .footer_info .contents_in {
    display: block;
    max-width: 278px;
    font-size: 15px;
    line-height: 23px;
  }
  footer .footer_info .info_box {
    display: block;
    max-width: none;
    width: 100%;
  }
  footer .footer_info .logo {
    max-width: 190px;
    width: 100%;
    margin: 0 auto 30px;
  }
  footer .footer_info .group_list {
    max-width: none;
    margin: 0 auto 20px;
  }
  footer .footer_info .address_g {
    width: 100%;
    font-size: 12px;
    line-height: 19px;
  }
  footer .footer_info .address_g .contact_text dd span {
    margin: 0 0.6em;
  }
  footer .copyright {
    padding: 11px 0;
  }
  footer .copyright small {
    font-size: 10px;
  }
  footer .page_top {
    right: 12px;
    width: 69px;
    height: 109px;
  }
  /*----------
04.下層共通 767
----------*/
  .under_page #title_area {
    padding: 23px 0 44px;
  }
  .under_page #title_area .page_title {
    font-size: 20px;
    line-height: 25px;
  }
  .under_page .block_title {
    font-size: 16px;
    line-height: 25px;
  }
  /*モーダル*/
  .fancybox-bg {
    background: #fff;
    backdrop-filter: blur(3px);
  }
  .fancybox-button {
    height: 30px;
    width: 30px;
    padding: 5px;
  }
  .fancybox-slide {
    padding: 45px 30px;
  }
  .fancybox-toolbar {
    right: 10px;
    top: 10px;
  }
}
@media only screen and (max-width:360px) {
  /*----------
  01.共通 360
  ----------*/
  /*----------
  02.ヘッダー 360
  ----------*/
  header .logo {
    max-width: 150px;
  }
  /*----------
03.フッター 360
----------*/
  /*----------
  04.下層共通 360
  ----------*/
}