* {
    margin: 0;
    padding: 0;
}

main {
    overflow: hidden;
}

html {
    font-size: 62.5%;
    font-family: "Roboto", "Noto Sans JP", sans-serif;
}

h1.entry-title {
    display: none;
}

.single-featured-image-header {
    display: none;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.section {
    padding: 80px 0;
}

.inner {
    width: 1000px;
    margin: 0 auto;
}

img {
    max-width: 100%;
}

.ud_line {
    border-bottom: 1px solid #000;
}

.bg_yellow {
    background: #fff9af;
}

.bg_white {
    background: #fff;
}

.bg_blue {
    background: #33a1e0;
}

.pc_br {
    display: block;
}

.sp_br {
    display: none;
}

@media only screen and (max-width:1000px) {
    .inner {
        width: 95%;
        margin: 0 auto;
    }
}

@media only screen and (max-width:900px) {
    .section {
        padding: 60px 0;
    }
    .inner {
        width: 90%;
        margin: 0 auto;
    }
}

@media only screen and (max-width:480px) {
    .pc_br {
        display: none;
    }
    .sp_br {
        display: block;
    }
}


/*font　ここから*/

.txt_xsm {
    font-size: 1.4rem;
}

.txt_sm {
    font-size: 1.6rem;
}

.txt_rg {
    font-size: 1.8rem;
}

.txt_md {
    font-size: 2rem;
}

.txt_lg {
    font-size: 2.4rem;
    font-weight: 600;
}

.txt_xlg {
    font-size: 3.2rem;
    font-weight: bold;
}

.txt_xxlg {
    font-size: 4.8rem;
    font-weight: bold;
}

.txt_xxxlg {
    font-size: 6.4rem;
    font-weight: bold;
}

.txt_xxxxlg {
    font-size: 8.8rem;
    font-weight: bold;
}

.txt_black {
    color: #000;
}

.txt_white {
    color: #fff;
}

.txt_blue {
    color: #33a1e0;
}

.txt_yellow {
    color: #fff9af;
}

.txt_orange {
    color: #f87b1b;
}

.txt_green {
    color: #5ac463;
}

.frame_blue {
    background: #33a1e0;
    border-radius: 100px;
    color: #fff;
    padding: 7px 3% 10px 3%;
    display: inline-block;
}

.frame_black {
    background: #000;
    color: #fff;
}

.frame_orange {
    background: #f87b1b;
    color: #fff;
}

.frame_green {
    background: #5ac463;
    color: #fff;
}

@media only screen and (max-width:900px) {
    .txt_xsm {
        font-size: 1.2rem;
    }
    .txt_sm {
        font-size: 1.4rem;
    }
    .txt_rg {
        font-size: 1.6rem;
    }
    .txt_md {
        font-size: 1.8rem;
    }
    .txt_lg {
        font-size: 2rem;
    }
    .txt_xlg {
        font-size: 2.4rem;
        font-weight: bold;
    }
    .txt_xxlg {
        font-size: 3rem;
        font-weight: bold;
    }
    .txt_xxxlg {
        font-size: 5.4rem;
        font-weight: bold;
    }
    .txt_xxxxlg {
        font-size: 7.2rem;
        font-weight: bold;
    }
}

@media only screen and (max-width:480px) {
    .section_title .txt_xxxxlg {
        font-size: 4.2rem;
        font-weight: bold;
    }
}

@media only screen and (max-width:380px) {
    .txt_xxlg {
        font-size: 2.4rem;
    }
}


/*font　ここまで*/


/*c-text　ここから*/

.c-text {
    overflow: hidden;
    display: flex;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    margin: 30px 0 80px 0;
}

.c-text__item {
    flex-shrink: 0;
    white-space: nowrap;
    text-transform: uppercase;
}

.c-text__item.txt_xxxxlg {
    font-size: 10rem;
}

.c-text__item:nth-child(odd) {
    animation: MoveLeft 72s -36s infinite linear;
}

.c-text__item:nth-child(even) {
    animation: MoveLeft2 72s infinite linear;
}

@keyframes MoveLeft {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes MoveLeft2 {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}

@media only screen and (max-width:900px) {
    .c-text {
        margin: 30px 0 30px 0;
    }
}


/*c-text　ここまで*/


/*btn　ここから*/

.btn {
    position: relative;
    box-shadow: 0px 5px 0px 0px rgba(0, 0, 0);
    width: 48%;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.btn a {
    color: #fff;
    display: block;
    font-weight: 600;
}

.btn:hover {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0);
    margin-top: 10px;
}

.btn:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../img/gokigenya_icon_arrow.svg);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.btn:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.btn.web {
    background: #33a1e0;
}

.btn.web:before {
    background-image: url(../img/gokigenya_icon_web.svg);
}

.btn.line {
    background: #5ac463;
}

.btn.line:before {
    background-image: url(../img/gokigenya_icon_line.svg);
}

.btn.instagram {
    background: #f87b1b;
}

.btn.instagram:before {
    background-image: url(../img/gokigenya_icon_Instagram.svg);
}

.btn.tiktok {
    background: #11224e;
}

.btn.tiktok:before {
    background-image: url(../img/gokigenya_icon_tiktok.svg);
}

.btn_two_layout {
    width: 40%;
    margin-right: 3%;
}

#footer .btn.instagram:hover,
#footer .btn.tiktok:hover {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0);
    margin-top: 20px;
}

