@charset "utf-8";


/*///////////////////////////////
	フォント
///////////////////////////////*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@1,100;1,200;1,300;1,500;1,600;1,700;1,800;1,900&display=swap');


/*///////////////////////////////
	共通パーツ
///////////////////////////////*/
body {
    margin:0px;
	padding:0px;
	background-color: #fff;
	color:#000;
    font-family: 'Noto Sans JP', sans-serif;
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
    font-weight: 600;
}
@media (max-width: 750px) {
    body{
        font-size: 90%;
        
    } 
    
}

.inner { 
    display:block; 
    padding:0 100px;
    max-width: 920px;
    margin: auto;
}
@media (max-width: 750px) {
    .inner {
        padding: 0 20px;
        max-width: 100%;
    }
}

ul{
    padding-left: 0;
}

ol, ul {
  list-style-type: none;
}

img{
    width: 100%;
    height: auto;
    margin: auto;
    text-align: center;
}

a {
    display: block;
    text-decoration: none;
    color: #000;
}

.hover_move:hover{
    opacity: 0.5;
}

.next_link a{
    color: #32AA1E;
}

span a{
    display: inline;
}

section,
.contact{
    margin-top: 12px;
    padding: 50px 0;
}
@media (max-width: 750px) {
}


h1{
    
}

h2 span{
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h2{   
    
}

h3 {
    margin: 0;
    text-align: center;
    margin-bottom: 30px;
    font-size: 140%;
}

p {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.8em;
    letter-spacing: 0.2em;
    font-family: 'Noto Sans JP', sans-serif;
}
@media (max-width: 750px) {
    p{
        line-height: 1.5em;
    } 
    
}

.pc_vis{
    display:block;
}
@media (max-width: 750px) {
    .pc_vis{
        display: none;
    } 
}

.sp_vis{
    display: none;
}
@media (max-width: 750px) {
    .sp_vis{
        display: block;
    } 
    
}

.boldFont{
    font-weight: 900;
}

.blcr{
    color: #0086D1;
}

.title{
    width: 40%;
    margin:20px auto;
    max-width: 250px;
}

.caution{
    font-size: 80%;
    letter-spacing: 0.2em;
}
@media (max-width: 750px) {
    .caution{
        font-size: 75%;
    }   
}

#move_bg,
#move_bg_contents,
#move_bg_introduction,
#move_bg_question{
    width: 100%;
    position: relative;
    overflow: hidden;
}

#move_bg_img,
#move_bg_contents_img,
#move_bg_introduction_img,
#move_bg_question_img{
    position: absolute;
    z-index: -5;
    top:200px;
}

/* fadeUp */

.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}

/* 三角やじるし　*/
.triangle::before {
    position: absolute;
    top: 0px;
    right: 0px;
    display: block;
    width: 10px;
    height: 10px;
    margin: auto;
    content: '';
    transform: rotate(45deg);
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}

.triangle_after::after{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 8px; /* 文字との間隔 */
    transform: rotate(45deg);
    border-top: 3px solid #32AA1E;
    border-right: 3px solid #32AA1E;
}
@media (max-width: 750px) {
    
}

.position_base{
    position: relative;
}

/* 湾曲背景　*/
.curved{
    position: relative;
    overflow: visible; /* はみ出す部分も表示 */
    margin-top: 270px;
}

.curved::before{
    content: "";
    position: absolute;
    left: 0;
    top: -144px;
    width: 100%;
    height: 150px; /* カーブの高さを調整 */
    clip-path: ellipse(75% 100% at 50% 100%);
    z-index: 0;
}

.curved::after{
    content: "";
    position: absolute;
    left: 0;
    top: -150px;
    width: 100%;
    height: 150px;
    clip-path: ellipse(75% 100% at 50% 100%);
    z-index: -1;
    pointer-events: none;
    background: #000;
}

.worning {
  position: relative;
  padding-left: 1.1em; /* テキスト全体を少し右にずらす */
}

.asterisk {
  position: absolute;
  left: 0; /* ※ を一文字前に出す */
}





/*///////////////////////////////
	header
///////////////////////////////*/

.navFlex{
    display: flex;
    position: fixed;
    width: 100%;
    padding: 10px 15px;
    top:0;
    background-color: #32AA1E;
    z-index: 9999999;
    justify-content: space-between;
}

 /*** ヘッダーロゴ ***/
.header_logo{
    width: 106px;
}
@media (max-width: 750px) {
    .header_logo{
        width: 95px;
        padding-top: 5px;
    }   
    
    
}



 /*** ヘッダーお問合せ ***/
.header_btn {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #000;
    padding: 8px 22px 0px;
    display: block;
    border:#000 solid 3px ;
    border-radius: 9999px;
    text-align: center;
    position: relative;
    z-index: 2;
    will-change: transform, filter;
    transform-style: preserve-3d;
    transition: all .3s ease-out;
    margin-top: 3px;
    margin-right: 20px;
}
@media (max-width: 750px) {
    .header_btn {
        font-size: 13px;
        letter-spacing: -0.01em;
        padding: 3px 16px 0px;
        margin-top: 3px;
        margin-right: 0px;
        line-height: 1.1em;
        
    }
}


.header_btn::before {
    content: "";
    height: 40px;
    display: inline-block;
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 5px;
    z-index: -1;
    border-radius: 9999px;
    opacity: 0;
    transform-style: preserve-3d;
    transition: all .3s ease-out;
}

.fixed_btn_first {
    background: #F39800;
    margin-right: 8px;
}

.fixed_btn_second {
    background: #FFFF00;
    padding:8px 14px 0px;
}

.header_btn:hover {
    transform: scale(1.04);
}





 /*** ナビゲーション ***/
.right_menu{
    display: flex;
    margin-right: 60px;
}

nav{
    padding: 0;
}
    
.navIn{
    display: none;
}  

/* ハンバーガーボタンのデザイン */
header {
    position: relative;
}

.drawer__button,
.drawer__nav{
    display:block;
}
    
