@charset "UTF-8";

/* 共通設定 */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

::before,
::after {
    box-sizing: inherit;
}

button {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    vertical-align: middle;
    text-align: inherit;
    font: inherit;
    -webkit-appearance: none;
    appearance: none;
}

html {
    overflow: auto;
    font-size: 10px;
    font-family: sans-serif;
    line-height: 1.15;
}

body {
    font-size: 16px;
    color: #333333;
    font-family: 'Noto Sans JP','Noto Serif JP', 'Zen Old Mincho', 'Cinzel', serif, "Noto Sans JP", "Yu Gothic",
        "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ",
        sans-serif;
    font-weight: 400;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    width: 100%;
    background-color: #fff;
    letter-spacing: 0.08rem;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}

li {
    list-style-type: none;
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4 {
    margin: 0;
}

a {
    text-decoration: none;
    color: #000;
    transition: 1s;
}

a:hover {
    /* filter: brightness(1.5); */
    transition: 1s;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    align-items: center;
}

.bold {
    font-weight: bold;
}

.wrapper {
    width: 100%;
    max-width: 1245px;
    margin: 0 auto;
    padding: 0 15px;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.none {
    display: none;
}

.c-ttl {
    font-size: 40px;
}


/* header */
h1 {
    z-index: 4;
    padding: 0 25px;
}

.header {
    position: absolute;
    width: 100%;
}

.gnav .header-nav {
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    height: 90px;
    padding: 0 15px;
    max-width: 820px;
    margin: 0 auto;
}

.header-wrap {
    justify-content: space-between;
    align-items: center;
    height: 110px;
    background: #fff;

    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

h1 {
    padding-top: 10px;
}

.gnav {
    width: 100%;
}

.burger_gnav {
    display: none;
}

.header-wrap-item_right {
    width: 100%;
}

.header-nav-item {
    width: calc((100% - 5px) / 5);
    text-align: center;
    border-left: solid 1px;
    padding: 0 5px;
}

.header-nav-item:last-child {
    border-right: solid 1px;
}

.logo {
    max-width: 300px;
}

.nav-name-en {
    font-size: 18px;
}

.nav-name-ja {
    font-size: 22px;
    line-height: 1.5em;
}

.top-mv .sp {
    display: none;
}

.mv-pc {
    width: 100%;
}

.burger_gnav {
    display: block;
}

.gnav .header-nav {
    display: none;
}

/* ハンバーガーメニュー */
.burger_header-nav {
    width: 100%;
    height: 100vh;
    margin-left: auto;
    position: fixed;
    right: -100%;
    /* メニューを縦に */
    display: flex;
    flex-direction: column;
    color: #efefef;
    background-color: rgba(252, 233, 219, 0.95);
    transition: .3s;
    justify-content: center;
    top: 0;
    /* padding: 0% 0 25% 0; */
    z-index: 5;
}

.burger_header-nav li {
    text-align: center;
}

.burger_header-nav-item {
    padding: 8px 1%;
}

.btn {
    /* ボタンの配置位置  */
    position: fixed;
    top: 0;
    right: 0px;
    /* ボタンの大きさ  */
    width: 95px;
    height: 105px;
    /* 最前面に */
    z-index: 1000;
    /* わかりやすいように */
}

/***** 真ん中のバーガー線 *****/
.btn-line {
    display: block;
    position: relative;
    /* バーガー線の位置基準として設定 */
    width: 43px;
    /* 線の長さと高さ */
    height: 2px;
    background-color: #000;
    /* バーガー線の色 */
    transition: .2s;
    left: 24px;
    z-index: 10;
}

/****** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 90%;
    background-color: #000;
    transition: .5s;
}

.btn-line::before {
    /* 上の線の位置 */
    transform: translateY(-12px);
    height: 2px;
}

.btn-line::after {
    /* 下の線の位置 */
    transform: translateY(12px);
    height: 2px;
}

/***** メニューオープン時 *****/
.btn-line.open {
    background-color: transparent;
    /* 真ん中の線を透明に */
    z-index: 10;
}

.btn-line.open::before,
.btn-line.open::after {
    content: "";
    background-color: #000;
    /* 上下の線の色を変える */
    transition: .2s;
}

.btn-line.open::before {
    transform: rotate(45deg);
    /* 上の線を傾ける */
}

.btn-line.open::after {
    transform: rotate(-45deg);
    /* 下の線を傾ける */
}

.burger_header-nav.open {
    right: 0;
    z-index: 5;
}

.btn:hover {
    cursor: pointer;
}

.burger_header-nav-item h1 {
    padding-bottom: 1rem;
}

.nav-name-ja {
    color: #ED9260;
    font-weight: 600;
}

/* ここまで　ハンバーガーメニュー */

.c-center {
    text-align: center;
    margin-bottom: 30px;
}

.c-content {
    margin-top: 120px;
    padding: 0 15px;
}

.w-710 {
    width: 100%;
    max-width: 710px;
    margin: 0 auto;
    /* padding: 0 10px; */
}


/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area .mb{
    margin: 40px 0;
}

.accordion-area section {
	border: 1px solid #EB6458;
    border-radius: 10px;
    background: #FFFFFF;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-weight: normal;
    padding: 4% 50px 4% 4%;
    transition: all .5s ease;
    border-radius: 8px;
    background: #FCE9DB;
    font-size: 24px;
    font-weight: 600;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #303030;
    
}
.title::before{
    top:48%;
    right: 15px;
    transform: rotate(133deg);
    
}
.title::after{    
    top: 48%;
    right: 25px;
    transform: rotate(45deg);

}
/*　closeというクラスがついたら形状変化　*/
.c-content:not(.qa) .title.close{
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom: 1px dotted #EB6458;
}
.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    /* background: #f3f3f3; */
	/* margin:0 3% 3% 3%; */
    padding: 3%;
    padding-left: 4%;
    font-size: 24px;
}

.sub-main {
    font-size: 21px;
}

.mb-10 {
    margin-bottom: 10px;
}
.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.things-ttl {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 30px;
}

.things-ttl::after {
    content: "";
    display: block;
    background-color: #3EB4C0;
    width: 17px;
    height: 17px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 10px;
}

table th {
    background-color: #EEEEEE;
    width: 30%;
}

table th,
table td {
    padding: 30px 25px;
    border: solid 1px #303030;
    font-size: 24px;
    text-align: left;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
}

.sub-main li {
    margin-bottom: 10px;
}

.pdf a {
    color: #ED9260;
    border-bottom: solid 1px;
    line-height: 2em;
}

.bg-orange {
    background: url(./img/bg-orange.png);
    padding-top: 80px;
    padding-bottom: 85px;
}
.bg-orange2 {
    background: #FCE9DB;
    padding-top: 80px;
    padding-bottom: 85px;
}

.bg-blue .c-center {
    margin-bottom: 50px;
}

.box-main {
    font-size: 24px;
}

.box01{
    border: 1px solid #EB6458;
    border-radius: 17px;
    background: #fff;
}
.box01__hdg{
    background: #ED9260;
    color: #fff;
    padding: 10px 40px;
    border-radius: 17px 17px 0 0;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    min-height: 118px;
}
.box01__contents{
    padding: 30px 40px;
    font-size: 24px;
}

.hdg-type01{
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 45px;
}

.flow-list{
     > li{
        border: 1px solid #EB6458;
        border-radius: 17px;
        background: #fff;
        padding: 35px 20px 40px;
        position: relative;
        text-align: center;
        &:nth-of-type(n+2){
            margin-top: 70px;
            &:before{
                content: "";
                width: 0;
                height: 0;
                border-style: solid;
                border-right: 20px solid transparent;
                border-left: 20px solid transparent;
                border-top: 34px solid #eb6458;
                border-bottom: 0;
                position: absolute;
                top: -52px;
                left: calc(50% - 20px);
            }
        }
    }
}

.app-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(./img/ico_external@2x.png) no-repeat top 10px right 10px / 15px 15px;
    background-color: #fff;
    border: 1px solid #C5CFCB;
    border-radius: 9px;
    min-height: 150px;
}

