@charset "UTF-8";
/* CSS Document */

/*---------------------

フォント・背景・動き

---------------------*/
html {
    font-size: 62.5%;
}
body {
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
	line-height: 1.8;
    font-weight: 500;
    font-style: normal;
	color: #000;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    background: #fff;
/*    overflow: hidden;*/
}
small{
    font-size: 1.2rem;
}
ul{
	list-style: none;
}
div{
    box-sizing: border-box;
}
iframe{
    max-width: 100%;
    height: auto;
}
h2,h3,h4,h5{
    line-height: 1.4;
    font-weight: 600;
}
.right{
    text-align: right;
    display: block;
}
.center{
    text-align: center;
}


/*---------------------

各ページのヘッダー

---------------------*/

/*---------------------

見出し

---------------------*/
.ttlarea{
     margin-bottom: 50px;
}
.secttl-area{
    border-left:5px solid #0596ad;
    padding-left: 16px;
    color: #0596ad;
}
.secttl-area .en{
    font-size: 1.6rem;
    line-height: 1.6;
}
.sec-ttl{
    font-size: 3.6rem;
}
.flex.ttlarea{
    justify-content: flex-start;
    align-items: flex-end;
}
.flex.ttlarea .secttl-area{
    margin-right: 46px;
}

/*---------------------

サイズを大きく

---------------------*/
span.big{
    font-size: 140%;
    font-weight: 600;
}


/*---------------------

背景

---------------------*/
.blue-bg{
    background: #128ec4;
}
.sky-bg{
    background: #f4fbfb;
}

/*---------------------

共通背景

---------------------*/
main{
/*
    background: url("../images/common/mainbg.jpg")repeat;
    background-size: 10px;
*/
    background: #fff;
/*    padding: 60px 0;*/
}

/*---------------------

ページトップ

---------------------*/
#page_top a{
    position: fixed;
    bottom: 10px;
    right: 20px;
    background: #fff;
    border: 2px solid #0596ad;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 1000;
    line-height: 60px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0px 0px 15px -5px rgba(41,42,44,0.6);
    opacity: 0.7;
    color: #fff;
    z-index: 200;
/*    padding-top: 10px;*/
}
#page_top a::before{
    position: absolute;
    content: "\f102";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #0596ad;
    margin: auto;
    right: 0;
    left:0;
    top: 0%;
}
#page_top a:hover{
    opacity: 1;
}
/*------------------

追従ボタン

-------------------*/

.fixed-btn {
    position: fixed;
    bottom: 0px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: 0.3s;
    opacity: 0; /*デフォルトで非表示 */
    visibility: hidden; /*デフォルトで非表示 */
    z-index: 100;
    padding: 10px 0;
  }
  .f-btns {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 800px;
    margin: 0 auto;
    text-align: center;
  }
