@charset "UTF-8";
/*
*
* Copyright (c) 2016, AD Line Inc. All rights reserved.
* Data : 2016.04.20
*
*/
/* Googleフォント　Noto Sans,Robot,Open Sans */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/*@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@600&display=swap');*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap");
/* アイコンフォント　Google Material,Font Awesome */
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
/*****************************************************

 SCSS用
 
*****************************************************/
/*****************************************************

 Common - Layout
 
*****************************************************/
html {
  font-size: 10px;
}

body {
  position: relative;
  width: auto;
  height: auto;
  background: #fff;
  z-index: 0;
  color: #333333;
  font-size: 1.6rem;
  font-family: 'Zen Maru Gothic','Noto Sans Japanese','Noto Sans', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif , serif;
  font-weight: normal;
  line-height: 1.65;
  letter-spacing: 0.5px;
}

.inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.main_content {
  position: relative;
  width: 100%;
  height: auto;
  margin: 64px 0 0;
  box-sizing: border-box;
  padding: 0 80px;
}

@media screen and (max-width: 820px) {
  body {
    min-width: auto;
    font-size: 1.4rem;
  }

  .main_content {
    position: relative;
    width: 100%;
    height: auto;
    margin: 56px 0 0;
    padding: 0;
  }
  .main_content .main_img {
    position: relative;
    margin: 0 auto;
    text-align: center;
  }
  .main_content .main_img img {
    width: 100%;
  }

  .inner {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
}
/*PCでは表示しない*/
@media screen and (min-width: 820px) {
  .pc_none {
    display: none !important;
  }
}
/*SPでは表示しない*/
@media screen and (max-width: 820px) {
  .sp_none {
    display: none !important;
  }
}
/*****************************************************

 Common - Parts
 
*****************************************************/
/*　リンク
----------------------------------------------------*/
a {
  color: #2f80c5;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

/*　フォント
----------------------------------------------------*/
 /*　ボタン
----------------------------------------------------*/
.btn_01 a {
  box-sizing: border-box;
  position: relative;
  margin: 40px auto 0 0;
  display: block;
  width: 100%;
  padding: 8px;
  background-color: #1b2841;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #bcb591;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn_01 a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 820px) {
  .btn_01 a {
    margin: 16px auto 0;
    width: 100%;
    padding: 8px;
    font-size: 1.4rem;
  }
}
.btn_02 a {
  position: relative;
  box-sizing: border-box;
  margin: 24px auto 0;
  display: block;
  width: 400px;
  padding: 10px;
  border-radius: 10px;
  background-color: #d35d4d;
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.5;
  color: #FFF;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn_02 a:before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 40px;
  margin: -5px 14px 0 0;
  background: url("../images/home/btn_omusubi.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.btn_02 a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 820px) {
  .btn_02 a {
    margin: 24px auto 0;
    width: 100%;
    font-size: 1.8rem;
    line-height: 2.5;
  }
}
/*　見出し
----------------------------------------------------*/
.h2_title_number {
  display: inline-block;
  position: relative;
  margin: 0 0 30px 0;
  font-size: 6.0rem;
  font-family: "Caveat", cursive;
  font-weight: 500;
  color: #111111;
  line-height: 1;
  color: #1b2841;
  /*background: linear-gradient(transparent 60%, #ff5bb6 60%);*/
}

@media screen and (max-width: 820px) {
  .h2_title_number {
    font-size: 5.0rem;
    color: #1b2841;
    /*background: linear-gradient(transparent 60%, #ff5bb6 60%);*/
  }
}
.h2_title_w {
  display: inline-block;
  position: relative;
  margin: 0 0 30px 0;
  font-size: 6.0rem;
  font-family: "Caveat", cursive;
  font-weight: 500;
  color: #FFF;
  line-height: 1;
}

@media screen and (max-width: 820px) {
  .h2_title_w {
    font-size: 5.0rem;
  }
}
h3 {
  margin: 40px 0 0px;
  font-size: 1.8rem;
  color: #111;
}

@media screen and (max-width: 820px) {
  h3 {
    margin: 16px 0 0;
    font-size: 1.6rem;
  }
}
/*　背景色
----------------------------------------------------*/
.bg_gray {
  background-color: #eef4f7;
}

/*　テーブル
----------------------------------------------------*/
/*　リスト
----------------------------------------------------*/
/* ページトップ
----------------------------------------------------*/
/* トピックパス
----------------------------------------------------*/
/*　カラム
----------------------------------------------------*/
.col2 {
  display: flex;
  position: relative;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  justify-content: space-between;
}
.col2 > li {
  box-sizing: border-box;
  width: 48%;
  height: auto;
  margin: 0;
}

.col3 {
  display: flex;
  position: relative;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  justify-content: space-between;
}
.col3 > li {
  box-sizing: border-box;
  width: 32%;
  height: auto;
  margin: 0;
}

@media screen and (max-width: 820px) {
  .col3 > li {
    width: 100%;
    height: auto;
    margin: 0;
  }
}
/*****************************************************

 Template - Header
 
*****************************************************/
.global_header {
  position: fixed;
  display: block;
  width: 100%;
  height: 64px;
  min-width: 1000px;
  background-color: #FFF;
  /*box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);*/
  top: 0;
  z-index: 999;
}

/* header_contents
--------------------------------------*/
.header_contents {
  width: auto;
  height: 100%;
  display: block;
}
.header_contents h1 {
  padding: 16px 0px;
}
.header_contents .header_title {
  font-size: 3.0rem;
  font-family: "Caveat", cursive;
  font-weight: 500;
  color: #333;
  margin: 4px 0 0 16px;
  /*&:hover {
      @include css3(transition,0.3s);
      opacity: 0.7;
  }*/
}
.header_contents .header_title img {
  box-sizing: border-box;
  margin: 8px 0;
  width: 410px;
  min-width: 210px;
}

@media screen and (max-width: 820px) {
  .global_header {
    height: 56px;
    min-width: 100%;
    top: 0;
    z-index: 999;
  }

  .header_contents {
    width: 100%;
    height: 100%;
  }
  .header_contents h1 {
    padding: 0px;
  }
  .header_contents .header_title {
    height: 56px;
    margin: 6px 10px;
    font-size: 2.4rem;
    text-align: left;
  }
  .header_contents .header_title img {
    box-sizing: border-box;
    margin: 10px 12px;
    width: 40%;
  }
}
/* global_nav
----------------------------------------------------*/
.global_nav {
  box-sizing: border-box;
  background-image: url("../images/home/bg_01.png");
}
.global_nav .sp_nav_contents {
  display: none;
}
.global_nav .pc_nav_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  width: 100%;
  height: 64px;
  margin-right: 1.2%;
}
.global_nav .pc_nav_contents .nav_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 8% 0 0;
}
.global_nav .pc_nav_contents .nav_contents .menu_list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.global_nav .pc_nav_contents .nav_contents .menu_list li {
  margin: 0;
  text-align: center;
  line-height: 1.5;
  box-sizing: border-box;
  height: 64px;
}
.global_nav .pc_nav_contents .nav_contents .menu_list li a {
  display: block;
  width: 100%;
  height: 64px;
  box-sizing: border-box;
  padding: 24px 16px;
  color: #bcb591;
  font-size: 2.4rem;
  font-family: "Caveat", cursive;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 820px) {
  .global_nav .pc_nav_contents {
    display: none;
  }
  .global_nav .sp_nav_contents {
    position: fixed;
    display: flex;
    width: 100%;
    height: 56px;
    z-index: 100;
    -webkit-align-items: center;
    align-items: center;
    background-image: url("../images/home/bg_01.png");
  }
  .global_nav .sp_nav_contents .sp_head_logo {
    /*margin: 4px 16px;*/
  }
  .global_nav .sp_nav_contents .sp_head_logo img {
    width: 180px;
    height: auto;
  }
  .global_nav .sp_nav_contents .menu {
    margin-left: auto;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    text-align: center;
  }
  .global_nav .sp_nav_contents .menu a {
    font-size: 3.0rem;
    line-height: 1;
  }

  .sp_nav_menu ul .top_cover_contents {
    padding: 5% 0 5% 20px;
  }
  .sp_nav_menu ul .top_cover_contents h3 {
    font-size: 2.4rem;
    line-height: 1.4;
  }
  .sp_nav_menu ul .top_cover_contents h3 span {
    font-size: 1.6rem;
  }
  .sp_nav_menu ul .top_cover_contents a {
    color: #333;
  }
}
/* ナビゲーション切り替えボタン
----------------------------------------*/
/*　nav_btn 
------------------------------------*/
.nav_btn {
  position: fixed;
  cursor: pointer;
  width: 72px;
  height: 100vh;
  z-index: 1000;
  top: 0;
  right: 0;
}

@media screen and (max-width: 1030px) {
  .nav_btn {
    position: fixed;
    cursor: pointer;
    background: transparent;
    width: 50px;
    height: 56px;
    margin: 0 10px 0 0;
    /*background-color: #1b2841;*/
    top: 0;
    right: 0;
  }
}
/*ボタン装飾*/
.nav_btn .nav_icon {
  position: relative;
  /*background: #1b2841;*/
  cursor: pointer;
  width: 100%;
  height: 94%;
  z-index: 1000;
  /*ナビゲーションが閉じているとき（PC）*/
  /*ナビゲーションが開いているとき（PC）*/
}
.nav_btn .nav_icon span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
}
.nav_btn .nav_icon span:nth-of-type(1), .nav_btn .nav_icon span:nth-of-type(2), .nav_btn .nav_icon span:nth-of-type(3) {
  height: 1px;
  /*background: #1b2841;*/
  width: 62%;
  max-width: 43px;
  left: 15px;
}
.nav_btn .nav_icon span:nth-of-type(1) {
  top: 45%;
}
.nav_btn .nav_icon span:nth-of-type(2) {
  top: 46%;
}
.nav_btn .nav_icon span:nth-of-type(3) {
  top: 47%;
}
.nav_btn .nav_icon span:nth-of-type(4) {
  top: 47.5%;
  left: 11px;
}
.nav_btn .nav_icon span:nth-of-type(4)::before {
  content: 'Menu';
  color: #1b2841;
  font-size: 1.8rem;
  font-family: "Caveat", cursive;
  font-weight: 500;
  text-transform: uppercase;
}
.nav_btn .nav_icon.active span:nth-of-type(1) {
  top: 45%;
  left: 21px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
}
.nav_btn .nav_icon.active span:nth-of-type(2) {
  opacity: 0;
}
.nav_btn .nav_icon.active span:nth-of-type(3) {
  top: 46.3%;
  left: 21px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}