@media only screen and (max-width:1100px) {
    .btn_two_layout {
        width: 60%;
    }
}

@media only screen and (max-width:900px) {
    .btn:after {
        width: 15px;
        height: 15px;
        background-repeat: no-repeat;
    }
}


/*btn　ここまで*/


/*header　ここから*/

#header {
    height: 120px;
    width: 100%;
    background: #fff;
}

#header.fixed {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
}

#header h1 {
    padding-left: 3%;
}

#header h1 img {
    width: 190px;
}

#header .btn_box {
    width: 48%;
    text-align: center;
}

#header .btn_box .btn {
    width: 100%;
}

#header .btn_box p {
    font-weight: 600;
}

@media only screen and (max-width:900px) {
    #header {
        height: 100px;
    }
    #header h1 img {
        width: 100px;
    }
    #header .btn {
        height: 40px;
        line-height: 40px;
    }
    #header .btn_two_layout {
        margin-right: initial;
    }
    #header .btn:after {
        right: 20px;
    }
    #header .btn:before {
        left: 20px;
    }
    #header h1 {
        width: 30%;
    }
    .btn_two_layout {
        width: 65%;
    }
    #header .btn_box {
        width: 90%;
    }
    #header .btn_box p {
        font-size: 1.2rem;
        text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
    }
    #header .btn_box:first-child {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        z-index: 1001;
        bottom: 2%;
    }
    #header .btn_box:last-child {
        margin: 0 0 0 auto;
        padding-right: 3%;
    }
}


/*header　ここまで*/


/*fv　ここから*/

.fv_bg {
    height: 600px;
    position: relative;
    overflow: hidden;
    /* 背景アニメは止める */
    background: none;
    animation: none;
    border-bottom: 5px solid #34a1e0;
}


/* beforeは別用途なので触らず、afterで流す */

.fv_bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../img/fv_bg_02_03.jpg);
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-position: center 0;
    /* ★ここを画像1枚の高さに合わせる（例：1200px） */
    --tileH: 1200px;
    will-change: background-position;
    animation: bgScroll 20s linear infinite;
}

@keyframes bgScroll {
    from {
        background-position: center 0;
    }
    to {
        background-position: center calc(var(--tileH) * -1);
    }
}

.fv_inner {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 100;
}

.fv_inner:before {
    content: '';
    display: inline-block;
    width: 200px;
    height: 140px;
    background-image: url(../img/gokigenya_character_01.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    background-repeat: no-repeat;
    z-index: 1;
    top: -80px;
    right: -160px;
}

.fv_bg:before {
    content: '';
    display: inline-block;
    width: 760px;
    height: 590px;
    background-image: url(../img/fv_bg.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-repeat: no-repeat;
    z-index: 1;
}

.fv_title {
    text-align: center;
}

.fv_title p {
    letter-spacing: 3px;
    line-height: 1px;
}

.fv_title p span {
    font-size: 4rem;
}

.fv_title p .txt_xxlg {
    font-size: 4.8rem;
}

.fv_title h2 span.txt_black {
    display: block;
    line-height: 10px;
    line-height: 75px;
}

#fv .frame_blue {
    margin: 0 auto;
    display: block;
    text-align: center;
    width: 420px;
    margin: 17px auto 24px auto;
    font-weight: 600;
}

#fv .fv_txt {
    text-align: center;
    font-weight: 500;
}

.fv_title .circle {
    background: #33a1e0;
    color: #fff9af;
    font-size: 4rem;
    width: 65px;
    height: 65px;
    transform: rotate(10deg);
}

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

.char::before {
    content: "・";
    position: absolute;
    top: -1.45em;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    font-size: 0.8em;
    color: currentColor;
}

#fv .circle.bg_orange {
    background: #ff7200;
    border: 3px solid #fff;
    width: 190px;
    height: 190px;
    border-radius: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#fv .circle p {
    line-height: 40px;
    color: #fff;
    font-weight: 600;
}

#fv .circle p span {
    display: block;
}

#fv .circle.bg_orange.left {
    position: absolute;
    top: 19px;
    left: -235px;
}

#fv .circle.bg_orange.right {
    position: absolute;
    bottom: 0;
    right: -210px;
}

@media only screen and (max-width:1030px) {
    .fv_inner {
        width: 57%;
    }
}

@media only screen and (max-width:900px) {
    .fv_bg {
        height: 750px;
    }
    .fv_bg:before {
        width: 100%;
        height: 730px;
        background-size: 100% 95%;
        background-position: top;
    }
    #fv .circle.bg_orange.left {
        position: initial;
        margin-right: 10px;
    }
    #fv .circle.bg_orange.right {
        position: initial;
    }
    #fv .fv_circle {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }
    .fv_title {
        margin-top: 30px;
        width: 100%;
    }
    .fv_inner:before {
        width: 150px;
        height: 130px;
        top: -85px;
        right: 4%;
    }
    .fv_title .circle {
        line-height: 65px;
    }
    .fv_inner {
        width: 100%;
    }
}

@media only screen and (max-width:650px) {
    .fv_inner:before {
        width: 120px;
        height: 130px;
        top: -95px;
        right: 2%;
    }
}