.f-item {
    width: 40%;
    margin: 0 1%;
}
.f-item small{
    text-align: center;
    line-height: 0.5;
    display: block;
    font-size: 1.3rem;
    color: #fff;
}
.f-btns .btn{
    line-height: 1.6;
    padding: 5px 12px 12px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #fff;
    font-size: 2rem;
    border-radius: 10px;
    position: relative;
}
.f-btns .btn::after{
    font-family: "Font Awesome 6 Free";
    font: var(--fa-font-regular);
    content: "\f138";
    font-weight: 900;
    margin-left: 5px;
    position: absolute;
    right: 10px;
}
.f-btns .btn p,
.f-btns .btn span{
    font-weight: 600;
}
.f-btns .btn img{
    margin-right: 14px;
}
.f-btns .btn.mail{
    background: rgb(255,102,0);
    background: -webkit-linear-gradient(left, rgba(255,102,0,1) 0%, rgba(255,147,41,1) 50%, rgba(255,102,0,1) 100%);
    background: -o-linear-gradient(left, rgba(255,102,0,1) 0%, rgba(255,147,41,1) 50%, rgba(255,102,0,1) 100%);
    background: linear-gradient(to right, rgba(255,102,0,1) 0%, rgba(255,147,41,1) 50%, rgba(255,102,0,1) 100%);
    box-shadow: 0 4px 0 #914f0e;
}
.f-btns .btn.tel{
    background: rgb(6,111,185);
    background: -webkit-linear-gradient(left, rgba(6,111,185,1) 0%, rgba(15,169,177,1) 50%, rgba(6,111,185,1) 100%);
    background: -o-linear-gradient(left, rgba(6,111,185,1) 0%, rgba(15,169,177,1) 50%, rgba(6,111,185,1) 100%);
    background: linear-gradient(to right, rgba(6,111,185,1) 0%, rgba(15,169,177,1) 50%, rgba(6,111,185,1) 100%);
    box-shadow: 0 4px 0 #073b5e;
}
.f-btns .btn.mail:hover,
.f-btns .btn.tel:hover{
    box-shadow: none;
    transform: translateY(6px);
}
.active {
    opacity: 1;/* クラス付与で表示 */
    visibility: visible;/* クラス付与で表示 */
}
@media screen and (max-width:780px){
    .fixed-btn {
        padding: 5px 0;
        background-color: rgba(0, 0, 0, 0.7);
    }
    .f-btns {
        width: 100%;
      }
    #page_top a{
        bottom: 80px;
    }
    .f-item {
        width: 44%;
    }

    .f-btns .btn::after {
        content: none;
    }
    .f-btns .btn{
        /* display: block; */
        height: 37px;
        text-align: center;
        padding: 0 5px;
        justify-content: space-evenly;
    }
    .f-btns .btn p{
        line-height: 1;
        font-size: 1.6rem;
        margin: 0.5em 0;
    }
    .f-item small{
        line-height: 1;
        font-size: 1.1rem;
        padding-top: 6px;
    }
    .f-btns .btn span{
        font-size: 80%;
    }
    .f-btns .btn img{
        margin: 0;
    }
    .f-btns .btn::after{
        top: 40%;
    }
}
/*---------------------

ボタンまわり

---------------------*/
a{
	transition: .4s;
    box-sizing: border-box;
}
div{
    box-sizing: border-box;
}
a:hover{
/*    opacity: .6;*/
}
.btnarea{
    margin-top: 60px;
    text-align: center;
}
.btnarea .btn{
    position: relative;
    padding: 20px 45px;
    display: inline-block;
    font-weight: 600;
    font-size: 2rem;
    color: #0596ad;
    text-align: center;
    cursor: pointer;
    border: solid 1px #0590a9;
}
/*
.btn::after{
    position: absolute;
    font-family: "Font Awesome 6 Free";
    font: var(--fa-font-regular);
    content: "\f138";
    font-weight: 900;
    right: 10px;
    top: 33%;
}
*/
.btn:hover{
    background: #0590a9;
    color: #fff;
}
.btn.blue{
    background: #0a72ba;
    box-shadow: 0 4px 0 #072636; 
    width: 300px;
    margin: 30px auto 60px;
}
/*
.btn.gray{
    background: #ddd;
    border:none;
    box-shadow: 0 4px 0 #072636; 
    width: 300px;
    color: #000;
    margin: 30px auto 20px;
}
*/
.hamburger-menu{
    display: none;
}

/*---------------------

画面幅

---------------------*/
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
/*    width: 100%;*/
}

/*---------------------

余白

---------------------*/
.block {
    padding: 80px 0;
}
.block-bottom{
    padding-bottom: 80px;
}
.block-top{
    padding-top: 80px;
}
/*---------------------

レスポンシブ

---------------------*/
.pconly {
    display: block;
}
.sponly {
    display: none;
}

/*---------------------

共通クラス

---------------------*/
.center {
    text-align: center;
}
.bold{
	font-weight: bold;
}
.flex{
	display: flex;
	justify-content: space-around;
}
.red{
    color: #e50013;
    font-weight: 500;
}
.grade{
    background: rgb(15,169,177);
    background: -webkit-linear-gradient(left, rgba(15,169,177,1) 0%, rgba(6,111,185,1) 100%);
    background: -o-linear-gradient(left, rgba(15,169,177,1) 0%, rgba(6,111,185,1) 100%);
    background: linear-gradient(to right, rgba(15,169,177,1) 0%, rgba(6,111,185,1) 100%);
}