.nav_btn .nav_icon.active span:nth-of-type(4) {
  top: 47.5%;
  left: 11px;
}
.nav_btn .nav_icon.active span:nth-of-type(4)::before {
  content: 'Close';
  color: #333;
  font-size: 1.8rem;
  font-family: "Caveat", cursive;
  font-weight: 500;
  text-transform: uppercase;
}

@media screen and (max-width: 1030px) {
  .nav_btn .nav_icon {
    position: relative;
    background: transparent;
    cursor: pointer;
    width: 100%;
    height: 100%;
    top: 10%;
    z-index: 1000;
    color: #bcb591;
    /*ナビゲーションが閉じているとき（SP）*/
    /*ナビゲーションが開いているとき（SP）*/
  }
  .nav_btn .nav_icon span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
  }
  .nav_btn .nav_icon span:nth-of-type(1), .nav_btn .nav_icon span:nth-of-type(2), .nav_btn .nav_icon span:nth-of-type(3) {
    height: 1px;
    background: #bcb591;
    width: 62%;
    left: 10px;
  }
  .nav_btn .nav_icon span:nth-of-type(1) {
    top: 8px;
  }
  .nav_btn .nav_icon span:nth-of-type(2) {
    top: 15px;
  }
  .nav_btn .nav_icon span:nth-of-type(3) {
    top: 22px;
  }
  .nav_btn .nav_icon span:nth-of-type(4) {
    top: 24px;
    left: 11px;
  }
  .nav_btn .nav_icon span:nth-of-type(4)::before {
    position: relative;
    content: 'Menu';
    left: -4px;
    color: #bcb591;
    font-size: 1.3rem;
    text-transform: uppercase;
  }
  .nav_btn .nav_icon.active span:nth-of-type(1) {
    top: 8px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
    background: #bcb591;
  }
  .nav_btn .nav_icon.active span:nth-of-type(2) {
    opacity: 0;
    background: #bcb591;
  }
  .nav_btn .nav_icon.active span:nth-of-type(3) {
    top: 20px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
    background: #bcb591;
  }
  .nav_btn .nav_icon.active span:nth-of-type(4) {
    top: 24px;
    left: 10px;
  }
  .nav_btn .nav_icon.active span:nth-of-type(4)::before {
    content: 'Close';
    color: #bcb591;
    font-size: 1.3rem;
    text-transform: uppercase;
  }
}
/* ナビゲーション展開メニュー
----------------------------------------*/
/*　g-nav 
------------------------------------*/
#g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #1b2841;
  transition: all 0.8s;
}