.mt-10{
    margin-top: 10px;
}
.mt-25{
    margin-top: 25px;
}

.mt-30{
    margin-top: 30px;
}

.indent--1{
    text-indent: -1em;
    padding-left: 1em;
}

.fs-16{
    font-size: 16px;
}

.contact__inner {
    background-color: #fff;
    padding: 50px 35px;
    text-align: center;
    margin: 0 auto;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

.contact__content {
    padding: 0 25px;
}

.contact .sec__text {
    letter-spacing: 2px;
}

.tel {
    margin: 0 15px 25px;
    line-height: 1;
}

.tel__box {
    justify-content: center;
    margin-top: 30px;
}

.tel__link {
    display: block;
    position: relative;
    padding-left: 47px;
}

.tel__link::before {
    position: absolute;
    content: "";
    background-image: url(./img/tel.png);
    background-size: contain;
    width: 41px;
    height: 23px;
    top: 2px;
    left: 0;
}

.fax__link::before {
    background-image: url(./img/fax.png);
}

.mail__box {
    justify-content: center;
    margin-top: 10px;
}

.mail {
    margin: 0 15px 25px;
    line-height: 1;
}

.mail__link {
    display: block;
    position: relative;
    padding-left: 47px;
}

.mail__link::before {
    position: absolute;
    content: "";
    background-image: url(./img/mail.png);
    background-size: contain;
    width: 52px;
    height: 22px;
    top: 2px;
    left: 0;
}

.q .bb{
    color: #ED9260;
}

@media(max-width: 786px) {
    .mail__link::before {
        width: 41px;
    }

}

.sec_03 .c-center {
    margin-bottom: 45px;
}

.bg-contact {
    margin-top: 0;
    background-image: url(img/bg-contact.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 85px 30px;
}

.bg-contact .w-710 {
    background: #FFFFFF;
}

.bg-contact .c-center {
    padding: 50px 0;
}

.w-630 {
    max-width: 630px;
    margin: 0 auto;
    padding: 0 40px;
    padding-bottom: 80px;
}

.contact__content {
    font-size: 24px;
}

footer {
    padding: 30px 15px 115px;
}

.footer-flex {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.footer-right a {
    font-size: 24px;
    color: #ED9260;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
}

small {
    color: #303030;
    font-size: 21px;
}

.bg-blue table td {
    background: #FFFFFF;
}

.top-mv {
    margin-top: 110px;
}

.bb {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.post {
    position: relative;
}

.post::after {
    content: "";
    display: block;
    background-image: url(img/post.png);
    background-repeat: no-repeat;
    position: absolute;
    width: 88px;
    height: 135px;
    right: 0;
    bottom: 0;
}

.post li {
    padding-right: 135px;
}

li.pr-none {
    padding-right: 0;
}

.qa .title {
    background: #FFFFFF;
    color: #303030;
    margin-left: 3rem;
}

.qa .q {
    position: relative;
}

.qa .q::before {
    content: "";
    display: block;
    background-image: url(img/q.png);
    background-repeat: no-repeat;
    width: 23px;
    height: 25px;
    position: absolute;
    left: 22px;
    top: 36px;
    z-index: 2;
}

.qa .box-main {
    position: relative;
    margin-left: 3rem;
}

.qa .box-main::before {
    content: "";
    display: block;
    background-image: url(img/a.png);
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    position: absolute;
    left: -34px;
    top: 10px;

}

.qa .title::before, .qa .title::after {
    background: #303030;
}

.qa .box {
    border-top: dotted 2px #BFBFBF; 
}

.link a {
    border: solid 4px #ED9260;
    border-radius: 19px;
    width: 100%;
    display: block;
    padding: 20px;
    margin: 20px auto;
    font-size: 23px;
    padding: 30px;

    position: relative;
}

.link a::after {
    content: "\f08e";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 18px;
    right: 45px;
    font-size: 14px;
}

.link {
    width: 100%;
    text-align: center;
    padding: 0px 10px;
}

.mb-70 {
    margin-bottom: 70px;
}
.mb-80 {
    margin-bottom: 80px;
}

.va-baseline {
    vertical-align: baseline;
}

.qa .accordion-area section {
    border: none;
}

li.pr-0 {
    padding-right: 0;
}

.anchor-link{
    li{
        a{
            display: block;
            background: #FCE9DB;
            border-radius: 10px;
            padding: 20px 50px 20px 30px;
            font-size: 24px;
            position: relative;
            &::before,
            &::after{
                position: absolute;
                content:'';
                width: 8px;
                height: 2px;
                background-color: #303030;
                
            }
            &::before{
                top:48%;
                right: 20px;
                transform: rotate(133deg);
                
            }
            &::after{    
                top: 48%;
                right: 25px;
                transform: rotate(45deg);

            }
        }
        &:nth-of-type(n+2){
            margin-top: 20px;
        }
    }
}




/* レスポンシブ */
/* ------------------------------------ */
@media screen and (max-width: 1260px) {}

/* ⇑ 1260px ⇑ */

@media screen and (max-width: 1125px) {}

/* ⇑ 1125px ⇑ */

/* ↓　////////レスポンシブ（基本） ////////// ↓ */
@media screen and (max-width: 1024px) {

    
}

/* ⇑ 1024px ⇑ */

@media screen and (max-width: 900px) {}

/* ⇑ 900px ⇑ */


/* ブレークポイント基本　タブレット */
@media screen and (max-width: 768px) {
    .header-wrap {
        height: 65px;
    }

    .header-wrap-item h1 {
        padding-top: 0;
    }

    .header-wrap-item h1 img {
        max-width: 130px;
    }

    .btn {
        width: 80px;
        height: 70px;
    }

    /* .burger_header-nav {
        padding-top: 65px;
    } */

    .top-mv {
        margin-top: 65px;
    }
}

/* ⇑ 768px ⇑ */

@media screen and (max-width: 690px) {}

/* ⇑ 690px ⇑ */

@media screen and (max-width: 660px) {}

/* ⇑ 660px ⇑ */

@media screen and (max-width: 550px) {
    .title {
        font-size: 23px;
    }

    .box-main {
        font-size: 21px;
    }

    table th, table td {
        padding: 25px 15px;
        font-size: 18px;
    }

    .contact__content {
        font-size: 17px;
    }

    .w-630 {
        padding: 0 15px;
        padding-bottom: 40px;
    }

    .bg-contact {
        padding: 50px 20px;
    }

    .footer-flex {
        display: block;
        text-align: center;
    }

    .footer-left {
        margin-bottom: 30px;
    }

    .qa .q::before {
        top: 23px;
    }

    .link a::after {
        bottom: 35px;
        right: 30px;
        top: unset;
    }
}

/* ⇑ 550px ⇑ */

@media screen and (max-width: 410px) {
    table th, table td {
        padding: 20px 10px;
    }
    table th {
        width: 33%;
    }

    .post::after {
        width: 55px;
    height: 86px;
    right: 0;
    bottom: 0;
    background-size: 100%;
    }

    .post li {
        padding-right: 57px;
    }

    li.pr-0 {
        padding-right: 0;
    }

    .qa .box-main::before {
        left: -37px;
    }
    

    
}

/* ⇑ 410px ⇑ */