/*---------------------

ヘッダー

---------------------*/
.header-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0 10px;
}
.spnav{
    display: none;
}
.header-txt{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 60%;
}
.header-txt li{
    font-size: 1.4rem;
    font-weight: 600;  
}
.header-txt li img{
    padding-right: 6px;
    margin-bottom: 2px;
}
.header-cta a i{
    margin-right: 5px;
}
.header-cta a{
    display: block;
    background: rgb(255,102,0);
    background: -webkit-linear-gradient(left, rgba(255,102,0,1) 0%, rgba(255,147,41,1) 50%, rgba(255,102,0,1) 100%);
    background: -o-linear-gradient(left, rgba(255,102,0,1) 0%, rgba(255,147,41,1) 50%, rgba(255,102,0,1) 100%);
    background: linear-gradient(to right, rgba(255,102,0,1) 0%, rgba(255,147,41,1) 50%, rgba(255,102,0,1) 100%);
    box-shadow: 0 4px 0 #914f0e;
    text-align: center;
    margin-top: 16px;
    margin-left:20px;
    position: relative;
    color: #fff;
    border-radius: 10px;
    padding: 10px 30px;
    font-weight: 600;
    font-size: 2rem;
}
.header-cta a:hover{
    background: rgb(255,102,0);
    background: -webkit-linear-gradient(left, rgba(255,102,0,1) 0%, rgba(255,147,41,1) 50%, rgba(255,102,0,1) 100%);
    background: -o-linear-gradient(left, rgba(255,102,0,1) 0%, rgba(255,147,41,1) 50%, rgba(255,102,0,1) 100%);
    background: linear-gradient(to right, rgba(255,102,0,1) 0%, rgba(255,147,41,1) 50%, rgba(255,102,0,1) 100%);
    box-shadow: none;
    transform: translateY(6px);
}
.header-cta a::after{
    font-family: "Font Awesome 6 Free";
    font: var(--fa-font-regular);
    content: "\f138";
    font-weight: 900;
    margin-left: 5px;
}

.header-cta a span{
    position: absolute;
    bottom: 86%;
    right: 0;
    left: 0;
    color: #ff9329;
    font-size: 80%;
    font-weight: 600;
    margin: auto;
    width: 90%;
    display: inline-block;
    background: #fff;
    border: solid 2px #ff9329;
    border-radius: 50px;
}
.header-cta a span:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}

.header-cta a span:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #ff9329;
  z-index: 1;
}
.header-nav .catch{
/*    color: #0564b8;*/
    font-size: 13px;
    font-weight: 500;
    padding-top: 3px;
}
.header-cta br{
    display: none;
}



/*---------------------

ナビゲーション

---------------------*/
#header nav{
    background: rgb(15,169,177);
    background: -webkit-linear-gradient(left, rgba(15,169,177,1) 0%, rgba(6,111,185,1) 100%);
    background: -o-linear-gradient(left, rgba(15,169,177,1) 0%, rgba(6,111,185,1) 100%);
    background: linear-gradient(to right, rgba(15,169,177,1) 0%, rgba(6,111,185,1) 100%);
}
.nav.navfixed{
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 11111;
}
#header nav ul{
    display: flex;
    border-left: 1px solid #fff;
}
#header nav ul li{
    width: 16.6%;
    border-right: 1px solid #fff;
    text-align: center;
    display: flex;
}
#header nav ul li .navlink span{
    font-weight: 600;
}
#header nav ul li .navlink{
    display: flex;
    justify-content: center;
    align-items: center;
/*    text-align: left;*/
    width: 100%;
    padding: 15px 0 20px;
    font-size: 1.6rem;
    line-height: 1.4;
    color: #fff;
}
#header nav ul li .navlink:hover{
    color: #0670b9;
    background: #fff;
}
#header nav ul li .sub{
    display: none;
}
#header nav ul li.has-sub{
    position: relative;
}
#header nav ul li.has-sub::before{
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 7px;
    content: "";
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 0.12em solid #fff;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
#header nav ul li .sub {
/*  display: none;*/
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 3;
}
#header nav ul li .sub li{
    width: 100%;
}
#header nav ul li .sub a {
  font-size: 16px;
  color: #fff;
  line-height: 1.75;
  background-color: #0071b9;
    display: block;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid #fff;
}
#header nav ul li .sub a:hover{
    background: #fff;
    color: #0071b9;
}
#header nav ul li .sub a:hover {
  opacity: 1;
}


/*---------------------

CTA

---------------------*/
.cta{
    padding: 43px 0;
}
.cta .ctattl{
    text-align: center;
    margin-bottom: 20px;
}
.cta .ctattl p{
    margin-bottom: 10px;
}
.cta .ctattl h2{
    position: relative;
    font-size: 2.2rem;
    text-align: center;
    border-bottom: 2px solid #0094a6;
    background-color: white;
    line-height: 1.6;
    display: inline-block;
    padding: 0 30px 10px;
}
.cta .ctattl h2:before {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) skew(-25deg);
    height: 20px;
    width: 10px;
    border-right: 2px solid #0094a6;
    background-color: white;
    content: "";
}
.cta .ctattl span{
    color: #0596ad;
    font-size: 120%;
    font-weight: 600;
}
.ctabtn .orange{
    color: #ff6903;
    font-size: 1.6rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 4px;
}
.ctabtn{
    display: flex;
    justify-content: center;
    padding: 0 30px 20px;
    align-items: flex-end;
}
.ctacopy{
    font-size:2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}