@media screen and (max-width: 1030px) {
  #g-nav {
    left: auto;
    right: -100%;
  }
}
@media screen and (max-width: 480px) {
  #g-nav {
    top: -100%;
    right: 0;
    background: transparent;
  }
}
/*　g-nav panelactive
------------------------------------*/
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  left: 0;
  z-index: 999;
  opacity: 1.0;
  transition: all 0.8s;
}
#g-nav.panelactive .nav_contents ul.nav_list_type01 li,
#g-nav.panelactive .nav_contents ul.nav_list_type02 li {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  transform: translateX(0);
}

@media screen and (max-width: 1030px) {
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    left: 0;
    right: 0;
    /* 横から出てくるパターン*/
    top: 0;
    /* ふわっと出てくるパターン*/
    opacity: 1.0;
    transition: all 0.8s;
  }
  #g-nav.panelactive .nav_contents {
    /*right: 0;*/
  }
}
/*ナビゲーションの縦スクロール*/
#g-nav .nav_contents {
  position: absolute;
  /*z-index: 0; */
  width: 90%;
  height: 70vh;
  background: #1b2841;
  overflow: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#g-nav .nav_contents .inner {
  height: 100%;
}
#g-nav .nav_contents .col_box, #g-nav .nav_contents .flex_box {
  height: 100%;
  align-items: flex-start;
}
#g-nav .nav_contents .title_area {
  position: relative;
  height: 100%;
}
#g-nav .nav_contents .title_area .title_area_inner {
  width: 80%;
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#g-nav .nav_contents .title_area .title_logo {
  width: 100%;
  margin: auto;
  display: block;
  width: 100%;
  height: auto;
  padding-bottom: 14%;
  margin: auto;
  font-family: "Caveat", cursive;
  font-weight: 500;
  font-size: 7.0rem;
  color: #9E2B49;
  text-align: center;
  line-height: 1;
}
#g-nav .nav_contents .title_area .sns_link_list {
  margin-top: 0;
}
#g-nav .nav_contents ul.nav_list_type01 li {
  margin: 32px auto 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transform: translateX(10%);
  transition-duration: 1.5s;
  transition-timing-function: cubic-bezier(0.51, 0.23, 0.27, 0.94);
  transition-duration: .9s;
}
#g-nav .nav_contents ul.nav_list_type01 li a {
  display: block;
  color: #bcb591;
  font-size: 2.4rem;
  font-family: "Caveat", cursive;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1px;
}
#g-nav .nav_contents ul.nav_list_type01 li a span.sub {
  display: block;
  color: #444;
  font-size: 1.6rem;
  font-weight: 500;
}
#g-nav .nav_contents ul.nav_list_type01 li:first-child {
  margin-top: 0;
}
#g-nav .nav_contents ul.nav_list_type02 li {
  margin: 24px auto 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transform: translateX(20%);
  transition-duration: 2.0s;
  transition-timing-function: cubic-bezier(0.51, 0.23, 0.27, 0.94);
  transition-duration: .9s;
}
#g-nav .nav_contents ul.nav_list_type02 li a {
  display: block;
  color: #4d4d4d;
  font-size: 1.6rem;
  font-weight: 500;
}
#g-nav .nav_contents ul.nav_list_type02 li img {
  vertical-align: middle;
}
#g-nav .nav_contents ul.nav_list_type02 li:first-child {
  margin-top: 0;
}
#g-nav .nav_contents ul.nav_link_contact_list {
  display: block;
  margin: 24px auto;
  width: 85%;
}
#g-nav .nav_contents ul.nav_link_contact_list li {
  margin: 8px auto 0;
}
#g-nav .nav_contents ul.nav_link_contact_list li a {
  display: block;
  box-sizing: border-box;
  padding: 10px 24px 10px;
  border: solid 1px #9E2B49;
  border-radius: 28px;
  font-size: 1.8rem;
  text-align: center;
}
#g-nav .nav_contents ul.nav_link_contact_list li a i {
  margin-right: 10px;
}
#g-nav .nav_contents ul.link_contact_list {
  margin: 16px 0 0 auto;
  display: flex;
  align-items: center;
  z-index: 1;
}
#g-nav .nav_contents ul.link_contact_list li {
  margin-left: 48px;
}
#g-nav .nav_contents ul.link_contact_list li:first-child {
  margin-left: 0;
}
#g-nav .nav_contents ul.link_contact_list li a {
  color: #79837b;
}