.drawer__button {
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 9999999999999; /* メニューを開いている時もクリックできるよう設定 */
    margin-right: 8px;
    right: 0;
    position: fixed;
    top: 5px;
    padding-top: 12px;
}

/* ハンバーガーボタン内の線 */
.drawer__button > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.8rem;
    height: 2.5px;
    background-color: #fff;
    transform: translateX(-50%);
    border-radius: 1.5rem;
}

.drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 0.5rem));
    transition: transform 0.3s ease;
}

.drawer__button > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.drawer__button > span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 0.5rem));
    transition: transform 0.3s ease;
}

.drawer__button .menu{
    font-size: 80%;
    background-color: transparent;
    transform: translate(-50%, calc(-50% + 1rem));
    transition: transform 0.3s ease;
    width: 4rem;
    text-align: center;
    color: #fff;
}

/* 展開時のデザイン */
.drawer__button.active > span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
   
}

.drawer__button.active > span:nth-child(2) {
    opacity: 0;
}

.drawer__button.active > span:nth-child(3){
    transform: translate(-50%, -50%) rotate(45deg);
    
}

/* メニューのデザイン */
.drawer__nav {
    position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
}

.drawer__nav.active {
    opacity: 1;
    visibility: visible;
}

.drawer__nav__inner {
    position: relative;
    z-index: 99999;
    width: 50%;
    height: 100%;
    background:#32AA1E;
    margin: 0 0 0 auto;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 800px;
}
@media (max-width: 750px) {
    .drawer__nav__inner{
        width: 100%;
    }   
}

.drawer__nav.active .drawer__nav__inner {
    transform: translateX(0);
}

.drawer__nav__menu {
    list-style: none;
    margin-top: 27px;
}
@media (max-width: 750px) {
    .drawer__nav__menu{
        padding-top: 15px;
    }   
}

.drawer__nav__link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}
    
.drawer__nav  .header_logo{
    margin: auto
}

.drawer__nav__item{
    position: relative;
    border-bottom: solid 2px #fff;
    margin-top:20px;
    padding-bottom: 18px;
}
.nav_in_inner{
    padding-top: 70px;
    padding-right:60px;
    padding-left:80px;
}

.drawer__nav__item::before{
    top:8px;
}

.drawer__nav__item:hover{
    opacity: 0.3;
}

.drawer__nav__item span{
    font-size: 55%;
}

.nav_in_inner .header_btn{
    margin-right: 0;
    padding: 11px 20px 11px;
    font-size: 15px;
}

.nav_in_inner .fixed_btn_first{
    margin-top: 60px;
}

.nav_in_inner .fixed_btn_second{
    margin-top: 15px;
}

.nav_top{
    display: flex;
    color: #fff;
    font-size: 30px;
    letter-spacing: 0.2em;
    align-items: center;
    justify-content: space-between;
}

.nav_top img{
    width: 110px;
}

@media (max-width: 750px) {
    .drawer__button {
        margin-right:0px;
    }
    
    .navFlex {
        padding: 10px 4px;
    }
    
    .fixed_btn_second {
        padding: 4px 14px 2px;
    }
    
    .right_menu {
        margin-right: 51px;
        
    }
    
    .fixed_btn_first {
        margin-right: 4px;
    }
    
    .nav_in_inner {
        padding-top: 50px;
        padding-right: 30px;
        padding-left: 20px;
    }
    
    .nav_top img {
        width: 89px;
    }
    
    .nav_top {
        font-size: 25px;
    }
    
}


/* pop */

.bottom_fixed_flex_pc{
    display: block;
}

.bottom_fixed_flex{
    position: fixed;
    z-index: 2;
    width: 156px;
    bottom: 20px;
    left: 19px;
}

/* 背景オーバーレイ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* ポップアップ本体 */
.popup {
    background: white;
    width: 653px;
    padding: 20px;
    position: relative;
    text-align: left;
    font-size: 20px;
    font-weight: 900;
    color: #000;
    max-height: 80vh; /* 高さ制限 */
    padding-top: 56px;
}

.popup_in a {
    width: 60%;
    margin:10px auto;
    
}

.popup_write{
    line-height: 1.7em;
}

