@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Montserrat:wght@400;600;700&display=swap');
/*外部font読み込み*/


/*--------------------共通--------------------*/
::-moz-selection {
    background-color: #5bccff;
}
::selection {
    background-color: #5bccff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
	font-variant-ligatures: none;
    /*-webkit-backface-visibility: hidden;
    backface-visibility: hidden; */
    -webkit-appearance: none;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    font-weight: initial;
}
nav ul,
li{
    list-style:none;
}

a {
    text-decoration: none;
}

input:focus,
textarea:focus {
    outline: none;
}


/* Setting-basic
---------------------------------------*/
body {
    font-family: 'Noto Sans JP', "メイリオ", Meiryo, "ヒラギノ角ゴシック ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
    font-weight: 400;
    color: #333;
    font-size: 14px;
    letter-spacing: 0.1em;
}
/*main{
  min-height: 100vh;
}*/
@media all and (min-width:681px){
  html{
    background-color: #333;
    padding: 20px;
  }
  body {
    min-width: 960px;
    background-color: #fff;
  }
}


/* Font
---------------------------------------*/
.sans {
  font-family: 'Montserrat', sans-serif;
   /*font-family: Century Gothic, sans-serif;*/
   letter-spacing: 0;
	font-weight: 400;
}
.serif{
      font-family: 'Noto Serif JP', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	  font-weight: 500;
}

/*.fo_osw {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}
*/


