@charset "UTF-8";
/* ===================================================================
CSS information
 file name  :  style.css
=================================================================== */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
/*------------------------------------
  common
  ------------------------------------*/
html,
body {
    width: 100%;
    color: #3e3e3e;
    letter-spacing: 0.1em;
    min-width: 1050px;
}
.contents a { color: #3e3e3e; transition: 0.1s }
.contents a:hover { opacity: 0.7; }
body {
    font-family: "Noto Sans JP","游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    box-sizing: border-box;
    letter-spacing: 0.05em;
}
input[type="text"] {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 1.4rem;
    padding: 9px 20px;
}
select {
    /*reset*/
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /*/reset*/
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.4rem;
    padding: 9px 25px 9px 20px;
    background: url(../img/arrow_bottom.png)no-repeat 90% center;
    background-size: 10px 6px;
}
select::-ms-expand {
    display: none;
}
/* ========= header ========= */
.header {
    background: #fff;
    padding: 5px 0 0;
    margin: 0 0 20px;
    position: relative;
    letter-spacing: 0.1em;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 10;
    top: 0;
}

.header:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 5px;
    /* background-image: linear-gradient(
	-45deg,
	#2381ca 25%,
	#da3138 25%,
	#da3138 50%,
	#2381ca 50%,
	#2381ca 75%,
	#da3138 75%,
	#da3138
    ); */
    background: url(../img/bg_tricolore.jpg)left bottom;
    background-size: 70px auto;
    background-attachment: fixed;
    /* filter: sepia(50%)brightness(140%); */
}
.header_inner {
    width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.header .logo {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.15em;
}
.header .logo span {
    font-size: 14px;
    display: block;
}
.header #gnav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.header #gnav li {
    font-size: 12px;
    text-align: center;
    position: relative;
}
.header #gnav li:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #70BECF;
    width: 100%;
    height: 0;
    border-radius: 100px;
    transition: 0.1s;
}
.header #gnav li:hover:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #70BECF;
    width: 100%;
    height: 3px;
    border-radius: 100px;
}
.header #gnav li a {
    display: block;
    padding: 25px 20px;
}
.header #gnav li span {
    display: block;
    font-size: 11px;
    font-weight: bold;
    margin: 2px 0 0;
}
.hamburger {
    display: none;
}
/* ========= contents ========= */
.contents {
    background: #FCF5F0;
    padding: 110px 0 20px;
}
.content {
    background: #fff;
    /* border: 1px solid #ddd; */
    width: 800px;
    padding: 40px 30px 60px;
    margin:  0 auto;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
}
.breadcrumb {
    display: flex;
}
.breadcrumb {
    display: flex;
    margin: 0 0 15px;
}
.breadcrumb li {
    font-size: 12px;
    color: #777;
}
.breadcrumb li:after {
    content: "＞";
    margin: 0 5px;
    font-size: 10px;
}
.breadcrumb li:last-child:after {
    content: none;
}
.breadcrumb a {
    color: #70BECF;
    text-decoration: underline;
}
.mv_top {
    position: relative;
}
.mv_top .mv_txt {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    font-size: 30px;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.08em;
    color: #fff;
    text-shadow:0px 0px 5px #09126b;
    margin: 0 auto;
}
.mv_top .btn {
    margin: 20px auto 50px;
}
.main_ttl {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0 0 20px;
    margin: 0 0 20px;
    border-bottom: 1px solid #ddd;
}
.sec_ttl {
    position: relative;
    font-size: 25px;
    margin: 0 0 20px 0;
    padding: 10px 0 10px 22px;
}
.sec_ttl::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    width: 6px;
    height: 100%;
    background: #70BECF;
}
.sub_ttl {
    font-size: 19px;
    margin: 0 0 20px;
}
.txt {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin: 0 0 20px;
}
b {
    font-size: 16px;
}
.txt_big {
    font-size: 18px;
}
.txt_list {
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 1.6; 
}
.ph {
    margin: 0 0 20px;
}
.ph img {
    max-width: 100%;
}
.cap_area .ph img {
    border: 1px solid #ddd;
}