.ctabtn .btnitem{
    width: 40%;
    margin: 0 1%;
}
.btnitem small{
    text-align: center;
    line-height: 1.3;
    display: block;
    font-size: 1.3rem;
}
.ctabtn .btn{
    line-height: 1.6;
    padding: 12px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #fff;
    font-size: 2rem;
    border-radius: 10px;
    position: relative;
}
.ctabtn .btn::after{
    font-family: "Font Awesome 6 Free";
    font: var(--fa-font-regular);
    content: "\f138";
    font-weight: 900;
    margin-left: 5px;
    position: absolute;
    right: 10px;
}
.ctabtn .btn p,
.ctabtn .btn span{
    font-weight: 600;
}
.ctabtn .btn img{
    margin-right: 14px;
}
.ctabtn .btn.mail{
    background: rgb(255,102,0);
    background: -webkit-linear-gradient(left, rgba(255,102,0,1) 0%, rgba(255,147,41,1) 50%, rgba(255,102,0,1) 100%);
    background: -o-linear-gradient(left, rgba(255,102,0,1) 0%, rgba(255,147,41,1) 50%, rgba(255,102,0,1) 100%);
    background: linear-gradient(to right, rgba(255,102,0,1) 0%, rgba(255,147,41,1) 50%, rgba(255,102,0,1) 100%);
    box-shadow: 0 4px 0 #914f0e;
}
.ctabtn .btn.tel{
    background: rgb(6,111,185);
    background: -webkit-linear-gradient(left, rgba(6,111,185,1) 0%, rgba(15,169,177,1) 50%, rgba(6,111,185,1) 100%);
    background: -o-linear-gradient(left, rgba(6,111,185,1) 0%, rgba(15,169,177,1) 50%, rgba(6,111,185,1) 100%);
    background: linear-gradient(to right, rgba(6,111,185,1) 0%, rgba(15,169,177,1) 50%, rgba(6,111,185,1) 100%);
    box-shadow: 0 4px 0 #073b5e;
}
.ctabtn .btn.mail:hover,
.ctabtn .btn.tel:hover{
    box-shadow: none;
    transform: translateY(6px);
}