@media only screen and (max-width:510px) {
    .fv_title p .txt_xxlg {
        font-size: 2.8rem;
    }
    .fv_title p span {
        font-size: 2.6rem;
    }
    .fv_title .txt_xxxxlg {
        font-size: 4.2rem;
    }
    .fv_title .circle {
        font-size: 3rem;
        width: 50px;
        height: 50px;
        line-height: 50px;
        margin-left: 5px;
    }
    .fv_title .txt_xxxlg {
        font-size: 3.2rem;
    }
    .fv_title h2 span.txt_black {
        line-height: 30px;
    }
    #fv .frame_blue.txt_lg {
        font-size: 1.6rem;
    }
    .fv_bg {
        height: 600px;
    }
    .fv_bg:before {
        height: 570px;
    }
    .fv_inner:before {
        width: 120px;
        height: 100px;
        top: -80px;
        right: 2%;
    }
    #fv .frame_blue {
        margin: 15px auto 15px auto;
        width: 90%;
    }
    #fv .fv_circle {
        margin-top: 10px;
    }
    #fv .circle.bg_orange {
        width: 130px;
        height: 130px;
    }
    #fv .circle p {
        line-height: 25px;
    }
    #fv .fv_txt {
        width: 90%;
        margin: 0 auto;
    }
    .fv_title p {
        letter-spacing: 1px;
        line-height: 5px;
    }
    .fv_circle .txt_lg {
        font-size: 1.6rem;
    }
    .fv_circle .txt_lg span {
        font-size: 2rem;
    }
}


/*fv　ここまで*/


/*info　ここから*/

#info li {
    width: 700px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

#info li img {
    display: block;
    border-radius: inherit;
}

#info li:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

@media only screen and (max-width:900px) {
    #info li {
        width: 90%;
    }
}


/*info　ここまで*/


/*about　ここから*/

#about {
    position: relative;
}

.txt_blue.ud_line {
    border-bottom: 2px solid #33a1e0;
    font-weight: 600;
}

#point .txt_blue.ud_line {
    font-weight: 600;
}

.bg-note {
    background-image: linear-gradient(rgba(210, 210, 210, 0.4) 1px, transparent 1px), linear-gradient(to right, rgba(210, 210, 210, 0.4) 1px, transparent 1px);
    background-size: 20px 20px;
    background-color: #fff;
    background-position: -14px 14px;
}

#about h2 {
    line-height: 64px;
}

#about p {
    font-weight: bold;
    margin-top: 20px;
    line-height: 45px;
}

#about .about_img_one {
    position: absolute;
    right: 6%;
    top: 10px;
}

#about .about_img_two {
    position: absolute;
    right: 22%;
    top: 53%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

#about .about_img_three {
    position: absolute;
    right: 6%;
    bottom: 10px;
}

@media only screen and (max-width:1100px) {
    #about .about_img_one {
        right: 1%;
    }
    #about .about_img_two {
        right: 18%;
        top: 54%;
    }
    #about .about_img_three {
        right: 1%;
    }
}

@media only screen and (max-width:1000px) {
    #about h2.txt_xxlg {
        font-size: 4.2rem;
    }
}

@media only screen and (max-width:900px) {
    #about h2 {
        line-height: 50px;
    }
    #about p {
        line-height: 38px;
    }
    #about .col_right {
        width: 100%;
    }
    #about .about_img_one {
        position: initial;
        text-align: end;
    }
    #about .about_img_two {
        position: initial;
        transform: initial;
        -webkit-transform: initial;
        text-align: center;
        margin-top: -10px;
    }
    #about .about_img_three {
        position: initial;
        text-align: end;
        margin-top: -50px;
    }
    #about h2.txt_xxlg {
        font-size: 3rem;
    }
    #about h2 {
        line-height: 45px;
    }
}

@media only screen and (max-width:600px) {
    #about .about_img_two {
        margin-top: 0px;
        margin-right: 40%;
    }
}

@media only screen and (max-width:480px) {
    #about .about_img_two {
        text-align: left;
        margin-right: initial;
        margin-left: 40px;
    }
    #about .about_img_one img {
        width: 60%;
    }
    #about .about_img_two img {
        width: 50%;
    }
    #about .about_img_three img {
        width: 60%;
    }
    #about .about_img_one {
        margin-top: 10px;
    }
    #about p {
        font-weight: bold;
        font-size: 1.6rem;
        line-height: 30px;
    }
}


/*about　ここまで*/


/*item_slide　ここから*/

#item_slide .slider img {
    width: 100%;
    height: auto;
}

#item_slide .slider .slick-slide {
    margin: 0 10px;
}


/*item_slide　ここまで*/


/*cta　ここから*/

.cta.section {
    padding: 0 0 80px 0;
}

.cta .inner {
    background: #00a4e6;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25);
    height: 323px;
}

.cta .flex {
    justify-content: space-evenly;
}

.cta .col_left {
    text-align: center;
    color: #fff;
}

.cta .col_left span {
    display: block;
    font-weight: 600;
    margin: 11px 0 20px 0;
}

.cta .col_left p {
    font-weight: 600;
}

.cta .btn {
    width: 380px;
    height: 70px;
    line-height: 70px;
    border-radius: 50px;
    margin: 0 auto;
}

.cta .col_right {
    width: 35%;
    margin-top: 10px;
    display: flex;
}