.movie {
    text-align: center;
    margin: 0 0 20px;
}
.movie video {
    width: 100%;
    outline: none;
}
.menu {
    border: 1px solid #ddd;
    padding: 30px;
    margin: 0 0 40px;
}
.menu .ttl {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px;
}
.menu_list {
    font-size: 15px;
    line-height: 2.2;
}
.menu_list > li {
    padding: 0 0 10px;
    margin: 0 0 10px;
    border-bottom: 1px dotted #bbb;
}
.menu_list > li:last-child {
    padding: 0;
    margin: 0;
    border-bottom: none;
}
.child_menu {
    padding: 0 0 0 2em;
}
.bdr_box {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    margin: 0 0 20px;
}
.txt_list {
    padding: 0 0 0 1em;
}
.txt_list li {
    list-style: disc;
}
.font_bl{
    color: #70BECF;
    font-size: 13px;
    margin-left: 50px;
}
.esta_site a{
    color: #70BECF;
    text-decoration: underline;
}
.esta_site a:hover{
    text-decoration: underline;
}
.mb_50{
    margin-bottom: 50px;
}
p.indent {
    padding-left:1em;
    text-indent:-1em;
}
.red {
    color: #ea4e59;
}

.btn {
    text-align: center;
    margin: 50px 0 0;
}
.btn a {
    display: inline-block;
    padding: 20px 40px;
    background: #70BECF;
    border-radius: 40px;
    font-size:  16px;
    letter-spacing: 0.05em;
    color: #fff;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
    transition: .1s;
}
.anxiety_list {
    margin: 40px 0;
}
.anxiety_list li {
    font-size: 14px;
    margin: 0 0 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.anxiety_list li:nth-child(even) {
    flex-flow: row-reverse
}
.anxiety_list .icon {
    margin: 0 20px 0 0;
}
.anxiety_list li:nth-child(even) .icon {
    margin: 0 0 0 20px;
}
.anxiety_list img {
    width: 50px;
}
.anxiety_list p {
    border: 2px solid #555;
    border-radius: 20px;
    padding: 15px;
    position: relative;
}
.anxiety_list p:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -6px;
    z-index: 2;
}
.anxiety_list p:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -9px;
    z-index: 1;
}
.anxiety_list li:nth-child(odd) p:before {
    left: -12px;
    border: 6px solid transparent;
    border-right: 6px solid #FFF;
}
.anxiety_list li:nth-child(odd) p:after {
    left: -18px;
    border: 9px solid transparent;
    border-right: 9px solid #555;
}
.anxiety_list li:nth-child(even) p:before {
    right: -12px;
    border: 6px solid transparent;
    border-left: 6px solid #FFF;
}
.anxiety_list li:nth-child(even) p:after {
    right: -18px;
    border: 9px solid transparent;
    border-left: 9px solid #555;
}
.content_qa .ttl {
    font-size: 20px;
    font-weight: bold;
    margin: 50px 0 20px;
    letter-spacing: 0.05em;
}
.q_list {
    font-size: 14px;
    letter-spacing: 0.05em;
}
.q_list > li {
    margin: 0 0 20px;
}
.q_list > li:last-child {
    margin: 0;
}
.q_list > li ul {
    line-height: 1.4;
    margin: 15px 0;
}
.q_list > li ul li {
    margin: 0 0 8px;
}
.q_list > li ul li:last-child {
    margin: 0;
}
.q_list .q_box {
    background: #70BECF;
    color: #fff;
    padding: 15px;
    position: relative;
    transition: .1s;
}
.q_list .q_box:hover {
    cursor: pointer;
    opacity: .8;
}
.q_list .q_box:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 45%;
    right: 3%;
    margin-top: -3px;
    transition: 0.3s;
}
.q_box.active:after {
    top: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.q_list .q_txt,
.q_list .a_txt {
    position: relative;
    padding: 0 0 0 1.5em;
}
.q_list .a_txt {
    margin: 0 0 0 -1.5em;
}
.q_list .a_txt a {
    text-decoration: underline;
    color: #70BECF;
}
.q_list .q_txt:before,
.q_list .a_txt:before {
    position: absolute;
    left: 0;
}
.q_list .q_txt:before {
    content: "Q.";
}
.q_list .a_txt:before {
    content: "A.";
    color: #fe6665;
}
.q_list .a_box {
    margin: 15px 15px 0 35px;
    font-size: 14px;
    display: none;
}
.copyright {
    font-size: 12px;
    text-align: center;
    margin: 15px 0 0;
}
.anker {
    padding-top: 100px;
    margin-top: -100px;
}
@media screen and (min-width: 766px) {
    .header #gnav {
        display: flex!important;
    }
}
@media screen and (max-width: 765px) {
    html,
    body {
        min-width: 100%;
    }
    .header #gnav {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: #70BECF;
        z-index: 10;
        padding: 50px 0;
    }
    .header #gnav li a {
        color: #fff;
        padding: 15px;
    }
    .header_inner {
        width: 100%;
        padding: 8px 15px;
    }
    .header .logo {
        font-size: 15px;
    }
    .header .logo span {
        font-size: 10px;
        margin: 0 0 -2px;
    }
    .hamburger {
        display: inline-block;
        width: 30px;
        height: 22px;
        vertical-align: middle;
        position: relative;
        z-index: 100;
        margin: 0 -6px 0 0;
    }
    .hamburger span {
        position: absolute;
        right: 0;
        left: 0;
        height: 2px;/*線の太さ*/
        width: 18px;/*長さ*/
        border-radius: 3px;
        background: #555;
        display: block;
        cursor: pointer;
        margin: 0 auto;
        transition: all .4s;
    }
    .hamburger span:first-child {
       top: 4px;
    }
    .hamburger span:nth-child(2) {
        top: 11px;
    }
    .hamburger span:nth-child(3) {
        top: 18px;
    }
    .hamburger.active span {
        background: #fff;
    }
    .hamburger.active span:first-child {
        transform: translateY(7px) rotate(-45deg);
     }
     .hamburger.active span:nth-child(2) {
        opacity: 0;
     }
     .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(45deg);
     }
    .contents {
        background: #F7F7F7;
        padding: 50px 0 14px;
    }
    .content {
        width: auto;
        padding: 15px 15px 30px;
        margin: 15px;
    }
    .mv_top .mv_txt {
        font-size: 20px;
        top: 20px;
    }
    .mv_top .btn {
        margin: 20px 0 30px;
    }
    .main_ttl {
        font-size: 16px;
        padding: 0 0 10px;
    }
    .menu {
        padding: 15px;
        margin: 0 0 30px;
    }
    .bdr_box {
        padding: 15px;
    }
    .sec_ttl {
        font-size: 18px;
        padding: 5px 0 5px 15px;
        margin: 0 0 20px 0;
    }
    .sub_ttl {
        font-size: 16px;
    }
    .esta_site a{
        text-decoration: underline;
    }
    .child_menu {
        padding: 0 0 0 1em;
    }
    .menu .ttl {
        font-size: 18px;
    }
    .txt {
        font-size: 13px;
    }
    b {
        font-size: 14px;
    }
    .txt_big {
        font-size: 15px;
    }
    .menu_list {
        font-size: 13px;
        line-height: 1.8;
    }
    .txt_list {
        font-size: 13px;
        line-height: 1.5;
    }
    .font_bl {
        font-size: 12px;
        margin-left: 0;
    } 
    .anxiety_list {
        margin: 20px 0;
    }
    .anxiety_list li {
        font-size: 13px;
        justify-content: space-between;
    }
    .anxiety_list .icon,
    .anxiety_list li:nth-child(even) .icon {
        width: 15%;
        margin: 0;
    }
    .anxiety_list p {
        width: 80%;
        padding: 12px;
    }
    .content_qa .ttl {
        font-size: 16px;
        margin: 20px 0 10px;
    }
    .q_list > li {
        margin: 0 0 10px;
    }
    .q_list .q_box {
        padding: 10px 30px 10px 10px;
    }
    .q_list .a_box {
        margin: 10px 10px 0 28px;
        font-size: 12px;
    }
    .q_list .q_box:after {
        width: 6px;
        height: 6px;
        right: 5%;
    }
    .q_list {
        font-size: 12px;
    }
    .q_list > li ul {
        margin: 10px 0;
    }
    .q_list > li ul li {
        margin: 0 0 5px;
    }
    .btn {
        margin: 20px 0 0;
    }
    .btn a {
        display: block;
        padding: 10px;
        font-size: 14px;
    }
    .copyright {
        font-size: 10px;
        margin: 10px 0 0;
    }
    .anker {
        padding-top: 60px;
        margin-top: -60px;
    }
}