/* 閉じるボタン（はみ出す） */
.close-btn {
    position: absolute;
    top: -10px;
    right: 1px;
    z-index: 1000;
    font-size: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pop img{
   cursor:pointer;
}
.popup .button{
    display: flex;
    justify-content: center; /* 中央揃え */
    align-items: center; /* 高さの中央揃え（必要なら） */
    margin: auto; /* 横方向の中央揃え */
    width: fit-content; /* 必要な幅だけにする */
}
@media (max-width: 760px) {
    .popup {
        width: 76%;
    }
    
    .popup_in a {
        width: 79%;
        margin: 10px auto;
    }

    .bottom_fixed .bottom_fixed_flex_sp{
        display: flex;
        width: 80%;
    }

    .bottom_fixed_flex {
        position: fixed;
        z-index: 2;
        width: 156px;
        bottom: 20px;
        left: 7px;
    }
    
    .bottom_fixed_flex_pc{
        display: none;
    }

}





/*///////////////////////////////
	main
///////////////////////////////*/

/*** mv ***/
.mv{
    margin-top: 67px;
}


/*** top_content ***/
.top_content{
    text-align: center;
    padding: 40px;
}

.top_01{
    width: 1000px;
}

.top_02{
    width: 900px;
}


/*** basic ***/
.basic{
    text-align: center;
}

.basic_top{
    width:900px;
}


/* basic_green */
.basic_green {
    position: relative;
    background: #32AA1E;
    color: #fff;
}

.basic_blue{
    position: relative;
    background: #2E90FF;
    color: #fff;
}

.basic_green::before {
    background: #32AA1E;
}

.basic_blue::before {
    background: #2E90FF;
}

.basic_green_top {
    position: absolute;
    top: -255px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1; /* 画像を前面に */
    width: 800px;
}

.basic_green_write{
    
}

.basic_green_2{
    width: 800px;
    margin-top: 272px;
} 

.basic_green_flex{
    display: flex;
    flex-wrap: wrap;
    max-width: 960px;
    margin:40px auto 30px;
}

.basic_green_flex_in{
    width: 50%;
    margin-top: 15px;
}

.basic_green_flex_in p{
    margin: 0;
}

.basic_green_flex_in img{
    width: 90%;
}

.basic_green_flex_name{
    font-size: 27px;
    padding-left: 5px;
    letter-spacing: 0.15em;
    line-height: 1.4em;
}

.basic_green_flex_in:last-child {
    margin: 15px auto 0 auto;
    width: 50%;
    text-align: center;
}

.basic_green_flex_in .sweets_character{
    position: absolute;
    width: 146px;
    top: -50px;
    right: -52px;
}

.basic_green_flex_in .curry_character{
    position: absolute;
    width: 160px;
    top: 35px;
    right: -114px;
}

.lineup{
    margin-top: 58px;
}

.lineup_top{
    width: 840px;
}

.lineup_in{
    margin: auto;
    background: #FFEBC9;
    border-radius: 20px;
    color: #7F4F21;
    padding: 26px;
}

.lineup_flex{
    display: flex;
    text-align: left;
}

.lineup_flex_right{
    width: 60%;
}

.lineup_flex_left{
    width: 38%;
    margin: 0;
    height: auto;
    object-fit: cover;
    padding-right: 30px;
}

.lineup_flex_second .lineup_flex_right{
    padding-top: 5px;
}

.lineup_name{
    font-size: 28px;
    font-weight: 800;
}

.lineup_name div{
    display: flex;
    
}

.lineup_name span{
    font-size: 16px;
    font-weight: 600;
}

.lineup_name p{
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.next_link{
    font-size: 26px;
    font-weight: 600;
    color: #32AA1E;
    display: inline-flex;
    align-items: center;
    padding: 6px 0;
}

.basic_blue .point_flex_left{
    width: 98%;
}

.lineup_flex_first .next_link{
    padding-bottom: 10px;
}

.next_link::after{
    width: 18px;
    height: 18px;
    margin-top: 5px;
    margin-left: 1px;
}

.lineup_flex_right p{
    margin: 0;
}

.lineup_flex_right .lineup_write{
    line-height: 1.45em;
    margin-top: 8px;
}

.lineup_name div{
    letter-spacing: 0.15em;
}

/* 下線を文字部分だけに */
.next_link span {
    text-decoration: underline;
    text-decoration-thickness: 2px; /* 下線の太さを調整 */
    text-underline-offset: 5px; /* 下線と文字の間隔 */
}

.worning{
    font-weight: 400;
    line-height: 1.45em;
}

.lineup_flex_first{
    border-bottom:#7F4F21 2.5px solid; 
    padding-bottom: 25px;
}

.lineup_flex_first .lineup_flex_left{
    padding-top: 14px;
}


.lineup_flex_second{
    margin-top: 25px;
}

.lineup_others{
    text-align: left;
    margin: auto;
    max-width: 782px;
    margin-top: 40px;
}

.others_title{
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.lineup_others p{
    margin:3px 0;
}

.lineup_character{
    position: absolute;
    z-index: 1;
    width: 72px;
    bottom: -12px;
    left: -22px;
}

.lineup_character_second{
    right: 20px;
    left: auto;
}

.qa-list{
    text-align:left;
    margin-top: 50px;
}
@media screen and (max-width: 750px) {
	.qa-list{
        margin:20px 0px 0px;
    }
}

.qa-list dl {
    position: relative;
    margin: 20px 0;
    cursor: pointer;
}
@media screen and (max-width: 750px) {
	.qa-list dl{
        margin:0px 0px 20px 0;
    }
}


.qa-list dl:last-child {
    margin-bottom: 30px;
}

.qa-list p{
    text-align: left;
    letter-spacing: 0.2em;
}

.qa-list dl::before {
    position: absolute;
    z-index: 1;
    top: 30px;
    right: 35px;
    display: block;
    width: 20px;
    height: 20px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 3px solid #00913A;
    border-right: 3px solid #00913A;
}
@media screen and (max-width: 750px) {
	.qa-list dl::before {
        top: 16px;
        right: 17px;
        width: 12px;
        height: 12px;
    }
    
    .qa-list .open::before {
        top: 25px;
    }
    
}
.qa-list .open::before {
    transform: rotate(-45deg);
    top: 37px;
}
.qa-list dl dt {
    position: relative;
    color: #00913A;
    margin: 0;
    padding: 20px 20px 20px 30px;
    font-weight: 700;
    font-size: 24px;
    background:#D9E021;  
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    letter-spacing: 0.2em;
    border: solid #00913A 4px;
}
@media screen and (max-width: 750px) {
	.qa-list dl dt{
    }
}
@media screen and (max-width: 575px) {
	.qa-list dl dt{

    }
}
@media screen and (max-width: 380px) {
	.qa-list dl dt{

    }
}

.qa-list .open{
    border-radius: 20px;
}

.qa-list .open dt{
   
}



.qa-list dl dd {
    position: relative;
    display: none;
    height: auto;
    margin-left: 0;
    background: #fff;
    color: #000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border: solid #00913A 4px;
    border-top: none;
    padding: 50px 70px 40px;
}
@media screen and (max-width: 750px) {
	.qa-list dl dt {
        padding: 9px 9px 9px 19px;
        font-size: 18px;
        letter-spacing: 0.05em;
    }
}

.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}

.qa-list normalbutton a{
    text-decoration: none;
}

.qa-list dl dd .in_worning{
    font-weight: 600;
    padding-left: 3.4em;
    margin: 0 0 0;
}

.in_worning .asterisk {
    position: absolute;
    left: 33px;
}

@media screen and (max-width: 750px) {
    .qa-list dl dd .in_worning{
        padding-left: 3.4em;
    }

    .in_worning .asterisk {
        left: 28px;
    }
    
}

.qa img{
    width: 2%;
    position: absolute;
    top:17px;
}
@media screen and (max-width: 750px) {
    .qa img{
        width:15px;
        top:12px;
    }
    
}

.qa .arrow{
    width: 13px;
    position:static;
    padding-right: 3px;
}
@media screen and (max-width: 750px) {
    .qa .arrow{
        width:10px;
    }
    
}

.qa .position_base{
    padding-left: 1.1em;
    margin: 0;
}

.qa .position_base_number{
    padding-left: 2.2em;
    margin: 0;
}

.greencolor{
    color:#32AA1E ;
}

.qa_title{
    font-size: 23px;
    text-align: center;
}


.point_flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.point_worning{
    background: #fff;
    padding: 20px 20px 20px;
    color: #000;
    text-align: left;
    border-radius: 20px;
}

.point_point{
    color: #00A0E9;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    display: inline;
}

.point{
    padding-bottom: 100px;
}


/* area */
.area{
    padding-bottom: 100px;
    padding-top:50px;
}

.area .map{
    max-width: 600px;
    margin: auto;
}

.area .character{
    position: absolute;
    bottom: 40px;
    left: 0;
    width:120px;
}

.map_write{
    text-align: left;
    margin-top: 20px;
    margin-bottom: 40px;
}

.map_write p{
    margin: 0;
    padding-left: 0;
}

.area .others_title{
    font-weight: 600;
}

.qa_q{
    text-align: left;
    color: #32AA1E;
    position: relative;
}


.qa_q::before {
    content: '';
    font-size: 0; /* テキストを消す */
    line-height: 1;
    position: absolute;
    top: -2px;
    left: -3px;
    width: 40px; /* 画像サイズに合わせて調整 */
    height: 40px; /* 画像サイズに合わせて調整 */
    background-image: url('../img/basic_21.webp');
    background-size: cover;
    display: block;
}

.qa_a{
    position: relative;
}

.qa_a::before {
    content: '';
    font-size: 0; /* テキストを消す */
    line-height: 1;
    position: absolute;
    top: -5px;
    left: -3px;
    width: 40px; /* 画像サイズに合わせて調整 */
    height: 40px; /* 画像サイズに合わせて調整 */
    background-image: url('../img/basic_22.webp');
    background-size: cover;
    display: block;
}

.qa-list dl dd .qa_link{
    color: #3979E6;
    margin-top: 15px;
}

.area .qa-list dl dt {
    color: #000;
    background: #D9E021;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    letter-spacing: 0.2em;
    border: solid #000 4px;
    
}

.area .qa-list dl::before {
    border-top: 3px solid #000;
    border-right: 3px solid #000;
}

.area .qa-list .open::before {
    border-top: 3px solid #000;
    border-right: 3px solid #000;
}

.area .qa-list dl dd {
    padding: 30px 26px 40px;
    border: solid #000 4px;
    border-top: none;
}

.qa_in:not(:last-child) {
    border-bottom:4px solid #000; /* 下線を追加 */
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.qa_q,
.qa_a,
.qa-list dl dd .qa_link{
    padding-left: 49px;
}

.area .qa-list {
    margin-top: 0px;
}

@media (max-width: 750px) {
    .top_01 {
        width: 100%;
    }
    
    .top_02 {
        width: 100%;
    }
    
    .basic_top {
        width: 100%;
    }
    
    .basic_green_top {
        width: 318px;
        top: -208px;
    }
    
    .curved::before {
        top: -150px;
        height: 150px;
        clip-path: ellipse(95% 100% at 50% 100%);
    }
    
    .point::before {
        top: -70px;
    }
    
    .curved::after {
        top: -154px;
        clip-path: ellipse(95% 100% at 50% 100%);
    }
    
    .curved {
        margin-top: 225px;
    }
    
    .basic_green_2 {
        width: 332px;
        margin-top: 0px;
    }
    
    p {
        font-size: 13px;
    }
    
    .basic_green_flex {
        display: block;
        flex-wrap: wrap;
        max-width: none;
        margin: 40px auto 30px;
    }
    
    .basic_green_flex_in {
        width: 100%;
    }
    
    .basic_green_flex {
        display: block;
    }
    
    .basic_green_flex_name {
        font-size: 21px;
    }
    
    .basic_green_flex_in:last-child {
        width: 100%;
    }
    
    .basic_green_flex_in img {
        margin-right: 12px;
    }
    
    .basic_green_flex_in .sweets_character {
        width: 87px;
        top: 54px;
        right: -15px;
    }
    
    .basic_green_flex_in .curry_character {
        width: 113px;
        top: -9px;
        right: -25px;
    }
    
    .lineup_top {
        width: 100%;
    }
    
    .lineup_flex {
        display: block;
        text-align: center;
    }
    
    .lineup_flex_left {
        width: 100%;
        padding-right: 0px;
    }
    
    .lineup_name {
        font-size: 18px;
    }
    
    .lineup_flex_right {
        width: 100%;
    }
    
    .lineup_in {
        padding: 10px;
    }
    
    .lineup_name div {
        letter-spacing: 0.1em;
    }
    
    .lineup_flex_right .lineup_write {
        letter-spacing: 0.1em;
    }
    
    .next_link {
        font-size: 18px;
    }
    
    .next_link::after {
        width: 13px;
        height: 13px;
    }
    
    .lineup_flex_right .worning {
        letter-spacing: 0.15em;
        padding-left: 0em;
    }
    
    .lineup_image{
        width: 60%;
        margin: auto;
    }
    
    .lineup_name div {
        justify-content: center;
    }
    
    .lineup_character {
        width: 69px;
        bottom: 5px;
        left: 15px;
    }
    
    .lineup_character_second {
        right: 20px;
        left: auto;
    }
    
    .lineup_flex_first {
        padding-bottom: 15px;
    }
    
    .lineup_flex_second {
        margin-top: 15px;
    }
    
    .others_title {
        font-size: 20px;
        font-weight: 800;
        letter-spacing: 0.01em;
        margin-bottom: 10px;
    }
    
    .lineup_others {
        max-width: none;
        margin-top: 21px;
    }
    
    .qa-list dl dd {
        padding: 30px 20px 28px;
    }
    
    .qa_title {
        font-size: 16px;
        letter-spacing: 0.01em;
    }
    
    .worning {
        letter-spacing: 0.1em;
    }
    
    .basic .point {
        margin-top: 122px;
    }
    
    .area .qa-list dl dt {
        letter-spacing: 0.05em;
    }
    
    .qa-list .open::before {
        top: 25px;
    }
    
    .qa_q::before {
        width: 30px;
        height: 30px;
    }
    
    .qa_a::before {
        width: 30px;
        height: 30px;
    }
    
    .qa_q, .qa_a, .qa-list dl dd .qa_link {
        padding-left: 35px;
    }
    
    .qa-list dl dd p {
        margin: 20px 0 0;
    }
    
    .area {
        padding-bottom: 20px;
    }
    

    
}


/* others_plan */

.others_plan{
    padding-top: 70px;
    padding-bottom: 50px;
}

.others_plan_flex{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 30px;
}

.others_plan_flex div{
    width: 49%;
}


/* procedure */

.procedure{
    background: #FFF1C1;
    padding-bottom: 40px !important;
    padding-top: 70px !important;
}

.procedure .qa-list dl dt {
    color: #fff;
    background: #32AA1E;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    letter-spacing: 0.2em;
    border: none;
    padding-left: 84px;
    display: flex;
}

.procedure .qa-list dl dt span{
    border-left: 2px solid #fff; 
    height: 100%;
    margin: 0 10px;
    position: absolute;
    top: 0;
    left: 58px;
}

.procedure .qa-list dl::before {
    top: 20px;
    right: 35px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}

.procedure .qa-list .open::before {
    top: 32px;
}

.procedure .qa .position_base img {
    width: 32px;
    position: absolute;
    top: 9px;
    left: 16px;
}

.procedure .qa-list dl dd {
    padding: 30px 26px 40px;
    border: none;
    border-top: none;
}

.procedure .qa-list dl dd {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.procedure .qa_top{
    margin-bottom: 20px;
}

.procedure .others_title{
    color: #32AA1E;
}

.procedure .qa-list .procedure_btn img{
    width: 100%;
    margin: auto;
    position: static;
}

.procedure .qa-list .procedure_btn{
    text-align: center;
    max-width: 350px;
    margin:10px auto;
}

/* contact */
.contact{
    max-width: 950px;
    border-radius: 50px;
    margin: auto;
    background: #E4FFA1;
    margin-top: 70px; 
    margin-bottom: 50px; 
}

.contact .others_title{
    color: #32AA1E;
}

.contact_in{
    border: 4px solid #32AA1E;
    border-radius: 20px;
    background: #fff;
    
}

.contact_inner{
    padding: 0 50px;
}

.contact_top{
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 4px solid #32AA1E;
    padding: 20px 20px;
}

.contact_top p,
.contact_top h3{
    margin: 0;
}

.contact_flex {
    display: flex;
    position: relative; /* 下線の位置を調整するために */
    padding-bottom: 20px; /* 下線と内容の間隔 */
    padding-top: 20px;
    align-items: center;
    justify-content: center;
    
}

.contact_flex::after {
    content: "";
    position: absolute;
    bottom: 0; /* 下部に配置 */
    left: 0;
    width: 100%; /* 横幅いっぱい */
    height: 4px; /* 下線の太さ */
    background: repeating-linear-gradient(to right, #32AA1E 0px, #32AA1E 6px, transparent 6px, transparent 12px); /* 点線 */
}

.contact_flex_left{
    width: 17%;
}

.contact_flex_right a{
    color: #32AA1E;
    font-size: 55px;
    margin-top: 5px;
    line-height: 1em;
}

.contact_flex_right p{
    line-height: 1.6em;
}

.contact_flex_second .contact_flex_left{
    width: 15%;
}

.contact_flex_right{
    width: 50%;
    margin-left: 40px;
}

.contact_last p{
    margin:0;
}

.contact_last{
    padding-left: 25px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.contact_last .qa_link{
    color: #00A0E9;
}

.arrow{
    width: 13px;
    position:static;
    padding-right: 3px;
}
@media screen and (max-width: 750px) {
    .arrow{
        width:10px;
    }
    
}

.contact_time{
    width: 13px;
    position:static;
    padding-right: 3px;
}
@media screen and (max-width: 750px) {
    .contact_time{
        width: 10px;
    }

}


@media screen and (max-width: 750px) {
    .others_plan_flex {
        display: block;
        margin-top: 17px;
        margin-bottom: 41px;
    }
    
    main .others_plan{
        padding-bottom: 30px !important;
    }
    
    .others_plan_flex div {
        width: 100%;
    }
    
    .procedure .qa .position_base img {
        width: 21px;
        top: 14px;
    }
    
    .procedure .qa-list dl dt {
        font-size: 15px;
        padding-left: 64px;
        height: 44px;
        align-items: center;
        letter-spacing: 0.05em;
    }
    
    .procedure .qa-list dl dt span {
        left: 44px;
    }
    
    .procedure .qa-list dl::before {
        right: 21px;
    }
    
    .procedure .qa-list .open::before {
        top: 29px;
    }
    
    .procedure .qa-list dl dd {
        padding: 16px 18px 21px;
    }
    
    .contact_inner {
        padding: 0 20px;
    }

    .contact_flex_right {
        width: 70%;
        margin-left: 13px;
    }
    
    .contact_flex_right a {
        font-size: 30px;
        margin-top: 2px;
    }
    
    .contact_flex_right p {
        line-height: 1.7em;
        margin: 0;
    }
    
    .contact_last {
        padding-left: 13px;
    }
    
    .contact {
        padding: 0px;
        margin-bottom: 50px !important;
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

}



/*///////////////////////////////
	ana
///////////////////////////////*/
.ana_blue{
    background: #3979E6;
    color: #fff;
     margin-top: 318px;

}

.ana_blue::before {
    background: #3979E6;
}

.ana_blue_top{
    top: -336px;
}

.mv_write{
    max-width: 1000px;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 200px;
    padding-left: 60px;
    padding-right: 60px;
}

.top_content_ana {
    background: #3979E6;
    padding-top: 190px;
    padding-bottom: 180px;
}

.top_content_ana .top_01{
    width: 700px;
    margin: auto;
    color: #fff;
        margin-bottom: 94px;
}

.top_content_ana .top_01 p{
    margin: 0;
}

.top_content_ana .top_01 .character{
    width: 150px;
    position: absolute;
    bottom: -57px;
    right: -132px;
}

.top_content_ana .top_02{
    margin-top: 50px;
}

.top_content_ana .top_02 p{
    text-align: left;
    color: #fff;
    width: 76%;
    margin: 0;
}

.top_content_ana .top_02 .position_base {
    padding-left: 1.1em;
    margin: 0;
}

.top_content_ana .top_02 .character{
    width: 200px;
    position: absolute;
    bottom: -19px;
    right: -14px;
}

.ana_pink::before{
    background: #E46CB4;
}

.ana_pink {
    position: relative;
    background: #E46CB4;
    color: #fff;
}

.ana .point{
    margin: 0;
}

.ana .area{
    background: #3979E6;
}

.ana .area .others_title{
    color: #fff;
    text-align: center;
}

@media (max-width: 750px) {
    .mv_write {
        max-width: 370px;
        margin: auto;
        margin-top: 100px;
        margin-bottom: 200px;
        padding-left: 0px;
        padding-right:0px;
    }
    
    .ana_blue_top {
        top: -220px;
    }
    
    .ana_blue {
        margin-top: 217px;
    }
    
    .top_content_ana {
        padding-top: 20px !important;
        padding-bottom: 82px!important;
    }

    
    .top_content_ana .top_01 {
        width: 330px;
        margin-bottom: 65px;
    }
    
    .top_content_ana .top_01 .character {
        width: 90px;
        right: -25px;
    }
    
    .top_content_ana .sp_image {
        margin-bottom: 20px!important;
    }
    
    .ana{
        padding-top: 8px!important;
    }
    
    .top_content_ana .top_02 p {
        width: 96%;
    }
    
    .top_content_ana .top_02 .character {
        width: 96px;
        position: absolute;
        bottom: 141px;
        right: -25px;
    }

}



/*///////////////////////////////
	power
///////////////////////////////*/
.power .top_content_ana {
    background: #F7861E;
}

.power .ana_blue::before {
    background: #F7861E;
}

.power .ana_pink {
    background: #22AC38;
}

.power .ana_pink::before {
    background: #22AC38;
}

.power_image{
    margin-bottom: 30px;
}

.power .area {
    background: #F7861E;
}

.power .top_01 p{
    padding-top: 14px;
}

.power .top_content_ana .top_01 .character {
    width: 150px;
    position: absolute;
    bottom: -57px;
    right: -61px;
}




@media (max-width: 750px) {
    .power .area .qa-list dl dd {
        padding: 16px 13px 21px;
    }
    
    .power .top_content_ana .top_01 .character {
        bottom: -106px;
    }
    
    .power .point {
        padding-bottom: 50px;
    }

    .power .top_content_ana .top_01 p {
        margin-top: 10px;
    }
    
    .power .top_01 p{
        padding-top: 0px;
    }
    
    .power .top_content_ana .top_01 .character {
        width: 86px;
        position: absolute;
        bottom: -98px;
        right: -7px;
    }


}



/*///////////////////////////////
	question
///////////////////////////////*/
.question_first{
    background: #FFF1C1;
}

.question_top .qa-list dl dt {
    color: #fff;
    background: #32AA1E;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    letter-spacing: 0.2em;
    border: solid #000 4px;
}

.question_top .qa-list .open::before {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}

.question_top .qa-list dl::before {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}

.area .question_top .qa-list dd {
    line-height: 2em;
    padding: 30px 26px 35px;
}

.question_top .qa-list dd span {
    font-size: 23px;
    color: #F7861E;
    vertical-align: sub;
}

.question_top .qa-list dd .asterisk {
    color: #000;
}

.question_top .qa img {
    width: 100%;
    position:static;
    margin-top: 20px;
}

.question_top .qa .step img  {
    width: 32px;
    position: absolute;
    top: -10px;
    left: 16px;
}

.question_top .qa .step {
    color: #32AA1E;
    background: #FFF1C1;
    border-top-right-radius: 20px;
    padding: 20px 10px 20px 82px;
    font-size: 20px;
}

.question_top .qa .step span {
    border-left: 2px solid #32AA1E;
    height: 100%;
    margin: 0 10px;
    position: absolute;
    left: 58px;
    top: 0;
}

.step_in{
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 30px;
}

.step_in .position_base{
    padding-left: 1.5em;
}

.step_in .procedure_btn {
    text-align: center;
    max-width: 350px;
    margin: 0px auto;
}

.question_second h4 {
    color: #fff;
    background: #32AA1E;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    letter-spacing: 0.2em;
    border: none;
    position: relative;
    margin: 0;
    padding: 20px 20px 20px 30px;
    font-weight: 700;
    font-size: 24px;
}

.question_top .question_second .qa-list dt {
    position: relative;
    color: #32AA1E;
    margin: 0;
    padding: 0px;
    padding-right: 20px;
    padding-left: 20px;
    font-weight: 700;
    font-size: 22px;
    background: transparent ;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    letter-spacing: 0.2em;
    border: none;
}

.question_top .question_second dl::before {
    border-top: 3px solid #32AA1E;
    border-right: 3px solid #32AA1E;
    top: 0;
}

.question_top .question_second .open::before {
    border-top: 3px solid #32AA1E;
    border-right: 3px solid #32AA1E;
    top: 12px;
}


.question_top .question_second dl{
    padding-right:20px;
    padding-left: 40px;
}

.question_top .question_second .qa-list dl dd {
    background: transparent ;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border:  none;
    padding: 0px;
    padding-top: 22px;
    padding-left: 1.3em;
}

.question_top .question_second .qa_q::before {
    left: -25px;
}

.question_top .question_second .qa_a::before {
    left: -25px;
    top: 18px;
}

.question_top .question_second .qa_q_second::before {

}

.question_top .qa_in:not(:last-child) {
    position: relative;
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}

.question_top .qa_in:not(:last-child)::after {
    content: "";
    display: block;
    width: 97%; /* 線の長さを調整 */
    height: 4px;
    background-color: #32AA1E;
    margin: 0 auto; /* 中央寄せ */
}

.question_second .confirmation{
    margin-top: 40px;
}

.question_second_in{
    margin-top: 50px;
}

.question_second_btn{
    margin-top: 100px;
}

@media (max-width: 750px) {
    .question_first {
        padding-top: 84px;
        padding-bottom: 20px;
    }
    
    .question_top .area {
        padding-bottom: 0px;
    }
    
    .question_second h4 {
        padding: 15px 20px 15px 20px;
        font-size: 18px;
    }
    
    .question_top .question_second dl {
        padding-right: 10px;
        padding-left: 10px;
        letter-spacing: 0.05em;
    }
    
    .question_top .question_second .qa-list dt {
        font-size: 16px;
        padding-left: 30px;
        letter-spacing: 0.01em;
    }
    
    .question_top .question_second .qa_q::before {
        left: -6px;
    }
    
    .question_top .question_second .qa-list dl dd {
        padding-top: 18px;
        padding-left: 2em;
    }
    
    .question_top .question_second .qa_a::before {
        left: -6px;
    }
    
    .question_top .question_second .qa_q_second::before {
        top: -2px;
    }
    
    .question_second_btn {
        margin-top: 46px;
    }
    
    .contact {
        margin-bottom: 50px;
    }
    
    .question_top .qa .step img {
        width: 26px;
        position: absolute;
        top: -16px;
        left: 22px;
    }
    
    .question_top .qa .step {
        color: #32AA1E;
        background: #FFF1C1;
        border-top-right-radius: 20px;
        padding: 10px 10px 10px 82px;
        font-size: 15px;
        letter-spacing: 0.01em;
    }
    
    .question_top .qa .position_base_second img {
        width: 26px;
        position: absolute;
        top: -5px;
        left: 22px;
    }

    
}



/*///////////////////////////////
	business
///////////////////////////////*/
.header_btn_business{
    padding: 0px;
    border: none;
    margin-top: 3px;
    margin-right: 20px;
    background: transparent;
    width:227px;
}

.business_top .ana_blue {
    background: #FCE9D7;
    color: #000;
    margin-top: 409px;
}

.business_top .ana_blue::before {
    background: #FCE9D7;
}

.business_top .top_content {
    background: #FCE9D7;
    
}

.business_top .business_point {
    background: #FCE9D7;
}

.business_top .top_01{
    margin-top: 40px;
    width: auto;
}

.business_point .click{
    position: absolute;
    bottom: 46px;
    left: 44px;
    width: 200px;
}

.business_top .contact h3 span{
    font-size: 24px;
}

.business_top .contact_in {
    border: 4px solid #F7861E;
}

.business_top .contact .others_title {
    color: #F7861E;
}

.business_top .contact_flex::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(to right, #F7861E 0px, #F7861E 6px, transparent 6px, transparent 12px);
}

.business_top .contact_top {
    border-bottom: 4px solid #F7861E;
}

.business_top .contact_flex_right a {
    color: #F7861E;
}

.business_top .contact {
    background: #FCE9D7;
}

.business_point h3{
    color: #F7861E;
}

@media (max-width: 750px) {
    .header_btn_business {
        margin-right: 0px;
        width: 193px;
        margin-top: 8px;
    }
    
    .business_top .ana_blue {
        margin-top: 242px;
    }
    
    .business_top .top_content {
        padding:  10px;
        padding-bottom: 32px;
    }
    
    .business_top .top_01 {
        margin-top: -48px;
    }
    
    .business_point{
        margin-top: 40px;
    }
    
    .business_point .click {
        bottom: 24px;
        left: 28px;
        width: 132px;
    }
    
    .business_top .contact h3 span {
        font-size: 14px;
    }
    
    .top_content {
        padding: 5px;
    }
    
    .others_plan {
        padding-top: 1px;
    }
    
    .business_top .contact {
        background: #FCE9D7;
        margin-top: 57px;
        margin-bottom: 30px;
    }
    
    .area .question_top .qa-list dd {
        line-height: 2em;
        padding: 10px 16px 15px;
    }
    
    .question_top .qa-list dd span {
        font-size: 18px;
        vertical-align: sub;
    }
    
}


/*///////////////////////////////
	footer
///////////////////////////////*/

.l-footer * {
	box-sizing: border-box;
}
.l-footer {
	position: relative;
	margin-top: 52px;
	padding-bottom: 64px;
	overflow: hidden;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}
@media print, screen and (max-width: 750px) {
	.l-footer {
		margin-top: 0;
	}
}
.l-footer:after {
	position: absolute;
	bottom: 0;
	left: 50%;
	display: block;
	width: 140%;
	height: 46px;
	margin: auto;
	background-color: #13a74a;
	border-top-left-radius: 50% 100%;
	border-top-right-radius: 50% 100%;
	content: "";
	-webkit-transform: translateX(-50%);
					transform: translateX(-50%);
}
@media print, screen and (max-width: 750px) {
	.l-footer:after {
		width: 150%;
		height: 36px;
	}
}

.l-footer__inner {
	margin: 0 auto;
	padding: 0 15px;
}
@media print, screen and (max-width: 750px) {
	.l-footer__inner {
		padding: 26px 15px 0;
	}
}

.l-footer__middle {
	margin-top: 70px;
}
@media print, screen and (max-width: 750px) {
	.l-footer__middle {
		margin-top: 40px;
	}
}

.l-footer__bottom {
	margin-top: 18px;
}
@media print, screen and (max-width: 750px) {
	.l-footer__bottom {
		margin-top: 14px;
	}
}

/* ***************************
footerNav
*************************** */
.c-footerNav__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
@media print, screen and (max-width: 750px) {
	.c-footerNav__list {
		margin: 0;
		justify-content: flex-start;
	}
}

.c-footerNav__item {
	position: relative;
	margin-top: 0;
	padding: 5px 0 5px 22px;
}
@media print, screen and (max-width: 750px) {
	.c-footerNav__item {
		width: 33.33333%;
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
	}
}
@media print, screen and (max-width: 540px) {
	.c-footerNav__item {
		width: 50%;
	}
}
.c-footerNav__item:before {
	position: absolute;
	top: 0.75em;
	left: 0;
	width: 18px;
	height: 18px;
	background-color: transparent;
	background-image: url(../img/icon-arrow.svg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	border-radius: 0;
	content: "";
}
@media print, screen and (max-width: 750px) {
	.c-footerNav__item:before {
		top: 1.1em;
		width: 17px;
		height: 17px;
	}
}
.c-footerNav__item + .c-footerNav__item {
	margin-left: 26px;
}
@media print, screen and (max-width: 750px) {
	.c-footerNav__item + .c-footerNav__item {
		margin-left: 0;
	}
}

_::-webkit-full-page-media, _:future, :root .c-footerNav__item:before {
	top: 0.7em;
}

@media print, screen and (max-width: 750px) {
	_::-webkit-full-page-media, _:future, :root .c-footerNav__item:before {
		top: 1em;
	}
}
.c-footerNav__link {
	color: #0f303f;
	font-size: 1rem;
	line-height: 1.875;
	font-weight: 700;
	text-decoration: none;
}
@media print, screen and (max-width: 750px) {
	.c-footerNav__link {
		font-size: 1rem;
		line-height: 1.9285714286;
	}
}
@media print, screen and (min-width: 769px) {
	.c-footerNav__link:hover {
		text-decoration: underline;
	}
}
.c-footerNav__link:hover, .c-footerNav__link:visited, .c-footerNav__link:focus {
	color: #0f303f;
}

/* ***************************
footerLink
*************************** */
.c-footerLink {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
@media print, screen and (max-width: 750px) {
	.c-footerLink {
		justify-content: flex-start;
	}
}

.c-footerLink__item {
	position: relative;
	padding: 0 18px;
	margin: 5px 0 4px -1px;
}
@media print, screen and (max-width: 750px) {
	.c-footerLink__item {
		width: 33.33333%;
		padding: 8px 10px 7px 0;
	}
}
@media print, screen and (max-width: 540px) {
	.c-footerLink__item {
		width: 50%;
	}
}
.c-footerLink__item:first-child {
	padding-left: 0;
}
.c-footerLink__item:last-child {
	padding-right: 0;
}
.c-footerLink__item:before {
	content: none;
}
.c-footerLink__item + .c-footerLink__item:before {
	position: absolute;
	top: 0.25em;
	left: 0;
	width: 2px;
	height: 18px;
	background-color: #0f303f;
	content: "";
}
@media print, screen and (max-width: 750px) {
	.c-footerLink__item + .c-footerLink__item:before {
		content: none;
	}
}

.c-footerLink__link {
	color: #0f303f;
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 700;
	text-decoration: none;
}
@media print, screen and (max-width: 750px) {
	.c-footerLink__link {
		font-size: 1rem;
		line-height: 1.4285714286;
	}
}
@media print, screen and (min-width: 769px) {
	.c-footerLink__link:hover {
		text-decoration: underline;
	}
}
.c-footerLink__link:hover, .c-footerLink__link:visited, .c-footerLink__link:focus {
	color: #0f303f;
}

/* ***************************
returnTop
*************************** */
.c-returnTop {
}

.c-returnTop__inner {
	position: fixed;
	bottom:20px;
	right: calc(50% - 590px);
	max-width: 1210px;
	margin: 0;
	padding: 0;
	z-index: 1;
}
@media print, screen and (max-width: 1240px) {
	.c-returnTop__inner {
		right: 15px;
	}
}
.c-returnTop__inner.is-fixed {
	position: fixed;
	top: auto;
	bottom: 30px;
}

.c-returnTop__link {
	display: block;
	width: 60px;
	height: 60px;
	margin-left: auto;
	font-size: 0%;
	line-height: 0;
	background-color: #0069b7;
	background-image: url(../img/btn-top.png);
	background-position: 15px 15px;
	background-repeat: no-repeat;
	background-size: 30px 30px;
	border-radius: 8px;
	transition: background-position 0.3s;
}
@media print, screen and (max-width: 750px) {
	.c-returnTop__link {
		width: 50px;
		height: 50px;
		background-position: 10px 10px;
	}
}
@media print, screen and (min-width: 769px) {
	.c-returnTop__link:hover {
		background-position: 15px 9px;
	}
}

/* ***************************
copyright
*************************** */
.c-copyright {
	display: block;
	font-size: 0.875rem;
	line-height: 1.7142857143;
	text-align: center;
}
@media print, screen and (max-width: 750px) {
	.c-copyright {
		font-size: 0.8571428571rem;
		line-height: 1.5;
	}
}

/* ***************************
display
*************************** */
@media print, screen and (max-width: 750px) {
	.u-pcOnly {
		display: none !important;
	}
}

@media print, screen and (min-width: 769px) {
	.u-spOnly {
		display: none !important;
	}
}

.u-block {
	display: block;
}

.u-inline {
	display: inline;
}

.u-inlineBlock {
	display: inline-block;
}