.cta .btn:hover {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0);
    margin-bottom: -10px;
}

@media only screen and (max-width:900px) {
    .cta .col_left {
        width: 100%;
        margin: 30px 0;
    }
    .cta .col_right {
        width: 60%;
        margin-top: initial;
    }
    .cta.section {
        padding: 0 0 60px 0;
    }
    .cta .inner {
        height: initial;
    }
    .cta .btn a {
        font-weight: 600;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width:480px) {
    .cta .btn {
        width: 90%;
    }
    .cta .col_left span {
        margin: 9px 0 15px 0;
    }
    .cta .btn {
        height: 55px;
        line-height: 55px;
    }
}


/*cta　ここまで*/


/*point　ここから*/

.section_title {
    text-align: center;
}

#point .txt_xxlg,
#point .txt_xxxxlg {
    font-weight: bold;
}

#point .col_left {
    width: 48%;
}

#point .col_left p {
    text-align: justify;
    line-height: 30px;
}

#point .col_right {
    width: 44%;
}

#point .col_right img {
    margin: 0 auto;
    display: block;
}

#point h3 {
    margin: 15px 0;
}

.columns .frame_blue {
    padding: 5px 10%;
}

.columns {
    margin-top: 50px;
}

@media only screen and (max-width:900px) {
    #point .col_left {
        width: 100%;
    }
    #point .col_right {
        width: 75%;
        margin: 30px auto 0 auto;
    }
    .c-text__item.txt_xxxxlg {
        font-size: 7rem;
    }
    #point .columns .col_left .frame_blue {
        margin: 0 auto;
        display: block;
        width: 20%;
        text-align: center;
        font-weight: 600;
    }
    #point .col_left p {
        line-height: 27px;
    }
    #point .columns h3 {
        font-size: 2rem;
        text-align: center;
    }
}

@media only screen and (max-width:480px) {
    #point .section_title .frame_blue {
        padding: 7px 5% 10px 5%;
        margin-bottom: 5px;
        font-size: 1.8rem;
    }
    #point .section_title p {
        font-size: 2.8rem;
    }
    #point .section_title p span {
        font-size: 5rem;
    }
}


/*point　ここまで*/


/*kaitori　ここから*/

#kaitori {
    position: relative;
}

#kaitori.section {
    padding-top: 0;
}

#kaitori.section {
    padding-top: 0;
}

#kaitori .section_title {
    margin-bottom: 110px;
}

#kaitori .section__header.flex {
    justify-content: center;
}

#kaitori .section__header img {
    margin-right: 30px;
    width: 130px;
}

#kaitori .bg_yellow {
    padding: 80px 0 100px 0;
}

#kaitori .bg_white {
    padding: 80px 5%;
    margin-top: 70px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25);
}

#kaitori .section__content h4 {
    text-align: center;
}

#kaitori .section__content ul li p {
    font-weight: bold;
    text-align: center;
}

#kaitori .section__content ul {
    margin: 50px 0 40px 0;
}

#kaitori .section__content ul li {
    width: 20%;
    position: relative;
}

#kaitori .section__content ul li:after {
    content: '';
    display: inline-block;
    width: 45px;
    height: 45px;
    background-image: url(../img/gokigenya_icon_plus.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    right: -51px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

#kaitori .section__content ul li:last-child:after {
    display: none;
}

#kaitori .section__footer .frame_black,
#kaitori .section__footer .frame_orange {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 10px;
}

#kaitori .section__footer .col_left,
#kaitori .section__footer .col_right {
    width: 45%;
    text-align: center;
}

#kaitori .section__footer .col_right .flex p:first-child {
    border: 2px solid #f87b1b;
    padding: 10px 20px;
    background: #fff9af;
}

#kaitori .section__footer {
    position: relative;
}

#kaitori .section__footer:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 45px;
    background-image: url(../img/gokigenya_icon_arrow_blue.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-repeat: no-repeat;
}

.circle {
    background: #fff;
    border-radius: 80px;
    display: inline-block;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
}

.kaitori_point .circle {
    margin-right: 10px;
}

.kaitori_point {
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25);
    width: 640px;
}

.kaitori_point.frame_blue {
    padding: 15px 2% 15px 2%;
}

.kaitori_point.flex {
    display: flex;
    justify-content: center;
}

#kaitori .section__content {
    position: relative;
}

#kaitori .section__content:before {
    content: '';
    display: inline-block;
    width: 100px;
    height: 100px;
    background-image: url(../img/kaitori_img_01.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

#kaitori .kaitori_point {
    bottom: 40px;
}

@media only screen and (max-width:1000px) {
    #kaitori .section__header img {
        margin-right: 20px;
        width: 100px;
    }
    #kaitori .section__footer .col_right .flex p:first-child {
        padding: 10px 10px;
        font-size: 2rem;
    }
}