/* Image
---------------------------------------*/
img {
    border: 0;
    vertical-align: bottom;
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

/* Link
---------------------------------------*/
a {
  transition: 0.5s ease;
  text-decoration: none;
  color: #000;
}
a:active,
a:focus {
    outline: none;
}
a img {
  transition: 0.5s ease;
}
@media all and (min-width: 681px) {
  /*a:hover img{
    opacity: 0.7;
    transition: 0.5s ease;
  }*/
}



.hide_txt{
    overflow: hidden;
    text-indent: 200%;
    white-space: nowrap;
    display: block;
}


/*pc sp only*/

@media all and (min-width: 681px) {
  .nonePC {
    display: none !important;
  }
}
@media all and (max-width:680px) {
  .noneSP {
    display: none !important;
  }
}

/* Load Effect
***************************************************************/
@keyframes opacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  animation: opacity ease 1s forwards;
}
.shutter{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:#333;
  z-index:9999;
}
.shutter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  width: 0;
  height: 1px;
}
.shutter2{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:#fff;
  z-index:100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shutter2 img{
  width: 35%;
  max-width: 340px;
  height: auto;
  flex-shrink: 0;
}
.shutter {
  -webkit-animation: byeShutter 2.6s forwards;
          animation: byeShutter 2.6s forwards;
}
.shutter::before {
  -webkit-animation: shutterOpen 2.6s forwards;
          animation: shutterOpen 2.6s forwards;
}
/*main {
  -webkit-animation: contentScale 2.6s forwards;
          animation: contentScale 2.6s forwards;
}*/
.shutter2 img {
  -webkit-animation: byeShutter2 1s 3s forwards;
          animation: byeShutter2 1s 3s forwards;
}
.shutter2{
  -webkit-animation: byeShutter3 2.5s 3s forwards;
          animation: byeShutter3 2.5s 3s forwards;
}
@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@keyframes byeShutter2 {
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@keyframes byeShutter3 {
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes contentScale {
 0% {
  opacity: 0;
  pointer-events: none;
  }
  100% {
    opacity: 1;
  }
}
@media all and (min-width:681px){
}
@media all and (max-width:680px){
  .shutter2 img{
    width: 60%;
    max-width: 300px;
    height: auto;
  }
}



/* Common
***************************************************************/

.sec{
  padding: 100px 0;
}
.img{
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media all and (min-width:681px){
  body {
      overflow-x: hidden;
  }
  .inner{
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  /*.waku {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 20px solid #333;
      z-index: 1;
      pointer-events: none;
  }*/
}
@media all and (max-width:680px){
  .sec{
    padding: 50px 0;
  }
  .inner {
      width: auto;
      margin-left: 5%;
      margin-right: 5%;
  }
  /*.waku{
    display: none;
  }*/
}


/* header Nav
***************************************************************/
.drawer-toggle.drawer-hamburger {
    background: #333;
    /*border-radius: 50%;*/
    box-sizing: border-box;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.drawer-hamburger-icon {
    margin-top: 0 !important;
}
/*.drawer-menu a{
    height: 64px;
    display: flex;
    align-items: center;
    padding-left: 1em;
    padding-top: 0.8em;
}*/

.drawer-menu{
  margin-top: 2em;
}
.drawer-menu a {
    display: inline-block;
    height: 64px;
    /* display: flex; */
    align-items: center;
    padding-left: 1em;
    padding-top: 0.8em;
    font-size: 20px;
    padding: 10px 20px;
    line-height: 1;
    height: auto;
    text-decoration: none;
}

.drawer-menu > li{
  position: relative;
}
.drawer-menu > li::before {
    content: '';
    width: 1.1em;
    height: 1.1em;
    position: absolute;
    /* background-color: #00a0e9; */
    background-color: #3969ab;
    display: block;
    margin-right: 0.5em;
    top: 1em;
    left: 0;
}
.drawer-menu > li + li{
  margin-top: 5px;
}
.drawer-menu .under_menu{
  display: flex;
  margin-left: 2em;
}
.drawer-menu .under_menu > li + li{
  margin-left: 1em;
}
.drawer-menu .under_menu a{
  font-size: 16px;
}
/*.anchor{
  visibility: hidden !important;
  height: 0px !important;
  pointer-events: none !important;
}*/
.anchor {
visibility: hidden !important;
height: 0px !important;
pointer-events: none !important;
margin-top: 30px;
}
.drawer--top.drawer-open .drawer-nav {
  top: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*@media all and (min-width:1000px){
  .drawer-toggle.drawer-hamburger {
      right: 10%;
      top: 25px;
      width: 75px;
      height: 75px;
  }
  .drawer--right.drawer-open .drawer-hamburger {
      right: 10%;
  }
}
@media all and (max-width:999px){
  .drawer--right .drawer-hamburger {
      right: 25px;
  }
  .drawer--right.drawer-open .drawer-hamburger {
      right: 25px;
  }
}*/
header {
    position: fixed;
    z-index: 2;
    transition: 0.5s ease;
}
.drawer-overlay {
    background-color: transparent;
}
.drawer-open .drawer-overlay {
    pointer-events: none;
}

/*ロゴ処理*/
a.h_logo {
    height: auto;
    width: 280px;
    margin-left: 10px;
}
.drawer-open a.h_logo {
    z-index: 102;
    margin-left: 10px;
}
body.home .h_logo_top01{
  display: block;
  transition: 0.5s ease;
}
body.home.scrolled .h_logo_top01{
  display: none;
  transition: 0.5s ease;
}
body.home .h_logo_top02{
  display: none;
  transition: 0.5s ease;
}
body.home.scrolled .h_logo_top02{
  display: block;
  transition: 0.5s ease;
}
body.home.scrolled .h_logo_top01, body.home.drawer-open .h_logo_top01{
  display: none !important;
}
body.drawer-open .h_logo_top02{
  display: block;
}
body.drawer-open .h_logo_top01{
  display: none;
}
/*body.home:not(.scrolled) .h_logo_top02{
  display: none !important;
}*/
/*body.home.drawer-open .h_logo_top02{
  display: none !important;
}*/


a.h_tel {
    position: absolute;
    right: 180px;
    width: 215px;
    height: auto;
    z-index: 102;
    top: 17px;
}

body.home .h_tel01{
  display: block;
  transition: 0.5s ease;
}
body.home.scrolled .h_tel01{
  display: none;
  transition: 0.5s ease;
}
body.home .h_tel02{
  display: none;
  transition: 0.5s ease;
}
body.home.scrolled .h_tel02{
  display: block;
  transition: 0.5s ease;
}
body.drawer-open .h_tel02{
  display: block;
}
body.drawer-open .h_tel01{
  display: none;
}

a.h_con {
    position: absolute;
    right: 82px;
    width: 80px;
    height: 80px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 102;
    top: 0;
}
a.h_con img {
  width: 50%;
  height: auto;
}
a.h_con img {
  width: 50%;
  height: auto;
}
.btn01{
  border: 2px solid #00a0e9;
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a0e9;
  font-weight: 700;
  padding-right: 110px;
  position: relative;
      transition: 0.5s ease;
}
.btn01::after{
  right: 15px;
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
      background: url(../img/common/arrow_01.png) center / 20px no-repeat;
      transition: 0.5s ease;
      transform: translateX(0);
}

.sec2__conten--txt .btn01 {
    margin-left: auto;
    margin-top: 30px;
}
@media all and (min-width:681px){
  header {
      left: 21px;
      top: 21px;
      height: 80px;
      width: calc(100% - 42px);
      display: flex;
      align-items: center;
  }
  .scrolled header, .drawer-open header {
      height: 70px;
      /*background: rgba(255,255,255,.9);*/
      /*left: 0;*/
      top: 0;
      /*width: 100%;*/
  }
  .scrolled .drawer-toggle.drawer-hamburger, .drawer-open .drawer-toggle.drawer-hamburger  {
      width: 60px;
      height: 60px;
  }

  .scrolled a.h_tel, .drawer-open a.h_tel {
      right: 140px;
      width: 190px;
      top: 16px;
  }

  .scrolled a.h_con, .drawer-open a.h_con {
      right: 66px;
      width: 60px;
      height: 60px;
      z-index: 102;
      top: 5px;
  }
  .drawer-toggle.drawer-hamburger {
      top: 21px;
      width: 80px;
      height: 80px;
      right: 21px;
      transition: 0.5s ease;
  }
  .drawer-toggle.drawer-hamburger:hover {
    background-color: #003680;
  }
  a.h_con:hover {
      background: #003680;
  }

  .scrolled .drawer-toggle.drawer-hamburger, .drawer-open .drawer-toggle.drawer-hamburger {
      top: 5px;
      right: 24px;
  }
  /*.drawer--right.drawer-open .drawer-hamburger {
      right: 21px;
  }*/
  /*.scrolled.drawer--right.drawer-open .drawer-hamburger {
      right: 5px;
  }*/
  .drawer-hamburger-icon, .drawer-hamburger-icon:before, .drawer-hamburger-icon:after {
      width: 30px;
      height: 2px;
      background-color: #fff;
      border-radius: 0;
  }
  .drawer--right .drawer-nav {
      right: 0;
      width: 100%;
      padding: 83px 173px 83px 83px;
      height: 100vh;
      overflow-y: scroll;
      opacity: 0;
      transition: 0.5s ease;
      pointer-events: none;
    background-color: rgba(255,255,255,0.95);
  }
.drawer--right.drawer-open .drawer-nav {
    opacity: 1;
    pointer-events: initial;
    display: flex;
    align-items: center;
    padding-bottom: 10em;
}
.drawer-menu {
    margin-left: 10%;
}
.drawer-menu a:hover {
    color: #ffffff !important;
    background-color: #0078be !important;
    opacity: 1;
    text-decoration: none;
}
  /*.drawer-menu a.navRed:hover {
      background: #e83830 url(../img/arrow_r.png) right 25px center / 36px 25px no-repeat;

  }
  .drawer-menu a.navWhite:hover{
    background: #fff url(../img/arrow_r.png) right 25px center / 36px 25px no-repeat;
  }*/
  .navCon__wrap .toiawasesaki{
    pointer-events: none !important;
  }
  .convWrap{
    right: 0;
    top: 30%;
    flex-direction: column;
  }
  .convReserve{
    width: 115px;
    height: 115px;
    background-color: #ea5853;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
  }
  .convShiryo{
    width: 115px;
    height: 115px;
    background-color: #3cb8ae;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
  }
  body:not(.home).scrolled .h_logo {
      margin-left: 10px;
  }
  body.scrolled .h_logo, body.drawer-open .h_logo{
      width: 220px;
  }
  a.h_tel {
      pointer-events: none;
  }

  .btn01:hover{
    border: 2px solid #00a0e9;
    color: #fff;
    background-color: #00a0e9;
  }
  .btn01:hover::after{
      background: url(../img/common/arrow_01_hov.png) center / 20px no-repeat;
        transition: 0.5s ease;
        transform: translateX(6px);
  }

}
@media all and (max-width:680px){
  header {
      height: 50px;
      background-color: rgba(255,255,255,0);
      width: 100%;
  }
  .scrolled header {
      background-color: rgba(255,255,255,0.95);
  }
  /*.scrolled.drawer-open header {
      background-color: rgba(255,255,255,0);
      transition: none;
  }*/
  a.h_logo {
      height: auto;
      width: 200px;
      margin-left: 10px;
      margin-top: 4px;
      display: block;
  }
  .drawer-open a.h_logo {
      width: 200px;
    z-index: 102;
    /*margin-left: 10px;*/
  }


  a.h_con {
      position: absolute;
      right: 51px;
      width: 50px;
      height: 50px;
      z-index: 102;
  }
  .drawer-menu {
      margin-top: 0em;
  }
  .drawer-menu > li::before {
    top: 0.7em;
}
  .drawer-menu > li + li {
      margin-top: 5px;
  }

  .drawer-menu .under_menu{
    display: block;
    margin-left: 0em;
  }
  .drawer-menu .under_menu > li + li {
      margin-left: 0;
  }
  .drawer--right .drawer-nav {
      right: 0;
      top: -110vh;
      width: 100%;
      opacity: 0;
      transition: 0.5s ease;
      pointer-events: none;
  }
  .drawer--right.drawer-open .drawer-nav {
      opacity: 1;
      pointer-events: initial;
  }

  .drawer--right .drawer-nav, .drawer--right .drawer-hamburger, .drawer--right .drawer-navbar .drawer-hamburger {
      top: 50px;
  }
  .drawer--right.drawer-open .drawer-nav, .drawer--right .drawer-hamburger, .drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
      width: 100%;
  }

  .drawer-toggle.drawer-hamburger {
      background: #333;
      box-sizing: border-box;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .drawer--right .drawer-hamburger {
      right: 0px;
      top: 0px;
      height: 50px;
      width: 50px;
  }
  .drawer--right.drawer-open .drawer-hamburger {
      right: 0;
  }
  .drawer-hamburger-icon, .drawer-hamburger-icon:before, .drawer-hamburger-icon:after {
      width: 20px;
      height: 2px;
      background-color: #fff;
      border-radius: 10px;
  }
  .drawer-hamburger-icon:before, .drawer-hamburger-icon:after {
      top: -6px;
  }
  .drawer-hamburger-icon:after {
      top: 6px;
  }
  .drawer-nav {
      /* width: 100%; */
      z-index: 0;
      padding: 25px 25px 25px 35px;
      background-color: transparent;
  }
  .drawer-overlay {
      /*background-color: rgba(255, 255, 255, 1);*/
  background-color: rgba(255,255,255,0.95);
      /* background: transparent; */
      z-index: 0;
  }
  .drawer--right .drawer-nav a {
      font-size: 14px;
  }
  .drawer-menu a {
      height: 30px;
  }
  .btn01 {
      width: 80%;
      height: 45px;
      padding-right: 35%;
      max-width: 220px;
      margin-right: auto;
  }
.anchor {
  visibility: hidden !important;
  height: 0px !important;
  pointer-events: none !important;
  margin-top: -30px;
  }

}
@media all and (max-width:370px){}


/*-----コンバージョンボタン(float)-----*/
/*.convWrap{
  position: fixed;
  z-index: 2;
  display: flex;
}
@media all and (min-width:681px){
  .convWrap{
    right: 0;
    top: 30%;
    flex-direction: column;
  }
  .convReserve{
    width: 115px;
    height: 115px;
    background-color: #ea5853;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
  }
  .convShiryo{
    width: 115px;
    height: 115px;
    background-color: #3cb8ae;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
  }

}
@media all and (max-width:680px){
  .convWrap{
    bottom: 0;
    width: 100%;
    height: 50px;
  }
  .convReserve{
    width: 40%;
    background-color: #ea5853;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.14;
  }
  .convShiryo{
    width: 40%;
    background-color: #3cb8ae;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.14;
  }
  .convTel{
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ebebeb;
  }
  .convTel img{
    width: 16px;
    height: auto;
  }
}
@media all and (max-width:370px){
  .convReserve{
    width: calc((100% - 50px) / 2);
  }
  .convShiryo{
    width: calc((100% - 50px) / 2);
  }
  .convTel{
    width: 50px;
  }
}*/




/*-----go scroll-----*/

@keyframes scroll{
  0%{
    height: 0;
  }
  80%{
    height: 40px;
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}
.gotoarrow {
    position: absolute;
    left: calc(50% - 1em);
    font-size: 12px;
    letter-spacing: 0.15em;
    color: #ccc;
    bottom: 50px;
}
.gotoarrow::after {
    position: absolute;
    /* bottom: -45px; */
    /* top: 68px; */
    /* right: 0.5em; */
    content: '';
    width: 1px;
    height: 40px;
    background-color: #fff;
    animation: scroll 1.5s linear 0.0s infinite normal none running;
    display: block;
    left: 50%;
    top: 22px;
}


/*-----footer-----*/
footer{
  background-color: #333;
  padding-top: 50px;
}
footer small{
  text-align: center;
  display: block;
  padding: 50px 0 0px;
  color: #999;
  font-size: 12px;
}

.footerWrap__con{
  display: flex;
  justify-content: space-between;
  color: #fff;
}

.footerWrap__con01{
  width: 245px;
  height: auto;
}

.footerWrap__con02 p{
  font-size: 16px;
  line-height: 1.5;
}
.footerWrap__con02 p + p{
  margin-top: 1.5em;
}
.footerWrap__con03{
}
.footerWrap__con03 a {
    display: flex;
    align-items: center;
    position: relative;
    line-height: 2;
    color: #fff;
    font-size: 14px;
    text-decoration: underline;
    transition: 0.5s ease;
}
.footerWrap__con03 a::before{
  content:'';
  width: 0.9em;
  height: 0.9em;
  position: relative;
  /*background-color: #00a0e9;*/
  background-color: #3969ab;
  display: block;
  margin-right: 0.5em;
  margin-top: 0.1em;
}

.pagetop {
    position: fixed;
    right: 35px;
    bottom: 300px;
    opacity: 0;
    transition: 0.5s ease;
    width: 18px;
    height: auto;
}
.scrolled .pagetop{
  opacity: 1;
}
@media all and (min-width:681px){
  .footerWrap__con03 a:hover {
      text-decoration: none;
  }

  .pagetop:hover {
    opacity: 0.6;
  }

}
@media all and (max-width:680px){
  footer small{
    font-size: 10px;
    padding: 50px 0 90px;
  }
  .footerWrap__con {
      flex-direction: column;
      align-items: center;
  }
  .footerWrap__con01 {
      max-width: 250px;
      width: 80%;
  }
  .footerWrap__con02 {
      text-align: center;
      margin-top: 20px;
  }
  .footerWrap__con02 p {
      font-size: 12px;
  }
  .footerWrap__con02 p + p{
    margin-top: 1em;
  }
  .footerWrap__con03 {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 25px;
  }
  .footerWrap__con03 a{
    font-size: 12px;
  }
  .footerWrap__con03 a + a{
    margin-left: 1.3em;
  }
  /*.footerWrap__con03 a:nth-child(4n){
    margin-left: 0em;
  }*/
  footer small {
      font-size: 10px;
      padding: 30px 0 10px;
  }
  .pagetop {
      right: 15px;
      bottom: 335px;
      width: 15px;
  }
}
@media all and (max-width:370px){}


/*-----contact-----*/
.contactLink{
  padding-top: 0px;
}
.contact__content{
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #e5e5e5;
}
.contact__content .box01{
  text-align: center;
  background-color: #e5e5e5;
  padding: 30px;
}
.contactLink__ttl{
  font-size: 30px;
  letter-spacing: 0.1em;
  color: #003680;
  font-weight: 700;
}
.contactLink__ttlSub{
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
.contact__content .box02{
  padding: 18px;
  display: flex;
}
.contact__content .box02 > div p{
  font-size: 18px;
  margin-bottom: 20px;
}
.box02__tel{
  width: 50%;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.box02__tel a{
  font-size: 47px;
  font-weight:600;
  color: #00a0e9;
  letter-spacing: 0.06em;
  line-height: 0.9;
}
.box02__mail{
  width: 50%;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.box02__mail a{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00a0e9;
  color: #fff;
  width: 260px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
}
.box02__mail a img{
  width: 20px;
  height: auto;
  margin-right: 8px;
}

@media all and (min-width:681px){
  .contactLink__tel{
    pointer-events: none;
  }
  .box02__mail{
    border-left: 2px dotted #adadad;
  }
  .box02__mail a:hover{
    background-color: #003680;
  }
}
@media all and (max-width:680px){
  .contact__content {
      width: 100%;
  }
  .contact__content .box02 {
      padding: 2% 2% 8% 2%;
      flex-direction: column;
  }
  .box02__tel {
      width: 100%;
      padding-top: 15px;
      padding-bottom: 15px;
  }
  .contactLink__ttlSub {
      font-size: 14px;
      margin-top: 7px;
      line-height: 1.5;
  }
  .contact__content .box01 {
      padding: 15px;
  }
  .box02__tel a {
      font-size: 9.5vw;
      font-weight: 600;
      color: #00a0e9;
      letter-spacing: 0.04em;
      line-height: 0.9;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .box02__mail {
      width: 100%;
      padding-top: 0;
      padding-bottom: 0;
      margin-top: 5px;
  }
  .box02__mail a {
      max-width: 87%;
      height: auto;
      width: 100%;
      font-size: 3.7vw;
      padding: 3.5% 0;
  }
  .box02__mail a img {
      width: 1.3em;
      margin-right: 0.3em;
      margin-top: 0.1em;
  }
  span.contactLink__telico {
      width: 0.9em;
      margin-right: 0.15em;
  }
}
@media all and (max-width:370px){}



/*-----otherLink-----*/
.otherLink{
  background-color: #e5e5e5;
}
.otherLink__content{
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}
.otherLink__content a{
  /*border:1px solid #ccc;*/
  width: 380px;
  opacity: 1;
  transition: .5s ease;
}
@media all and (min-width:681px){
  .otherLink__content a:hover{
    opacity: .7;
    transition: .5s ease;
  }
  .otherLink__content a + a {
      margin-left: auto;
  }
}
@media all and (max-width:680px){
  .otherLink{
    padding: 30px 0;
  }
  .otherLink__content {
      width: 100%;
      flex-direction: column;
      max-width: 300px;
      margin-left: auto;
      margin-right: auto;
  }
  .otherLink__content a {
      width: 100%;
  }
  .otherLink__content a + a  {
    margin-top: 15px;
  }
}
@media all and (max-width:370px){}


/*セクション共通*/
.content_head{
  padding-top: 120px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e5e5;
}
.conTtl.inner {
    font-size: 15px;
    font-weight: 500;
    color: #013780;
    letter-spacing: 0.05em;
    display: flex;
    width: 100%;
    align-items: baseline;
}
.conTtl span {
    font-size: 48px;
    font-weight: bold;
    color: #d6d6d6;
    font-style: oblique;
    margin-left: 1em;
    padding-right: 0.3em;
    order: -1;
}

.secTxt{
  font-size: 18px;
  line-height: 2.1;
  text-align: center;
  margin-top: 70px;
}

@media all and (max-width:680px){
  .content_head{
    padding-top: 100px;
    border-bottom: 1px solid #e5e5e5;
  }
  .conTtl.inner {
      font-size: 13px;
      font-weight: 500;
      color: #013780;
      letter-spacing: 0.05em;
      display: flex;
      width: auto;
      align-items: baseline;
  }
  .conTtl span{
    font-size: 24px;
    margin-left: 0px;
    padding-right: 0.5em;
  }

  .secTxt{
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
    margin-top: 35px;
  }
}
.secTtl{
  font-size: 40px;
  color: #003680;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.secTtl__sub{
  font-size: 16px;
  color: #ff6302;
  text-align: center;
  line-height: 1;
  margin-top: 0.5em;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 70px;
}
.secTtl__sub::before{
  content: '';
  width: 5em;
  height: 1px;
  background-color: #ff6302;
  position: relative;
  margin-right: 1em;
}
.secTtl__sub::after{
  content: '';
  width: 5em;
  height: 1px;
  background-color: #ff6302;
  position: relative;
  margin-left: 1em;
}
/*.secTtl__sub + *{
  margin-top: 70px;
}*/
@media all and (min-width:681px){}
@media all and (max-width:680px){
  .secTtl{
    font-size: 25px;
    color: #003680;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
  }
  .secTtl__sub{
    font-size: 12px;
    margin-bottom: 40px;
  }
  .secTtl__sub::before{
    width: 3em;
  }
  .secTtl__sub::after{
    width: 3em;
  }
  /*.secTtl__sub + * {
      margin-top: 40px;
  }*/
}
@media all and (max-width:370px){}

/*----- inLink -----*/
.inLink{
  height: 100px;
  background-color: #003366;
}
.inLink .inner{
  display: flex;
  height: 100%;
}
.inLink a{
  width: calc(100% / 3);
  height: 100%;
  font-size: 20px;
  color: #fff;
  background-color: #003366;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.inLink a span{
  font-weight: bold;
  position: relative;
  padding-right: 40px;
}


@media all and (min-width:681px){
  .inLink .inner{
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  .inLink a:hover{
    background-color: #00a0e9;
  }
  .inLink a + a{
    border-left: 2px solid #fff;
  }
  .inLink a span::after{
      content: '';
      width: 20px;
      height: 20px;
      background: url(../img/common/arrow_01_hov.png) center / 20px no-repeat;
      position: absolute;
      right: 0;
  }
}

@media all and (max-width:680px){
  .inLink{
    height: auto;
    padding: 30px 0;
  }
  .inLink .inner{
    display: block;
    max-width: 300px;
      margin: auto;
  }
  .inLink a{
    width: 100%;
    height: 45px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: initial;
    border: 1px solid #fff;
    padding-left: 10px;
    position: relative;
  }
  .inLink a + a{
    margin-top: 15px;
  }
  .inLink a span{
    font-weight: bold;
    position: relative;
    padding-right: 40px;
  }
  .inLink a::after{
      content: '';
      width: 20px;
      height: 20px;
      background: url(../img/common/arrow_01_hov.png) center / 20px no-repeat;
      position: absolute;
      right: 10px;
  }

}
@media all and (max-width:370px){}

/*-----aaa-----*/
@media all and (min-width:681px){}
@media all and (max-width:680px){}
@media all and (max-width:370px){}
