
html { 
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    letter-spacing: 0.005em;
    color: #333;
}

/*
font-family: 'Cormorant', serif;
font-family: 'Noto Sans JP', sans-serif;
font-family: 'PT Sans', sans-serif;
*/

/*ーーーーーーーーーーーCommonーーーーーーーーーーー*/

.content_wrap{
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .content_wrap{  
        margin: 0 4%;
    }
}

.title{    
    font-family: 'Cormorant', serif;
    font-weight: 700;
    font-size: 3.8rem;
    letter-spacing: 0.01em;
}

.title_bar{
    position: relative;
    display:inline-block;
}

.title_bar::after{
    content:"";
    display:inline-block;
    width:120px;
    height:1px;
    background-color:#333;
    position:absolute;
    top: 20px;
    right: -150px;
}

.sub_title{
    font-size: 1.6rem;
    letter-spacing: 0.01em;
}

@media (max-width: 768px){
    .title{    
        font-size: 2.4rem;
    }

    .title_bar::after{
        content:"";
        display:inline-block;
        width:80px;
        top: 15px;
        right: -100px;
    }

    .sub_title{
        font-size: 1.4rem;
    }
}

.btn{
    text-align: center;
    margin: 0 auto;
}

.btn a{
    display: inline-block;
    width: 324px;
    height: 68px;
    background: #FFFFFF;
    border: 1px solid #328CB9;
    color: #328CB9;
    font-size: 1.8rem;
    padding: 23px 107px;
    transition: all 0.3s; 
}

.btn a:hover{
    background-color: #328CB9;
    color: #fff;
}

.arrow{
    position: relative;
}

.arrow::before{
    content: "";
    display: block;
    position: absolute;
    top: 33px;
    right: -30px;
    width: 80px;
    height: 1px;
    background: #328CB9;
    transition: all .3s;
}

.arrow::after{
    content: "";
    display: block;
    position: absolute;
    top: 27px;
    right: -28px;
    height: 7px;
    border: 1px solid #328CB9;
    transform: skew(45deg);
    transition: all .3s;
}

.arrow:hover::before{
    right: -50px;
}

.arrow:hover::after{
    right: -48px;
}

@media (max-width: 768px) {
    .btn a{
        width: 230px;
        height: 50px;
        font-size: 1.6rem;
        padding: 13px 65px;
    }

    .arrow::before{
        top: 23px;
        right: -25px;
        width: 60px;
    }

    .arrow::after{
        top: 17px;
        right: -23px;
        height: 7px;
    }
}

/*下層ページのmvとタイトル*/

.under_mv{
    width: 100vw;
    height: auto;
    padding-top: 90px;
    position: relative;
}

.under_mv .under_mv_img{
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.under_mv .under_title_wrap{
    position: absolute;
    top: 55%;
    left: 10%;
}

.under_title{
    font-family: 'Cormorant', serif;
    font-weight: 700;
    font-size: 4.8rem;
    letter-spacing: 0.01em;
}

.under_sub_title{
    font-size: 20px;
    padding-top: 15px;
}

@media (max-width: 768px) {
    .under_mv{
        padding-top: 60px;
    }

    .under_mv .under_mv_img{
        width: 100%;
        height: 40vh;
        object-fit: cover;
        object-position: center;
    }

    .under_mv .under_title_wrap{
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        text-align: center;
    }

    .under_title{
        font-size: 3.6rem;
    }

    .under_sub_title{
        font-size: 16px;
        padding-top: 10px;
    }
}

@media (max-width: 768px) {

}

/*下層ページの共通コード*/
.underpage{
    background-color: #F9FDFF;
}

/*パンくずリスト共通*/
.breadcrumbs{
    font-family: 'PT Sans', 'Noto Sans JP',sans-serif;
    font-size: 1.6rem;
    padding-top: 20px;
}

.breadcrumbs a{
    cursor: pointer;
    transition: all .3s;
}

.breadcrumbs a:hover{
    opacity: 0.6;
}

@media (max-width: 768px) {
    .breadcrumbs {
        font-size: 1.2rem;
        padding-top: 10px;
    }
}

/*-パンくずリストのレイアウト-*/

  .breadcrumbs .breadcrumb li {
    display: inline-block;
    margin-right: 5px;
    font-size: 16px;
  }
  
  .breadcrumbs .breadcrumb li a {
    display: inline-block;
    text-decoration: none;
    color: #333;
    transition: .3s;
  }
  
  .breadcrumbs .breadcrumb li:not(:last-of-type):after {
    content: ">";
    margin-left: 3px;
  }
  
  @media(max-width: 599px) {
  
    .breadcrumbs .breadcrumb li {
      font-size: 12px;
    }
  }
  


/*ーーーーーーーーーーーheaderーーーーーーーーーーー*/
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: #fff;
    z-index: 20;
}

.header_wrap{
    display: flex;
    align-items: center;
    height: 100%;
}

.logo{
    width: 159px;
    height: auto;
    margin-left: 50px;
}

.logo a{
    transition: all .3s;
}

.logo a:hover{
    opacity: 0.6;
}