@media only screen and (max-width:900px) {
    #kaitori .section__header img {
        width: 15%;
        margin-right: 10px;
    }
    .section__content h4 {
        font-size: 2.4rem;
    }
    #kaitori .section__content:before {
        width: 80px;
        height: 80px;
    }
    #kaitori .bg_white {
        padding: 50px 5%;
    }
    #kaitori .section__content ul li {
        width: 40%;
    }
    #kaitori .section__content ul li:after {
        width: 40px;
        height: 40px;
        right: -32%;
    }
    #kaitori .section__content ul li:nth-child(2):after {
        display: none;
    }
    #kaitori .section__content ul li:nth-child(1),
    #kaitori .section__content ul li:nth-child(2) {
        margin-bottom: 20px;
    }
    #kaitori .section__content ul li img {
        margin-bottom: 10px;
    }
    #kaitori .section__content ul {
        margin: 30px 0 30px 0;
    }
    #kaitori .section__footer .col_left,
    #kaitori .section__footer .col_right {
        width: 100%;
    }
    #kaitori .section__footer .col_left {
        margin-bottom: 60px;
    }
    #kaitori .section__footer:after {
        transform: translateX(-50%) rotate(90deg);
        -webkit-transform: translateX(-50%) rotate(90deg);
        -ms-transform: translateX(-50%) rotate(90deg);
        top: 38%;
    }
    .kaitori_point {
        width: 85%;
    }
    .circle {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
    #kaitori .kaitori_point {
        bottom: 15px;
    }
}

@media only screen and (max-width:700px) {
    #kaitori .section__content ul li:after {
        right: -36%;
    }
}

@media only screen and (max-width:620px) {
    #kaitori .section__content ul li:after {
        right: -37%;
    }
    .kaitori_point .txt_lg {
        width: 80%;
    }
}

@media only screen and (max-width:480px) {
    #kaitori .section__header img {
        width: 20%;
        margin-right: 10px;
    }
    #kaitori .section__content ul li:after {
        width: 40px;
        height: 40px;
        right: -38%;
    }
    .kaitori_point .txt_lg {
        width: 80%;
    }
    #kaitori .section__content ul li img {
        margin-bottom: 5px;
    }
    #kaitori .section__content ul {
        margin: 20px 0 20px 0;
    }
    #kaitori .section__content ul li:nth-child(1),
    #kaitori .section__content ul li:nth-child(2) {
        margin-bottom: 15px;
    }
    #kaitori .section__footer .txt_xxlg {
        font-size: 3.2rem;
    }
    #kaitori .section__footer .frame_black,
    #kaitori .section__footer .frame_orange {
        margin-bottom: 5px;
        font-weight: 600;
        font-size: 1.6rem;
    }
    #kaitori .section__footer:after {
        width: 15px;
        height: 32px;
    }
    #kaitori .section__footer .col_left {
        margin-bottom: 40px;
    }
    #kaitori .section__footer:after {
        top: 40%;
    }
    #kaitori .section__footer .col_right .flex p:first-child {
        padding: 5px 5px;
        font-size: 1.8rem;
        font-weight: bold;
    }
    .kaitori_point .circle {
        margin-right: 10px;
        font-size: 1.3rem;
        font-weight: bold;
    }
    .kaitori_point .txt_lg {
        font-size: 1.8rem;
    }
    .kaitori_point.frame_blue {
        padding: 15px 5% 15px 5%;
    }
    .kaitori_point {
        width: 80%;
    }
}

@media only screen and (max-width:420px) {
    #kaitori .section__content ul li:after {
        right: -40%;
    }
    .section__content h4 {
        font-size: 2rem;
    }
}

@media only screen and (max-width:380px) {
    #kaitori .section__content ul li:after {
        right: -41%;
    }
}


/*kaitori　ここまで*/


/*case　ここから*/

#case.section {
    padding-top: 60px;
}

#case .section_title {
    margin-bottom: 50px;
}

#case .section_title .ud_line {
    border-bottom: 1px solid #f87b1b;
    padding-bottom: 5px;
    font-weight: 600;
}

#case .section_title p {
    margin-top: 20px;
    line-height: 30px;
}

.case_maker {
    border: 2px solid #000;
    padding: 5px 10px;
    margin-bottom: 10px;
}

.case_price {
    border: 2px solid #f87b1b;
    background: #f87b1b;
    padding: 5px 10px;
    color: #fff;
    font-weight: 600;
}

.case_slider img {
    margin: 0 auto;
    border: 2px solid #000;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    object-fit: contain;
}

.case_slider p {
    font-weight: 600;
}

.slick-center img {
    border: 2px solid #33a1e0;
}

.case_slider .slick-slide {
    margin: 0 20px;
}


/* dots自体は非表示 */

.slider-dots {
    display: none !important;
}


/* プログレスバー枠 */

.progress-inner {
    width: 60%;
    margin: 0 auto;
}

.progress-wrap {
    position: relative;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    margin-top: 16px;
    overflow: hidden;
    margin-top: 50px;
}


/* プログレス本体 */

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #33a1e0;
}

.slick-prev {
    position: absolute;
    left: 12%;
    bottom: -70px;
    z-index: 1000;
    width: 40px;
    height: 40px;
}

.slick-prev:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("../img/slick-prev.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.slick-next {
    position: absolute;
    right: 12%;
    z-index: 1000;
    width: 40px;
    height: 40px;
    bottom: -70px;
}

.slick-next:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("../img/slick-next.png");
    /* 画像のURLをここに */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media only screen and (max-width:900px) {
    .progress-inner {
        width: 50%;
    }
    #case .section_title p {
        line-height: 27px;
    }
}


/*case　ここまで*/


/*pattern　ここから*/

#pattern.bg_yellow {
    position: relative;
    margin-top: 40px;
}