/*---------------------

FV

---------------------*/
.page-head{
    background: url("../images/header/page-header_pc-min.jpg")no-repeat;
    background-position: center;
    background-size: cover;
}
.under-head{
    padding: 75px 0;
}
.under-head h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    -moz-text-shadow: 0px 0px 15px rgba(137, 188, 246, 1);
    -webkit-text-shadow: 0px 0px 15px rgba(137, 188, 246, 1);
    -ms-text-shadow: 0px 0px 15px rgba(137, 188, 246, 1);
    text-shadow: 0px 0px 15px rgba(137, 188, 246, 1);
}
.home .page-head{
    background: url("../images/header/1st-firstview-bg_pc-min.jpg")no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px 0 0;
}
.home .page-head h1{
    max-width: 1200px;
    margin: 0 auto;
}
/*---------------------

フッター

---------------------*/
footer .footer-logo{
    width: 304px;
    margin: 0 auto 30px;
}
footer{
    background: rgb(15,169,177);
    background: -webkit-linear-gradient(left, rgba(15,169,177,1) 0%, rgba(6,111,185,1) 100%);
    background: -o-linear-gradient(left, rgba(15,169,177,1) 0%, rgba(6,111,185,1) 100%);
    background: linear-gradient(to right, rgba(15,169,177,1) 0%, rgba(6,111,185,1) 100%);
    padding: 40px 0 10px;
    color: #fff;
    text-align: center;
}
footer ul{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
footer ul li{
    margin-bottom: 15px;
    border-right: 1px solid #fff;
}
footer ul li:last-of-type{
    border: none;
}
footer ul li a{
    padding: 0 10px;
    display: block;
    width: 100%;
    line-height: 1;
}
footer ul li a:hover{
    text-decoration: underline;
}

/*---------------------
パンクズリスト
---------------------*/
.breadcrumb {
    padding: 5px 0;
    font-size: 1.2rem;
    background: #fff;
}
.breadcrumb a:hover {
    opacity: 0.8;
    text-decoration: underline;
}


@media screen and (max-width:1440px){
    
}
@media screen and (max-width:1200px){
    .wrap{
        padding: 0 30px;
    }
}
@media screen and (max-width:1024px){
    .header-txt ul{
        display: none;
    }
    .header-txt .header-cta{
        display: none;
    }
    .header-nav{
        position: fixed;
        z-index: 100000;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 10px 15px;
        display: block;
    }
    .header-nav .logo{
        text-align: center;
    }
    .spnav{
        display: block;
    }
    .nav.pcnav{
        display: none!important;
    }
    header .wrap{
        padding: 0;
    }

   /*-----------------------

    ハンバーガーメニュー

    -----------------------*/
    .hamburger-menu {
      width: 50px;
      height: 50px;
      position: absolute;
      border: none;
        right: 30px;
        top: 0;
        bottom: 0;
        margin: auto;
        border-radius: 50%;
      background-color: transparent;
      appearance: none;
      padding: 0;
      cursor: pointer;
        z-index: 10000000;
        display: block;
    }
    .hamburger-menu--open.hamburger-menu{
        background: #fff;
    }
    .hamburger-menu__bar {
      display: inline-block;
      width: 44%;
      height: 2px;
      background: #0563b7;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      transition: .5s;
    }
    .hamburger-menu__bar:first-child {
      top: 16px;
    }
    .hamburger-menu__bar:nth-child(2) {
      top: 24px;
    }
    .hamburger-menu__bar:last-child {
      top: 32px;
    }
    .hamburger-menu--open .hamburger-menu__bar {
      top: 50%;
    }
    .hamburger-menu--open .hamburger-menu__bar:first-child {
      transform: translateX(-50%) translateY(-50%) rotate(45deg);
        background: #0670b9;
    }
    .hamburger-menu--open .hamburger-menu__bar:last-child {
      transform: translateX(-50%) translateY(-50%) rotate(-45deg);
        background: #0670b9;
    }
    .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
      display: none;
    }
    #header .nav {
/*      background: #eaf8ff;*/
      position: fixed;
      top: 0;
        right: 0;
      width: 45%;
      z-index: 100000;
        right: -100%;
        padding: 100px 30px 60px;
        height: 100vh;
        display: none;
    }
    #header .nav .wrap{
        padding: 0;
    }
    #header .nav.open{
        right:0;
        display: block
    }
    #header .nav ul {
        display: block;
      text-align: center;
      list-style: none;
      padding: 0;
      margin: 0;
        border: none;
    }
    #header .nav ul li{
        border: none;
        width: 100%;
        text-align: left;
        display: block;
    }
    #header nav ul li .navlink:hover,
    #header nav ul li .sub a:hover{
        color: #fff;
        background: transparent;
    }
    #header nav ul li .sub{
        position: relative;
        top: auto;
        left: auto;
        display: none;
    }
    #header nav ul li .sub a{
        background-color: transparent;
    }
    #header .has-sub-sp .navlink{
        position: relative;
    }
    #header .has-sub-sp .navlink:after{
      content: "";
      position: absolute;
      top: 50%;
      right: 25px;
      /*縦線*/
      width: 15px;
      height: 2px;
      background: #fff;
      transition: all .2s ease-in-out;
    }

    #header .has-sub-sp .navlink:before{
      content: "";
      position: absolute;
      top: 50%;
      right: 25px;
      width: 15px;
      height: 2px;
      /*横線に*/
      transform: rotate(90deg);
      background: #fff;
      transition: all .3s ease-in-out;
    }

    #header .has-sub-sp .navlink.open:before{
      transform: rotate(180deg);
    }
    #header .has-sub-sp .navlink.open:after{
      opacity: 0;
    }
    #header .nav ul li a,
    #header .nav ul li .sub a{
        width: 100%;
        padding: 15px 15px;
        color: #fff;
        font-size: 1.6rem;
        text-align: left;
        display: block;
        border-bottom: 1px solid #fff;
        font-weight: 500;
    }
    #header .nav ul li .sub a{
        padding-left: 26px;
    }
    #header .nav ul li a br{
        display: none;
    }
    #header .nav ul li .formbtn{
        background: -webkit-linear-gradient(236deg, rgba(1,103,236,1) 0%, rgba(2,192,251,1) 100%);
        background: -o-linear-gradient(236deg, rgba(1,103,236,1) 0%, rgba(2,192,251,1) 100%);
        background: linear-gradient(326deg, rgba(1,103,236,1) 0%, rgba(2,192,251,1) 100%);
        margin-top: 30px;
    }
    #header .nav ul li:last-of-type{
        border: none;
    }
    .header-cta a i{
        width: 100%;
        font-size: 16px;
        padding-bottom: 1px;
    }
    .header-cta a{
        padding: 5px 0;
        font-size: 12px;
        line-height: 1.2;
        margin: 0 20px 0 0;
    }
    .header-cta .btn::after{
        display: none;
    }
    .header-cta br{
        display: block;
    }
    .header-txt{
        width: 70%;
    }
    /*---------------------

    余白

    ---------------------*/
    .block {
        padding: 60px 0;
    }
    .block-bottom{
        padding-bottom: 60px;
    }
    .block-top{
        padding-top: 60px;
    }
    /*---------------------

    CTA

    ---------------------*/
    .cta .ctattl::before{
        width: 190px;
        height: 183px;
    }
    .cta .inner{
        margin: 0;
    } 
    .ttlarea{
        margin: 0 auto 50px;
    }
    .page-head{
        margin-top: 106px;
    }
    .ctabtn .btnitem{
        width: 48%;
    }

}