@media(max-width: 768px) {
    header{
        height: 60px;
    }

    .logo{
        width: 110px;
        height: auto;
        margin-left: 4%;
    }

    .logo img{
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
    }
}

.nav_wrap{
    display: flex;
    margin: 0 0 0 auto;
    align-items: center;
}

.nav_lists{
    display: flex;
}

.nav_lists > li:last-child{
    margin-right: 30px;
}

.nav_lists > li .main{
    margin: 0 10px;
    padding: 30px 10px;
    font-size: 1.6rem;
    position: relative;
}

.nav_lists > li .main::after{
    content: '';
    position: absolute;
    display: inline-block;
    top: 60px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: #131E80;
    transform: scale(0, 1);
    transform-origin: left top;
    transition : transform .3s;
}

.nav_lists li .main:hover::after{
    transform: scale(1, 1);
}

/*submenu*/
.nav_lists li{
    position: relative;
}

.nav_lists li .dropdown_lists{
    position: absolute;
    top: 50px;
    left: -50px;
    display: none;
    width: 208px;
    background-color: #fff;
}

.nav_lists li:hover .dropdown_lists{
    display: block;
    text-align: center;
}

.nav_lists li .dropdown_lists > li{
    display: block;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    transition: all .3s;
}

.nav_lists li .dropdown_lists > li::after{
    content: "";
    position: absolute;
    bottom: 0;
    left:0;
    border: 1px dotted #BCBCBC;
    width: 100%;
}

.nav_lists li .dropdown_lists > li:last-child:after{
    border: none;
}

.nav_lists li .dropdown_lists > li .sub{
    display: block;
    margin: initial;
    font-size: 1.6rem;
    transition: all .3s;
}

.nav_lists li .dropdown_lists  > li:hover{
    background-color: #F3F3F3;
}

.nav_lists li .dropdown_lists  > li:hover .sub{
   opacity: 0.6;
}

/*submenuここまで*/

.amazon{
    width: 120px;
    height: 90px;
    text-align: center;
    background-color: #131E80;
    transition: all 0.3s;
}

.amazon:hover{
    background-color: #EFF8FB;
}

.amazon svg{
    margin-top: 10px;
}

.amazon:hover g rect{
    fill: #131E80;
}

.amazon:hover path{
    stroke: #131E80;
}

.amazon p{
    color: #fff;
    font-size: 1.4rem;
}

.amazon:hover p{
    color: #131E80;
}

.sp-nav-wrapper{
    display: none;
}

@media (max-width: 768px){
    .nav_wrap{
        display: none;
    }
    .sp-nav-wrapper{
    display: block;
    }
}

/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
    position: absolute;
    top: 20px;
    right:3%;
    width: 30px;
    height: 40px;
    cursor: pointer;
    z-index: 300;
}
  
.hamburger__line {
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: #131E80;
    transition: all 0.5s;
}
  
.hamburger__line--1 {
    top: 0px;
}
  
.hamburger__line--2 {
    top: 10px;
}
  
.hamburger__line--3 {
    top: 20px;
}
  
/*ハンバーガーがクリックされたら*/
.open .hamburger__line {
    background-color: #131E80;
}

.open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 11px;
}
  
.open .hamburger__line--2 {
    opacity: 0;
}
  
.open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 11px;
}
  
/* sp-nav(ナビ)*/
.sp-nav {
    position: fixed;
    right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
    top: 0;
    width: 100%; /* 出てくるスライドメニューの幅 */
    height: 100vh;
    background-color: #fff;
    transition: all 0.5s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
    right: 0;
}
  
  
/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
}
  
/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
    opacity: 0.3;
    visibility: visible;
}

/*ハンバーガーmenuの中*/
.sp-nav-wrapper .sp-nav{
    text-align: center;
}

.sp-nav-wrapper .sp-nav .sp-nav-list{
    margin-top: 60px;
    text-align: left;
    color: #333;
    font-size: 1.6rem;
    padding: 0 4%;
}

.sp-nav-wrapper .sp-nav .sp-nav-list > li{
    position: relative;
}

.sp-nav-wrapper .sp-nav .sp-nav-list > li::after{
    content: "";
    position: absolute;
    bottom: 0;
    left:0;
    border: 1px dotted #BCBCBC;
    width: 100%;
}

.sp-nav-wrapper .sp-nav .sp-nav-list li.has_child{
    position: relative;
}

.sp-nav-wrapper .sp-nav .sp-nav-list li.has_child::before{
	content:'';
	position: absolute;
    right: 3%;
    top: 12px;
    width: 10px;
    height: 10px;
	border-top: 2px solid #333;
    border-right:2px solid #333;
    transform: rotate(135deg);
    transition: all .3s ease-in-out;
}

.sp-nav-wrapper .sp-nav .sp-nav-list li.has_child.open::before {
    top: 12px;
    transform: rotate(-45deg);
}

.sp-nav-wrapper .sp-nav .sp-nav-list .sp_dropdown{
    display: none;
}

.sp-nav-wrapper .sp-nav .sp_dropdown > li{
    position: relative;
}

.sp-nav-wrapper .sp-nav .sp_dropdown > li::after{
    content: "";
    position: absolute;
    bottom: 0;
    left:0;
    border: 1px dotted #BCBCBC;
    width: 100%;
}