#pattern .kaitori_point {
    bottom: initial;
    top: -40px;
}

#pattern .columns {
    margin-bottom: 50px;
}

#pattern .col_left .frame_blue {
    display: inline-block;
    border-radius: 0;
    padding: 5px 5px;
    font-weight: 600;
    margin-bottom: 10px;
}

#pattern .col_left {
    width: 42%;
}

#pattern .col_left p {
    line-height: 30px;
}

#pattern .col_right {
    width: 52%;
}

#pattern .col_right img {
    width: 100%;
}

#pattern .col_left h3 {
    margin: 10px 0 20px 0;
}

.pattern_slider .slick-slide {
    border: 2px solid #000;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    margin: 0 10px;
    padding: 30px 5px 20px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25);
    height: 680px;
}

.pattern_slider .slick-center {
    border: 2px solid #33a1e0;
}

.pattern_slider h4 {
    margin: 10px 0;
}

.pattern_slider img {
    border: none;
    margin: 0 auto;
    width: 80%;
}

.pattern_slider .frame_blue {
    padding: 7px 8% 7px 8%;
}

.pattern_slider .subject {
    border: 2px solid #33a1e0;
    padding: 5px 10px;
    margin-right: 10px;
}

.pattern_slider .flex p span {
    display: block;
    color: #000;
    font-size: 1.3rem;
}

.pattern_slider .flex p {
    font-weight: 600;
}

.pattern_slider .flex {
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.pattern_slider .check_list {
    margin: 10px auto 0 auto;
    width: 85%;
}

.check_list li {
    position: relative;
    text-align: left;
    padding-left: 25px;
}

.pattern_slider .check_list li {
    margin-bottom: 10px;
}

.pattern_slider .check_list li:last-child {
    margin-bottom: 0;
}

.check_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 17px;
    background-image: url('../img/gokigenya_icon_check.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

@media only screen and (max-width:1700px) {
    .pattern_slider .slick-slide {
        height: 640px;
    }
}

@media only screen and (max-width:1400px) {
    .pattern_slider .slick-slide {
        height: 610px;
    }
}

@media only screen and (max-width:1050px) {
    .pattern_slider .subject {
        padding: 5px 10px 8px 10px;
        margin-right: 0;
        width: 70%;
        margin: 10px 0;
    }
    .pattern_slider .check_list {
        margin: 20px auto 0 auto;
    }
    #pattern .col_left {
        width: 46%;
    }
    .pattern_slider .slick-slide {
        height: 670px;
    }
}

@media only screen and (max-width:900px) {
    #pattern .col_left {
        width: 100%;
    }
    #pattern .col_right {
        width: 100%;
        margin: 30px auto 0 auto;
    }
    #pattern .col_left h3 {
        margin: 5px 0 10px 0;
        font-size: 2rem;
    }
    #pattern .col_left .frame_blue {
        padding: 8px 10px;
        font-size: 1.8rem;
    }
    #pattern .columns {
        margin: 30px 0;
    }
    .pattern_slider .check_list {
        width: 90%;
    }
    .pattern_slider .subject {
        width: 100%;
    }
    .pattern_slider .flex {
        width: 90%;
        margin: 15px auto 0 auto;
    }
    .pattern_slider .flex {
        width: 90%;
    }
    .pattern_slider .flex {
        width: 90%;
    }
    #pattern .col_left p {
        line-height: 27px;
    }
    .pattern_slider .slick-slide {
        height: 850px;
    }
}

@media only screen and (max-width:750px) {
    .pattern_slider .slick-slide {
        height: 750px;
    }
}

@media only screen and (max-width:600px) {
    .pattern_slider .slick-slide {
        height: 680px;
    }
}

@media only screen and (max-width:480px) {
    .pattern_slider .slick-slide {
        height: 640px;
    }
    .pattern_slider .slick-slide {
        padding: 15px 5px 20px 0;
    }
    .pattern_slider .flex {
        margin: 5px auto 0 auto;
    }
    .pattern_slider .flex {
        width: 80%;
    }
}

@media only screen and (max-width: 420px) {
    .pattern_slider .slick-slide {
        height: 620px;
    }
}

@media only screen and (max-width: 420px) {
    .pattern_slider .slick-slide {
        height: 600px;
    }
}


/*pattern　ここまで*/


/*howto　ここから*/

#howto .col_left {
    width: 35%;
}

#howto .col_right {
    width: 62%;
}

#howto .columns {
    border: 2px solid #33a1e0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25);
    padding: 20px 4%;
    border-radius: 20px;
    position: relative;
    background: #fff;
}

#howto .columns:nth-child(2),
#howto .columns:nth-child(3) {
    margin-top: 80px;
}

#howto .columns:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 45px;
    background-image: url(../img/gokigenya_icon_arrow_blue.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    bottom: -66px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    -webkit-transform: translateX(-50%) rotate(90deg);
    -ms-transform: translateX(-50%) rotate(90deg);
}

#howto .columns:nth-child(3):after {
    display: none;
}

#howto h3 {
    margin: 10px 0;
}

#howto .frame_orange {
    border-radius: 100px;
    padding: 7px 7% 7px 7%;
    display: inline-block;
}

#howto .frame_green,
#howto .frame_blue {
    text-align: center;
    padding: 5px 0;
    margin: 10px 0;
}