@media screen and (max-width:769px) {
    .wrap{
        padding: 0 30px;
    }
	.pconly{
		display: none;
	}
	.sponly{
		display: block;
	}
    /*---------------------

    余白

    ---------------------*/
    .block {
        padding: 80px 0;
    }
    .block-bottom{
        padding-bottom: 80px;
    }
    .block-top{
        padding-top: 80px;
    }
    .home .page-head{
        background: none;
        padding: 0;
    }
    .flex{
        display: block;
    }
    .ctabtn{
        padding: 0 0 20px;
    }
    .ctabtn .btn{
        display: block;
        height: 100px;
        text-align: center;
        padding: 12px 5px;
    }
    .ctabtn .btn p{
        line-height: 1.4;
        margin-top: 0.2em;
    }
    .btnitem small{
        line-height: 1.4;
        font-size: 1.1rem;
    }
    .ctabtn .btn span{
        font-size: 80%;
    }
    .ctabtn .btn img{
        margin: 0 0 4px;
/*
        height: 30px;
        width: auto;
*/
    }
    .ctabtn .btn::after{
        top: 40%;
        right: 2px;
    }
    /* .ctabtn .btn.mail img{
        margin-top: 7px;
    } */
    .ttlarea .caption{
        margin-top: 15px;
    }
    .logo a{
        display: block;
        width: 40%;
        margin:  0 auto;
    }
    .hamburger-menu{
        right: 0;
    }
    .page-head{
        margin-top: 88px;
    }
    .header-nav .catch{
        font-size: 1rem;
    }
    .under-head{
        padding: 50px 0;
    }
    
}
@media screen and (max-width:479px){
    body{
        font-size: 1.3rem;
    }
    .wrap{
        padding: 0 20px;
    }
    .block {
        padding: 60px 0;
    }
    .block-bottom{
        padding-bottom: 60px;
    }
    .block-top{
        padding-top: 60px;
    }
    .cta .ctattl h2{
        font-size: 1.7rem;
        padding: 0 3px 10px;
    }
    .ctabtn .btn{
        font-size: 4vw;
    }
    .ctabtn .btn{
        height: 110px
    }
    .ctabtn .orange{
        font-size: 1.2rem;
    }
    .ctabtn .btn{
        height: 86px;
    }
    .sec-ttl{
        font-size: 2rem;
    }
    .ttlarea{
        margin-bottom: 30px;
    }
    .btnarea{
        margin-top: 40px;
    }
    .secttl-area{
        padding-left: 10px;
    }
    .secttl-area .en{
        font-size: 1.3rem;
    }
    .btnarea .btn{
        padding: 12px 12px;
        font-size: 1.5rem;
    }
    .flex.ttlarea .secttl-area{
        margin-right: 0;
    }
    #header .nav{
        width: 100%;
        box-sizing: border-box;
    }
    .hamburger-menu__bar{
        right: 0;
        left: auto;
    }
    .hamburger-menu{
        right: 10px;
    }
    .under-head{
        padding: 40px 0;
    }
    .under-head h1{
        font-size: 7vw;
    }
    .page-head{
        margin-top: 65px;
    }
    .stafflist li .txt{
        font-size: 1.35rem;
    }
    .breadcrumb {
        padding-left: 10px;
    }
}
@media screen and (max-width:375px){
    .cta .ctattl h2{
        font-size: 4.2vw;
        padding: 0 0px 10px
    }
}