.sp-nav-wrapper .sp-nav .sp_dropdown li:last-child:after{
    display: none;
}

.sp-nav-wrapper .sp-nav .sp-nav-list > li a{
    display: inline-block;
    /* width: 100%; */
    padding-top: 12px;
    padding-bottom: 12px;
    transition: all .3s;
}

.sp-nav-wrapper .sp-nav .sp-nav-list > li a:hover{
    opacity: 0.6;
}

.sp-nav-wrapper .sp-nav .sp-nav-list li.has_child{
    position: relative;
}

.sp-nav-wrapper .sp-nav .sp-nav-list .sp_dropdown > li a{
    padding: 13px 10px 13px 50px;
    width: 100%;
}

.amazon-link-btn::after,
.sns::after{
    display: none;
}

.amazon-link-btn{
    align-items: center;
}

.amazon-link-btn{
    text-align: center;
    margin: 30px auto 0 auto;
}

.amazon-link-btn a{
    display: flex;
    width: 90%;
    height: 50px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 1px solid #328CB9;
    border-radius: 25px;
    color: #328CB9;
    font-size: 1.6rem;
    padding: 8px 50px;
    align-items: center;
    transition: all 0.3s; 
    justify-content: center;
}

.amazon-link-btn a:hover{
    background: #328CB9;
    color: #fff;
}

.amazon-link-btn svg{
    width: 25px;
    height: auto;
    margin-right: 20px;
    vertical-align: middle;
}

.amazon-link-btn p{
    vertical-align: middle;
    margin-left: 10px;
}

.amazon-link-btn .cls-2{
    stroke: #328CB9;
}

.amazon-link-btn a:hover .cls-2{
    stroke: #fff;
}

.sp-nav .sns{
    text-align: center;
    padding-top: 30px;
}

.sp-nav .sns img{
    width: 20px;
    color:#328CB9;
}

.sp-nav .sns a{
    font-family: 'PT Sans', sans-serif;
    font-size: 1.6rem;
    color:#131E80;
}


/*ーーーーーーーーーーーfooterーーーーーーーーーーー*/
.footer{
    margin-top: 100px;
    background-color: #131E80;
    color: #fff;
    padding-top: 80px;
}

.footer_wrap{
    display: flex;
    justify-content: space-between;
    padding-bottom: 80px;
}

.logo_wrap .footer_logo a{
    transition: all .3s;
}

.logo_wrap .footer_logo a:hover{
    opacity: 0.6;
}

.logo_wrap h2{
    font-size: 1.6rem;
    padding-top: 20px;
}

.address_wrap .address_title{
    font-size: 1.4rem;
    padding-bottom: 20px;
}

.address_wrap .address{
    font-family: 'PT Sans', 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    padding-bottom: 20px;
}

.address_wrap .tel{
    font-family: 'PT Sans', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
}

.sns_wrap{
    text-align: center;
}

.sns_wrap p{
    font-size: 1.4rem;
    padding-bottom: 10px;
}

.insta_btn a{
    display: flex;
    width: 200px;
    height: 50px;
    border: 1px solid #fff;
    font-size: 1.4rem;
    padding: 12px 30px;
    align-items: center;
}

.insta_btn .insta_arrow{
    position: relative;
}

.insta_btn .insta_arrow::before{
    content: "";
    display: block;
    position: absolute;
    top: 23px;
    right: -30px;
    width: 45px;
    height: 1px;
    background: #fff;
    transition: all .3s;
}

.insta_btn .insta_arrow::after{
    content: "";
    display: block;
    position: absolute;
    top: 19px;
    right: -28px;
    height: 5px;
    border: 1px solid #fff;
    transform: skew(45deg);
    transition: all .3s;
}

.insta_btn .insta_arrow:hover::before{
    background: #fff;
    right: -40px;
}

.insta_btn .insta_arrow:hover::after{
    border: 1px solid #fff;
    right: -38px;
}


.insta_btn a img{
    margin-right: 10px;
}

.footer .copy{
    font-family: 'PT Sans', sans-serif;
    text-align: center;
    font-size: 1.2rem;
    padding-bottom: 20px;
}

@media(max-width: 768px) {
    .footer{
        margin-top: 40px;
        padding-top: 40px;
    }

    .footer_wrap{
        display: block;
        text-align: center;
        padding-bottom: 40px;
    }

    .logo_wrap{
        padding-bottom: 40px;
    }

    .logo_wrap .footer_logo{
        width: 126px;
        margin: 0 auto;
    }

    .logo_wrap .footer_logo img{
        width: 100%;
        height:auto;
        object-fit: cover;
        object-position: center;
    }

    .logo_wrap h2{
        font-size: 1.4rem;
        padding-top: 10px;
    }

    .address_wrap{
        padding-bottom: 40px;
    }

    .address_wrap .address_title {
        font-size: 1.4rem;
        padding-bottom: 10px;
    }

    .address_wrap .address{
        font-size: 1.4rem;
    }

    .sns_wrap{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sns_wrap p{
        font-size: 1.2rem;

    }
}