#howto .frame_blue {
    border-radius: 0;
    display: block;
}

#howto .col_left img {
    border-radius: 10px;
    height: 340px;
    object-fit: cover;
}

#howto .check_list {
    margin-bottom: 10px;
}

@media only screen and (max-width:900px) {
    #howto .col_left {
        width: 100%;
    }
    #howto .col_right {
        width: 100%;
        margin-top: 15px;
    }
    #howto .col_left img {
        height: 260px;
        width: 100%;
    }
}


/*howto　ここまで*/


/*line　ここから*/

#line .frame_orange {
    display: inline-block;
    text-align: center;
    border-radius: 100px;
    padding: 10px 5%;
    margin: 24px 0 15px 0;
}

#line .col {
    width: 28%;
    text-align: center;
    border: 2px solid #5ac463;
    padding: 30px 2%;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25)
}

#line .col h3 {
    margin-bottom: 10px;
}

#line .col .frame_orange {
    padding: 7px 10%;
}

#line .section_title p span {
    margin: 0 5px 0 5px;
}

@media only screen and (max-width:900px) {
    #line .col {
        width: 100%;
        padding: 20px 5%;
    }
    #line .col:nth-child(1),
    #line .col:nth-child(2) {
        margin-bottom: 15px;
    }
    #line .col:nth-child(3) .frame_orange {
        width: 15%;
        display: block;
        margin: 24px auto 15px auto;
        padding: 7px 0;
    }
    #line .frame_orange {
        font-size: 1.8rem;
        padding: 8px 5% 10px 5%;
    }
    #line .section_title .txt_xxlg {
        font-size: 2.8rem;
    }
    #line .section_title p span {
        margin: 0 5px 0 5px;
        font-size: 5rem;
    }
    #line .columns {
        margin-top: 30px;
    }
    #line .col h3 {
        font-size: 1.8rem;
    }
}

@media only screen and (max-width:480px) {
    #line .col:nth-child(3) .frame_orange {
        width: 30%;
    }
}


/*line　ここまで*/


/*faq　ここから*/

.accordion-area {
    list-style: none;
    width: 100%;
    margin: 50px auto 0 auto;
}

.accordion-area li {
    margin: 10px 0;
}

.accordion-area section {
    background: #33a1e0;
    border-radius: 10px;
    padding: 2% 3%;
}

.title {
    position: relative;
    cursor: pointer;
    font-size: 1rem;
    font-weight: normal;
    transition: all .5s ease;
}

.title.flex {
    justify-content: left;
}

.title::before {
    position: absolute;
    content: '';
    width: 20px;
    height: 13px;
    background-image: url(../img/gokigenya_icon_accordion.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.title.close::before {
    transform: rotate(180deg);
}

.box {
    display: none;
    /*はじめは非表示*/
    background: #fff;
    padding: 3%;
    margin-top: 2%;
    border-radius: 10px;
}

#faq .circle {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-weight: bold;
    margin-right: 10px;
}

#faq .title h3 {
    color: #fff;
}

#faq .box .circle {
    background: #33a1e0;
}

#faq .box p {
    width: 80%;
}

#faq .open .flex {
    display: flex;
}

#faq .box.flex {
    justify-content: left;
}

@media only screen and (max-width:480px) {
    .title::before {
        width: 14px;
        height: 9px;
    }
}


/*faq　ここまで*/


/*form　ここから*/

#form {
    position: relative;
}

#form .inner {
    width: 650px;
    background: #fff;
    border-radius: 20px;
    padding: 3%;
    margin-top: 50px;
}

#form:before {
    content: '';
    display: inline-block;
    width: 230px;
    height: 220px;
    background-image: url(../img/gokigenya_character_02.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    background-repeat: no-repeat;
    z-index: 1;
    top: -2%;
    right: 10%;
}

input.wpcf7-form-control.wpcf7-text,
.cf7-textarea,
.wpcf7-select {
    border: none;
    background: #ececec;
    width: 65%;
    padding: 10px 2%;
    font-size: 1.6rem;
}

.wpcf7-select {
    width: 69%;
}

.cf7-label {
    width: 30%;
    display: inline-block;
}

.cf7-field {
    margin-bottom: 20px;
}

.cf7-field .flex {
    align-items: flex-start;
}

.zip_box {
    width: 69%;
}

.zip_box .cf7-sub-label {
    width: 29.5%;
    display: inline-block;
}

.zip_box .cf7-col {
    margin-bottom: 20px;
}

.zip_box .cf7-grid--addr1 .cf7-col {
    margin-bottom: 0;
}

.cf7-field--condition.flex,
.cf7-field--photo.flex {
    align-items: flex-start;
}

.cf7-field--condition.flex .wpcf7-form-control-wrap {
    width: 70%;
}

.cf7-field--condition.flex .wpcf7-form-control-wrap .cf7-textarea {
    width: 95.5%;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.web.txt_white.txt_sm {
    margin: 40px auto 0 auto;
    display: block;
}

.cf7-required {
    color: #f87b1b;
}

.cf7-form {
    font-weight: 600;
}

.wpcf7 input[type="file"] {
    font-size: 1.6rem;
    margin-top: 15px;
}

.recaptcha_txt {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 15px;
}

.grecaptcha-badge {
    visibility: hidden;
}

.recaptcha_txt a {
    color: #33a1e0;
    border-bottom: 1px solid #33a1e0;
    padding-bottom: 2px;
}

.wpcf7 .btn {
    line-height: 44px;
}

.cf7-field .file_box {
    width: 70%;
}

.cf7-field .file_box .wpcf7-form-control-wrap:first-child input[type="file"] {
    margin-top: 0;
}

@media only screen and (max-width:1000px) {
    #form:before {
        right: 2%;
        width: 200px;
        height: 200px;
    }
}