@media screen and (max-width: 896px) {
  #g-nav .nav_contents {
    height: 100vh;
  }
  #g-nav .nav_contents .inner {
    margin-top: 15%;
    height: auto;
  }
  #g-nav .nav_contents .col_box, #g-nav .nav_contents .flex_box {
    height: 100%;
    align-items: flex-start;
  }
  #g-nav .nav_contents .title_area {
    position: relative;
    height: auto;
  }
  #g-nav .nav_contents .title_area .title_area_inner {
    width: 90%;
    height: auto;
    position: relative;
    margin: 0 auto;
  }
  #g-nav .nav_contents .title_area .title_logo {
    width: 100%;
    height: auto;
    position: relative;
    margin: 0 auto;
    padding-bottom: 0;
  }
  #g-nav .nav_contents .title_area .title_logo img {
    width: 50%;
  }
  #g-nav .nav_contents .title_area .title_logo a {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 0;
    transition: 0.3s;
    margin: auto;
  }
  #g-nav .nav_contents ul.nav_list_type01 {
    margin-top: 10%;
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  #g-nav .nav_contents ul.nav_list_type01 li {
    margin: 16px auto 0;
    width: 100%;
    height: auto;
    margin: 2% 0 0 2%;
  }
  #g-nav .nav_contents ul.nav_list_type01 li a {
    font-size: 3.0rem;
  }
  #g-nav .nav_contents ul.nav_list_type01 li:first-child {
    margin-top: 0;
  }
  #g-nav .nav_contents ul.nav_list_type02 {
    margin-top: 5%;
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  #g-nav .nav_contents ul.nav_list_type02 li {
    margin: 16px auto 0;
    width: 100%;
    height: auto;
    margin: 2% auto 0;
  }
  #g-nav .nav_contents ul.nav_list_type02 li:first-child {
    margin-top: 0;
  }
  #g-nav .nav_contents ul.nav_list_type02 li a {
    font-size: 1.5rem;
  }
  #g-nav .nav_contents ul.nav_list_type02 li img {
    width: 20%;
    vertical-align: middle;
  }
  #g-nav .nav_contents ul.nav_list_type02 li:first-child {
    margin-top: 0;
  }
  #g-nav .nav_contents ul.nav_link_contact_list {
    margin: 8% auto 0;
    width: 95%;
    display: flex;
    flex-wrap: wrap;
  }
  #g-nav .nav_contents ul.nav_link_contact_list li {
    width: 49%;
    margin: 0 0 0 2%;
  }
  #g-nav .nav_contents ul.nav_link_contact_list li:nth-child(2n+1) {
    margin-left: 0;
  }
  #g-nav .nav_contents ul.nav_link_contact_list li:nth-child(-n+2) {
    margin-top: 0;
  }
  #g-nav .nav_contents ul.nav_link_contact_list li a {
    font-size: 1.2rem;
    padding: 10px 0 10px;
  }
}
@media screen and (max-width: 480px) {
  #g-nav .nav_contents {
    /*width: 100%;
    height: 100vh;*/
    width: 100%;
    height: auto;
    bottom: auto;
    background: #1b2841;
  }
  #g-nav .nav_contents .inner {
    margin-top: 4%;
    width: 100%;
    height: auto;
  }
  #g-nav .nav_contents .col_box, #g-nav .nav_contents .flex_box {
    height: 100%;
    align-items: flex-start;
  }
  #g-nav .nav_contents .title_area {
    position: relative;
    width: 100%;
    height: auto;
  }
  #g-nav .nav_contents .title_area .title_area_inner {
    width: 100%;
    height: auto;
    position: relative;
    margin: 0 auto;
  }
  #g-nav .nav_contents .title_area .title_logo {
    position: relative;
    margin: auto;
    padding-bottom: 0;
  }
  #g-nav .nav_contents .title_area .title_logo a {
    display: block;
    width: 100%;
    height: auto;
    padding-bottom: 0;
    /*text-indent: -9999px;
    overflow: hidden;*/
    /*background: url(../images/common/header_logo.svg) no-repeat;*/
    /*background-size: contain;*/
    transition: 0.3s;
    margin: auto;
    color: #333;
    font-size: 3.0rem;
  }
  #g-nav .nav_contents ul.nav_list_type01 {
    margin-top: 5%;
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  #g-nav .nav_contents ul.nav_list_type01 li {
    margin: 16px auto 0;
    width: 100%;
    height: auto;
    margin: 0 0 0 0;
    border-bottom: solid 1px #bcb591;
    padding: 20px 0;
    box-sizing: border-box;
    background-color: #1b2841;
  }
  #g-nav .nav_contents ul.nav_list_type01 li a {
    font-size: 2.4rem;
    text-align: center;
    color: #bcb591;
  }
  #g-nav .nav_contents ul.nav_list_type02 {
    margin-top: -3%;
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  #g-nav .nav_contents ul.nav_list_type02 li {
    width: 50%;
    height: auto;
    margin: 4% 0 0 0;
  }
  #g-nav .nav_contents ul.nav_list_type02 li:first-child {
    margin-top: 4%;
  }
  #g-nav .nav_contents ul.nav_list_type02 li a {
    font-size: 1.1rem;
    text-align: center;
  }
  #g-nav .nav_contents ul.nav_list_type02 li img {
    width: 20%;
    vertical-align: middle;
  }
  #g-nav .nav_contents ul.nav_link_contact_list {
    margin: 5% auto 0%;
    width: 95%;
    display: flex;
    flex-wrap: wrap;
  }
  #g-nav .nav_contents ul.nav_link_contact_list li {
    width: 49%;
    margin: 0 0 0 2%;
  }
  #g-nav .nav_contents ul.nav_link_contact_list li:nth-child(2n+1) {
    margin-left: 0;
  }
  #g-nav .nav_contents ul.nav_link_contact_list li:nth-child(-n+2) {
    margin-top: 0;
  }
  #g-nav .nav_contents ul.nav_link_contact_list li a {
    font-size: 1.2rem;
    padding: 10px 0 10px;
  }
  #g-nav .nav_contents ul.nav_link_contact_list li a i {
    margin-right: 10px;
  }
  #g-nav .nav_contents ul.nav_link_contact_list li.contact a {
    color: #fff;
    background: #9E2B49;
  }
  #g-nav .nav_contents ul.nav_link_contact_list li.tel a {
    color: #9E2B49;
    background: #fff;
  }
}
.top_mainvisual {
  display: flex;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 4% 8%;
  height: auto;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  background-color: #EBF4F7;
}
.top_mainvisual > li {
  box-sizing: border-box;
  width: 55%;
  height: auto;
  margin: 0;
}
.top_mainvisual > li img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.top_mainvisual > li.left {
  position: relative;
  box-sizing: border-box;
  width: 45%;
  height: auto;
  margin: 0 5% 0 0;
  text-align: right;
  top: 0;
  bottom: 0;
}
.top_mainvisual > li.left img {
  position: relative;
  width: 90%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 820px) {
  .top_mainvisual {
    display: flex;
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 10% 0;
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .top_mainvisual > li {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    margin: 2% 0 0 0;
    text-align: center;
  }
  .top_mainvisual > li img {
    width: 80%;
    height: auto;
    object-fit: cover;
  }
  .top_mainvisual > li.left {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    margin: 0 0 0 0;
    text-align: center;
    top: 0;
    bottom: 0;
  }
  .top_mainvisual > li.left img {
    position: relative;
    width: 70%;
    height: auto;
    object-fit: contain;
    padding-left: 12%;
  }
}
/*****************************************************

 Template - Footer
 
*****************************************************/
.global_footer {
  margin: 0;
  padding: 0;
  background-image: url("../images/home/bg_01.png");
}
.global_footer .copyright {
  box-sizing: border-box;
  /*background-color: #1b2841;*/
  padding: 16px;
  color: #333333;
  font-size: 2.4rem;
  text-align: center;
  font-family: "Caveat", cursive;
  font-weight: 500;
}

@media screen and (max-width: 820px) {
  .global_footer {
    margin: 0;
    padding: 0;
  }
  .global_footer .copyright {
    box-sizing: border-box;
    /*background-color: #1b2841;*/
    padding: 10px;
    font-size: 1.8rem;
    text-align: center;
  }
}
/*****************************************************

 Page - Home
 
*****************************************************/
/* section first
----------------------------------------------------*/
.first {
  box-sizing: border-box;
  padding: 0 5%;
}
.first p {
  margin: 0 0 24px;
}
.first span {
  font-size: 1.8rem;
  color: #111;
}
.first .under {
  font-size: 2.6rem;
  background: linear-gradient(transparent 50%, #a8eaff 50%);
}
.first img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 820px) {
  .first {
    margin: 40px auto 0;
    padding: 0;
    width: 94%;
  }
  .first .under {
    font-size: 2.0rem;
    background: linear-gradient(transparent 50%, #a8eaff 50%);
  }
  .first img {
    width: 80%;
    height: auto;
  }
}
/* section contact
----------------------------------------------------*/
.contact {
  box-sizing: border-box;
  padding: 80px 5%;
}
.contact p span {
  font-size: 1.3rem;
}

@media screen and (max-width: 820px) {
  .contact {
    margin: 0 auto;
    padding: 80px 0 40px;
    width: 94%;
  }
  .contact p span {
    font-size: 1.2rem;
  }
}