@media only screen and (max-width:900px) {
    #form .inner {
        width: 84%;
    }
    .cf7-label {
        width: 100%;
        margin-bottom: 10px;
    }
    input.wpcf7-form-control.wpcf7-text,
    .cf7-textarea {
        width: 96%;
        font-size: 1.6rem;
    }
    .zip_box {
        width: 100%;
    }
    .wpcf7-select {
        width: 100%;
    }
    .cf7-field--condition.flex .wpcf7-form-control-wrap {
        width: 100%;
    }
    input.wpcf7-form-control.wpcf7-text {
        height: 35px;
    }
    .wpcf7 input[type="file"] {
        width: 100%;
    }
}

@media only screen and (max-width:740px) {
    #form.section {
        padding-top: 150px;
    }
    #form:before {
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        right: initial;
        width: 180px;
        height: 170px;
    }
}

@media only screen and (max-width:480px) {
    #form .inner {
        width: 73%;
    }
    #form .inner {
        padding: 8%;
    }
    #form .wpcf7 .txt_sm {
        font-size: 1.6rem;
    }
    #form:before {
        width: 140px;
        height: 140px;
    }
    #form.section {
        padding-top: 120px;
    }
    #form .cf7-actions .btn {
        width: 100%;
    }
}


/*form　ここまで*/


/*footer　ここから*/

#footer .col_left {
    width: 40%;
}

#footer .col_right {
    width: 52%;
}

#footer .footer_logo {
    width: 250px;
}

#footer .btn {
    width: 100%;
    margin-top: 15px;
}

#footer .columns.flex {
    align-items: flex-start;
}

#footer .col_left p {
    margin: 20px 0 10px 0;
    font-weight: bold;
}

#footer .footer_nav li {
    border-bottom: 2px solid #000;
    position: relative;
}

#footer .footer_nav li a {
    color: #000;
    display: block;
    padding: 10px 0;
    font-weight: bold;
}

#footer .footer_nav li:after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url(../img/gokigenya_icon_arrow_bk.svg);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: all 0.3s ease;
}

#footer .footer_nav li:hover:after {
    right: -5px;
}

#footer .col_right .frame_blue {
    display: block;
    border-radius: 0;
    padding: 6px 3% 8px 3%;
    margin-bottom: 10px;
}

#footer .col_right h3 {
    margin-top: 10px;
}

#footer .col_right img {
    margin-top: 10px;
}

#footer .col_right p {
    margin: 10px 0;
    font-weight: 500;
    line-height: 22px;
    text-align: justify;
}

.copyright {
    text-align: end;
    display: block;
}

@media only screen and (max-width:900px) {
    #footer .col_left {
        width: 100%;
    }
    #footer .col_right {
        width: 100%;
        margin-top: 30px;
    }
    #footer .columns {
        margin-top: 0;
    }
    #footer .footer_logo {
        margin: 0px auto 30px auto;
    }
    #footer .col_left p {
        margin: 30px 0 20px 0;
    }
    #footer.section {
        padding: 60px 0 90px 0;
    }
    #footer .col_right .frame_blue {
        font-size: 1.6rem;
    }
    #footer .col_right p {
        margin: 5px 0;
        line-height: 20px;
    }
}

@media only screen and (max-width:480px) {
    #footer .footer_logo {
        width: 200px;
    }
}


/*footer　ここまで*/


/*会社概要　ここから*/

.gk-company .gk-lead {
    max-width: 100%;
}

.gk-company .gk-grid {
    display: block;
}

.gk-company .gk-card {
    width: 800px;
    margin: 0 auto;
}

@media only screen and (max-width:800px) {
    .gk-company .gk-card {
        width: 90%;
    }
}


/*会社概要　ここまで*/


/*サンクスページ　ここから*/

.gk-thanks {
    padding: clamp(34px, 5vw, 62px) 0;
    background: linear-gradient(180deg, var(--gk-bg), #ffffff 70%);
    border-bottom: 1px solid var(--gk-line);
}

.gk-thanks .gk-lead {
    margin: 30px auto;
    max-width: 100%;
}

.gk-thanks .btn {
    background: #34a1e0;
    margin: 0 auto;
    width: 60%;
}

@media only screen and (max-width:480px) {
    .gk-thanks .gk-lead {
        text-align: justify;
    }
}


/*サンクスページ　ここまで*/


/*ポップアップバナー　ここから*/

@media only screen and (max-width:1180px) {
    #WMOQ3WBf1768631688 .wm-modal .wm-modal-body .wm-modal-body-content {
        width: 45% !important;
        max-width: 75% !important;
    }
}

@media only screen and (max-width:800px) {
    #WMOQ3WBf1768631688 .wm-modal .wm-modal-body .wm-modal-body-content {
        width: 75% !important;
        max-width: 75% !important;
    }
}


/*ポップアップバナー　ここまで*/
