/*
Theme Name:
Theme URI:
Description:
Author:
Author URI:
Version:7.7
*/


@charset "utf-8";

/*----------------------------------------------------------------------
base
----------------------------------------------------------------------*/

html {
    min-width: 320px;
    font-size: 100%;
    height: 100%;
}


/*webフォント読み込むまで非表示*/


 html body {
    opacity: 0;
    position: relative;
}

html.loading-delay body,
html.wf-active body {
    transition: opacity 0.7s;
    opacity: 1;
} 

body,
input,
textarea {
    /*font-family: 'Noto Sans JP', sans-serif;*/
    font-family: 'hiramin', 'Noto Serif JP', serif;
    font-style: normal;
    font-weight: 300;
}

body {
    color: #000;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    width: 100%;
    overflow-x: hidden;
    overflow-y: initial;
}

/*header,
footer,
main {
    overflow: hidden;
    width: 100%;
}*/

/*.wf-loading body header {
    opacity: 0;
    transition: 0.5s;
}

.loading-delay body header,
.wf-active body header {
    opacity: 1;
}*/


/*safariの場合*/

::-webkit-full-page-media,
:future,
:root html {
    height: -webkit-fill-available;
}

::-webkit-full-page-media,
:future,
:root body {
    min-height: -webkit-fill-available;
}


/*safariの場合ここまで*/

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

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

a,
a img,
a svg,
a svg path {
    transition: 0.3s;
}

a:hover img,
a:hover {
    opacity: 0.7;
}

span.big {
    font-size: 1.5em;
}

span.red {
    color: #ff3333;
    font-weight: bold;
}

table {
    border-collapse: collapse;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.5em;
}

h3 {
    font-size: 1.17em;
}

dh {
    color: #555;
    font-size: 20px;
    font-weight: bold;
}

strong {
    font-weight: bold;
}

input,
textarea,
button,
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}

input[type="checkbox"] {
    -webkit-appearance: auto;
}


@font-face {
    font-family: 'hiramin';
    font-weight: 300;
    src: url('./fonts/hiramin/HiraMinProN-W3.woff') format('woff'),
         url('./fonts/hiramin/HiraMinProN-W3.otf') format('opentype'),
         url('./fonts/hiramin/HiraMinProN-W3.ttf') format('truetype');
}

@font-face {
    font-family: 'hiramin';
    font-weight: 600;
    src: url('./fonts/hiramin/HiraMinProN-W6.woff') format('woff'),
         url('./fonts/hiramin/HiraMinProN-W6.otf') format('opentype'),
         url('./fonts/hiramin/HiraMinProN-W6.ttf') format('truetype');
}

.HK {
    font-family: 'hirakaku', 'Noto Sans JP', sans-serif;
    font-style: normal;
    font-weight: bold;
}

@font-face {
    font-family: 'hirakaku';
    font-weight: 300;
    src: url('./fonts/hirakaku/HiraKakuProN-W3.woff') format('woff'),
         url('./fonts/hirakaku/HiraKakuProN-W3.otf') format('opentype'),
         url('./fonts/hirakaku/HiraKakuProN-W3.ttf') format('truetype');
}

@font-face {
    font-family: 'hirakaku';
    font-weight: 600;
    src: url('./fonts/hirakaku/HiraKakuProN-W6.woff') format('woff'),
         url('./fonts/hirakaku/HiraKakuProN-W6.otf') format('opentype'),
         url('./fonts/hirakaku/HiraKakuProN-W6.ttf') format('truetype');
}

.Sans {
    font-family: 'Noto Sans JP', sans-serif;
}




@font-face {
    font-family: '';
    font-weight: 300;
    src: url('./fonts/.woff') format('woff'),
         url('./fonts/.otf') format('opentype'),
         url('./fonts/.ttf') format('truetype');
}

/*----------------------------------------------------------------------
all
----------------------------------------------------------------------*/

.inner {
    width: 960px;
    max-width: 94%;
    margin: auto;
}

.inner_inner {
    width: 720px;
    max-width: 100%;
    margin: auto;
}

.w_max {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.fff {
    color: #fff;
}

.id_link_contents {
    height: 0;
    opacity: 0;
    pointer-events: none;
    z-index: -999999;
    /* 高さは要調整 */
    padding-top: 80px;
    margin-top: -80px;
}

.fade_up {
    opacity: 0;
}

.loading-delay .fade_up,
.wf-active .fade_up {
    animation: fade-up-item 0.5s ease-out forwards;
}

.is_fade_up {
    opacity: 0;
}

.is_fade_up.is_fade_up_start {
    animation: fade-up-item 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fade-up-item {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.is_fade_left {
    opacity: 0;
}

.is_fade_left.is_fade_left_start {
    animation: fade-left-item 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fade-left-item {
    0% {
        opacity: 0;
        transform: translateX(-50vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.is_fade_right {
    opacity: 0;
}

.is_fade_right.is_fade_right_start {
    animation: fade-right-item 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fade-right-item {
    0% {
        opacity: 0;
        transform: translateX(50vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade_in {
    opacity: 0;
}

.loading-delay .fade_in,
.wf-active .fade_in {
    animation: fade-in-item 0.8s ease-out forwards;
}

.is_fade_in {
    opacity: 0;
}

.is_fade_in.is_fade_in_start {
    animation: fade-in-item 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fade-in-item {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fade_in_zoom {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.loading-delay .fade_in_zoom,
.wf-active .fade_in_zoom {
    animation: fade-in-zoom-item 0.5s ease-out forwards;
}

@keyframes fade-in-zoom-item {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


p.no_post {
    padding: 80px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}


/*----------------------------------------------------------------------
header
----------------------------------------------------------------------*/

header#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

.header_contents {
    padding: 0;
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding-right: 100px;
}

/*.header_contents:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.9;
}*/

.inner.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    width: 1360px;
}


.header_logo img {
    width: 362px;
    margin: 0;
}

.header_logo p {
    margin-top: 10px;
    font-size: 12px;
    color: #fff;
    opacity: 0.8;
}

.h_tel a {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

p.tel_num {
    font-size: 30px;
    margin-bottom: 7px;
}

p.tel_time {
    font-size: 14px;
    letter-spacing: 0.05em;
}


/*
.header_box.pc-only ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header_box.pc-only ul li {
    margin-left: 15px;
}

.header_box.pc-only ul li a {
    position: relative;
    padding: 3px 0;
}

.header_box.pc-only ul li a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: #000;
    margin: auto;
    transition: 0.3s;
}

.header_box.pc-only ul li a:hover {
    opacity: 1;
}

.header_box.pc-only ul li a:hover:after {
    width: 100%;
}*/





/*----- modal menu -----*/

.modal_btn_wrapper {
    /*調整が必要*/
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 999999;
}

button.menu-trigger,
button.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

button.menu-trigger {
    position: relative;
    width: 36px;
    height: 30px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
}

button.menu-trigger.active {
    width: 36px;
    height: 30px;
}

button.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #000;
    border-radius: 3px;
}

button.menu-trigger span:nth-of-type(1) {
    top: 0;
}

button.menu-trigger span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    width: 100%;
    left: inherit;
    right: 0;
    margin: auto;
}

button.menu-trigger span:nth-of-type(3) {
    bottom: 0;
    width: 100%;
    left: inherit;
    right: 0;
}

button.menu-trigger.active span:nth-of-type(1) {
    transform: translateY(13px) rotate(-45deg);
    width: 36px;
}

button.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}

button.menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-13px) rotate(45deg);
    width: 36px;
}

.modal.js-modal {
    /* height: calc(100vh - 68px); */
    height: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    width: 100%;
}

.modal__bg.js-modal-close {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    background-color: #e7e7e7;
}

.modal_inner {
    height: 100%;
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding-top: 50px; */
    box-sizing: border-box;
}

.modal__content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal__content ul {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    max-height: 500px;
}

.modal__content ul li a {
    font-size: 20px;
}

.modal_content_bottom {
    flex-shrink: 0;
    width: 100%;
}

.modal_content_bottom a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background-color: #ffc107;
}

/*@media screen and (max-width: 500px) {
    button.menu-trigger {
        width: 21px;
        height: 21px;
    }
    button.menu-trigger.active span:nth-of-type(1) {
        transform: translateY(9px) rotate( -45deg);
        width: 21px;
    }
    button.menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-9px) rotate( 45deg);
        width: 21px;
    }
}*/


/*----- end modal menu -----*/



/*----------------------------------------------------------------------
main
----------------------------------------------------------------------*/


/*----------------------------
MV
----------------------------*/

section.mv {
    position: relative;
    /*margin-bottom: 5px;*/
}

section.mv {
    position: relative;
}

.mv_contents {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    /* background-image: url(./img/mv_bg.jpg); */
    /* background-size: cover; */
    /* background-position: center; */
    background-color: #000;
}

.mv_c_left {
    width: 100%;
}

.mv_cl_top {
    position: relative;
}

.mv_title {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 100px;
    padding-left: 100px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

img.mv_title_img {
    width: 97px;
}

.mv_img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    position: relative;
    overflow: hidden;
}

.mv_img:before,
.mv_img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mv_img:before {
    background-color: #fff;
}

.mv_img:after {
    background-color: #000;
    z-index: 1;
    opacity: 0.5;
}

.swiper_contents {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100% !important;
    height: 100% !important;
}

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

.mv_c_right {
    flex-shrink: 0;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv_cr_p {
    width: 100%;
    height: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
}

.mv_cr_p p {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    font-size: 25px;
    line-height: 1;
    color: #fff;
}

.mv_cl_bottom {
    padding: 30px 0;
    padding-left: 100px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mv_cl_bottom p {
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 24px;
    font-weight: bold;
}

/*----------------------------
MV bottom
----------------------------*/

section.mvbottom {
    position: relative;
}

.mvb_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mvb_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mvb_main {
    position: relative;
    z-index: 1;
}

.mvb_m_top {
    padding: 40px 0 50px;
    color: #333;
    text-align: center;
}

.mvb_m_top h2 {
    font-size: 28px;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    font-weight: 600;
}

.mvb_m_top p {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 36px;
    font-weight: 600;
}

p.last {
    margin-bottom: 0 !important;
}

span.p_red {
    color: #ad0e0e;
}

.mvb_m_bottom {
    position: relative;
}

.mvb_mb_bg {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

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

.mvb_m_bottom .inner {
    position: relative;
    z-index: 1;
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.mvb_mb_title {
    width: 600px;
    max-width: 100%;
    margin: auto;
    margin-bottom: 30px;
}

.mvb_mv_info h2 {
    font-size: 28px;
    letter-spacing: 0.05em;
    line-height: 56px;
    font-weight: 600;
    margin-bottom: 40px;
}

.mvb_mv_info p {
    font-size: 18px;
    line-height: 36px;
    font-weight: 600;
}

.mvb_mv_info_bottom {
    margin-top: 24px;
}

.mvb_mv_info_bottom p {
    margin-bottom: 24px;
}

.mvb_mv_info_bottom p.p_big {
    font-size: 28px;
    line-height: 30px;
    letter-spacing: 0.05em;
}

/*----------------------------
section ABOUT
----------------------------*/

section.s_ab {
    position: relative;
    padding-bottom: 80px;
    margin-bottom: 40px;
}

.s_ab_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /*padding-bottom: 270px;*/
    box-sizing: border-box;
}

.s_ab_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s_ab_contents {
    position: relative;
    color: #fff;
    padding-top: 80px;
}

.s_ab_content.c01 {
    margin-bottom: 70px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.s_ab_c_01_info {
    flex-shrink: 0;
    width: 480px;
    margin-right: 48px;
}

.s_ab_c_01_info h3 {
    font-size: 18px;
    letter-spacing: 0.5em;
    line-height: 31px;
    color: #ac8417;
    margin-bottom: 20px;
}

.s_ab_c_01_info h2 {
    font-size: 28px;
    letter-spacing: 0.3em;
    line-height: 42px;
    margin-bottom: 30px;
}

.s_ab_c_01_info h4 {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 27px;
    margin-bottom: 30px;
}

.s_ab_c_01_info h5 {
    margin-bottom: 30px;
}

.s_ab_c_01_info h5,
.s_ab_c_01_info p {
    font-size: 14px;
    line-height: 28px;
}

.s_ab_c02_text {
    text-align: center;
    margin-bottom: 56px;
}

.s_ab_c02_text h3 {
    font-size: 20px;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.s_ab_c02_text p {
    font-size: 14px;
}

.s_ab_content.c01.c01_2 {
    flex-direction: row-reverse;
}

.s_ab_content.c01.c01_2 .s_ab_c_01_info {
    margin-right: 0;
    margin-left: 48px;
    width: 432px;
}

/*----------------------------
section MENU
----------------------------*/

section.s_me {
    padding-bottom: 34px;
    background: linear-gradient(#fff 0%, #f5f2e7 100%);
}

.s_bk_logo {
    margin-bottom: 44px;
}

.s_bk_logo img {
    width: 416px;
}

.s_me_mv {
    position: relative;
    margin-bottom: 20px;
}

.s_me_bg {
    min-height: 400px;
}

.s_me_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s_me_mv_title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.s_me_mv_title .inner_inner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.s_me_mv_title h2 {
    font-size: 31px;
    letter-spacing: 0.3em;
    background-color: #fff;
    padding: 5px 10px;
    margin-top: 10px;
}

.s_mec_title {
    margin-bottom: 30px;
}

.s_mec_title h2 {
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 36px;
    font-weight: 600;
}

.s_me_content ul.s_me_ul {
    width: 100%;
    margin-bottom: 55px;
}

.s_me_content ul.s_me_ul li {
    padding: 15px 0;
    border-bottom: 1px solid #E9DFC3;
    font-size: 13px;
    color: #3b3934;
}

.s_me_content ul.s_me_ul li:last-child {
    border-bottom: 0;
}

.s_mec_info {
    margin: auto;
    margin-bottom: 37px;
    width: 545px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.s_meci_left ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.s_meci_left ul li:last-child {
    margin-bottom: 0;
}

.s_me_l_title {
    background-color: #AC8417;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #fff;
    padding: 6px 8px;
    width: 160px;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 14px;
    box-sizing: border-box;
}

.s_me_l_cntent p.p_bk {
    color: #000;
    font-size: 13px;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.s_me_l_cntent p.price {
    color: #3b3934;
    font-size: 12px;
    letter-spacing: 0.05em;
}

.s_me_l_cntent p.price span {
    font-size: 20px;
    letter-spacing: 0.05em;
    opacity: 0.5;
    margin-left: 5px;
    position: relative;
}

span.line:before,
span.line:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    margin: auto;
    pointer-events: none;
}

span.line:before {
    border-top: 1px solid #EA1919;
}

span.line:after {
    border-bottom: 1px solid #EA1919;
}

.s_me_l_cntent p.p {
    font-size: 12px;
    text-align: center;
    color: #707070;
    margin-top: 5px;
}

.s_meci_right {
    position: absolute;
    right: 0;
}

.s_me_r_content {
    width: 247px;
    height: 43px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.s_me_r_content:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #c61212;
    opacity: 0.7;
}

.s_me_r_content p {
    position: relative;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    z-index: 1;
}

.s_mec_arrow {
    margin-bottom: 20px;
    position: relative;
}

.s_mec_arrow img {
    width: 200px;
}

.s_mec_arrow p {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: max-content;
    height: max-content;
    font-size: 16px;
    font-weight: bold;
}

.s_me_line_btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.s_line_btn {
    width: 330px;
}

.s_line_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.s_line_btn a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: #307625;
}

.s_line_btn a img {
    position: relative;
    z-index: 1;
}

.s_line_btn a:hover {
    opacity: 1;
}

.s_line_btn a:hover img {
    transform: translate(0,5px);
    opacity: 1;
}

.s_po_title_img {
    width: 500px;
    max-width: 100%;
    margin: auto;
}

.s_po_c.s_po_c_1 {
    background-color: #000;
}

.s_po_c.s_po_c_2 {
    background-color: #6C0505;
}

.s_po_c.s_po_c_3 {
    background-color: #34646F;
}

.s_po_c.s_po_c_4 {
    background-color: #51854C;
}







/*----------------------------
section CASE
----------------------------*/

section.s_ca {
    position: relative;
}

.s_ca_top_line {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 15px;
    background-size: 30px 100%;
    background-repeat-x: repeat;
    z-index: 2;
}

.s_ca_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.s_ca_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s_ca_contents {
    position: relative;
    padding: 55px 0 40px;
}

.s_ca_c_title {
    margin-bottom: 40px;
}

.s_ca_c_title h2 {
    color: #fff;
    text-align: center;
    font-size: 34px;
}

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

.s_ca_ul ul li {
    width: 305px;
    margin-bottom: 25px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}




/*----------------------------
section POINT
----------------------------*/

section.s_po {
    padding-top: 40px;
}

.s_po_title img {
    width: 306px;
    margin-bottom: 24px;
}

.s_po_title h2 {
    text-align: center;
    font-size: 26px;
    letter-spacing: 0.3em;
    color: #ac8417;
    margin-bottom: 30px;
}

.s_po_c {
    position: relative;
    padding: 55px 0 40px;
}

.s_po_c a,
.s_po_c {
    color: #fff;
}

.s_po_c .inner {
    position: relative;
    z-index: 1;
}

.s_po_c_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.s_po_c_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s_po_c_bg:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #72510E;
    opacity: 0.6;
}

.s_poc_title {
    text-align: center;
}

.s_poc_title h4 {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 10px;
}

.s_poc_title h3 {
    font-size: 30px;
    letter-spacing: 0.05em;
    line-height: 45px;
}

.s_poc_title p {
    margin-top: 15px;
}

.s_po_line {
    margin: 20px 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    opacity: 0.2;
}

.s_poc_imgs ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.s_poc_imgs ul li {
    width: 305px;
}

.s_poc_imgs ul li p {
    font-size: 13px;
    margin-bottom: 11px;
    white-space: nowrap;
}

.s_poc_imgs ul li img {
    width: 100%;
}

.s_po_c_bg.pk:after {
    background-color: #AD224D;
}

.s_po_c_bg.bl:after {
    background-color: #0B5C6F;
}

.s_po_more {
    background: linear-gradient(#fff 0%, #f5f2e7 100%);
    padding: 40px 0 15px;
}

.s_po_m_title {
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    padding-bottom: 24px;
}

.s_po_m_title h2 {
    font-size: 20px;
    letter-spacing: 0.3em;
    color: #ac8417;
    margin-bottom: 12px;
}

.s_po_m_title p {
    font-size: 12px;
    letter-spacing: 0.05em;
    color: #3b3934;
}

.s_po_m_title:after {
    content: "";
    position: absolute;
    width: 32px;
    height: 1px;
    background: #ac8417;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.s_po_m_contents ul {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.s_po_m_contents ul li {
    width: 160px;
    height: 55px;
    border-radius: 4px;
    background: #fff;
    border: 2px solid #917631;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    padding: 0 7px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 21px;
    text-align: left;
    color: #917631;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.s_po_c_title {
    /*position: absolute;
    top: 0;
    left: 0;*/
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.s_po_c_title h2 {
    font-size: 40px;
    opacity: 0.4;
    letter-spacing: 0.05em;
    text-align: center;
    white-space: nowrap;
}

.s_po_c.s_po_c_3 .s_po_c_title h2,
.s_po_c.s_po_c_4 .s_po_c_title h2 {
    opacity: 0.12;
}

.s_poc_imgs.col1 ul {
    justify-content: center;
}

/*----------------------------
section banner
----------------------------*/

section.banner {
    background-size: cover;
    background-position: center;
    padding: 40px 0;
}

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

.b_c_left {
    color: #fff;
}

.b_c_left img {
    width: 294px;
    margin: 0;
    margin-bottom: 20px;
}

.b_c_left h3 {
    font-size: 20px;
    letter-spacing: 0.12em;
    line-height: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.b_c_left p {
    font-size: 12px;
    letter-spacing: 0.12em;
    line-height: 18px;
    font-weight: bold;
}

/*----------------------------
section COMMENT
----------------------------*/

section.s_co {
    padding: 40px 0;
    background: linear-gradient(#4a9d74 0%, #489b79 7.12%, #2b87c1 100%);
}

.s_co_top {
    margin-bottom: 30px;
}

.s_co_title {
    margin-bottom: 20px;
}

.s_co_title h2 {
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 30px;
    color: #fff;
    margin-bottom: 80px;
}

.s_co_title p {
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 18px;
}

.s_co_profile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 8px;
}

.s_co_p_img {
    width: 60px;
    margin-right: 15px;
}

.s_co_p_text p {
    font-size: 14px;
    line-height: 21px;
    color: #fff;
    margin-bottom: 10px;
}

.s_co_p_text h3 {
    color: #fff;
    font-size: 16px;
    line-height: 21px;
}

.s_co_comment {
    position: relative;
    font-size: 14px;
    line-height: 28px;
    padding: 18px 15px;
    border-radius: 8px;
    background: #ded5c0;
}

.s_co_comment img {
    position: absolute;
    top: -6.5px;
    left: 21px;
    width: 19px;
}

.s_co_bottom {
    margin-top: 20px;
    border-radius: 8px;
    background: #d5d5d5;
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
}

.s_co_bottom h3 {
    font-size: 14px;
    margin-bottom: 15px;
}

.s_co_bottom p {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 1em;
    font-weight: 400;
}

.s_co_bottom a {
    text-decoration: underline;
    font-size: 12px;
    line-height: 18px;
    text-align: left;
    color: #1150c7;
    font-weight: 400;
}


/*----------------------------
section Twitter
----------------------------*/

section.s_tw {
    padding: 80px 0;
}

.s_tw_contents {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.s_tw_title {
    position: relative;
}

.s_tw_title h2 {
    color: #ac8417;
    font-size: 32px;
    letter-spacing: 0.3em;
    margin-bottom: 16px;
}

.s_tw_title p {
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #3b3934;
    padding-bottom: 40px;
}

.s_tw_title:after {
    content: "";
    position: absolute;
    width: 32px;
    height: 1px;
    background: #ac8417;
    left: 0;
    bottom: 0;
}

.s_tw_content {
    margin-right: 120px;
    width: 570px;
    height: 770px;
    background-color: #d9d9d9;
}

.twitter-timeline {
    width: 100% !important;
    height: 100% !important;
}

.twitter-timeline iframe {
    width: 100% !important;
    height: 100% !important;
}

/*----------------------------------------------------------------------
footer
----------------------------------------------------------------------*/

.pop_up_links {
    display: block;
    z-index: 999;
}

.pul_contents {
    right: 0;
    z-index: 99;
    width: 360px;
    position: fixed;
    bottom: 0px;
    transform: translate(380px,0);
    transition: transform 0.7s ease-in-out;
}

.pul_contents.active {
    transform: translate(0,0);
}

.pul_contents a:hover,
.pul_contents a:hover img {
    opacity: 1;
}

footer#footer {
    background-color: #3B3934;
    padding: 60px 0 90px;
    color: #fff;
    width: 100%;
}

.footer_contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.f_logo {
    margin-bottom: 20px;
}

.f_logo img {
    width: 362px;
    margin-bottom: 10px;
}

.f_logo p {
    text-align: center;
    font-size: 12px;
    color: #fff;
    opacity: 0.8;
}

.f_sns {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.f_sns p {
    font-size: 8px;
    letter-spacing: 0.3em;
    opacity: 0.8;
    margin-bottom: 12px;
}

.f_sns ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.f_sns ul li {
    margin: 0 8px;
    width: 40px;
}

.copyright h4 {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-align: center;
    opacity: 0.8;
}

/*----------------------------------------------------------------------

media query

----------------------------------------------------------------------*/

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

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

    .inner {
        /*width: 960px;*/
        width: 87.273vw;
    }

    .inner_inner {
        /*width: 720px;*/
        width: 65.455vw;
    }

    .mv_title {
        padding-left: 9.091vw;
    }

    img.mv_title_img {
        width: 8.818vw;
    }

    .mv_img {
        height: 63.636vw;
    }

    .mv_c_right {
        width: 9.091vw;
    }

    .mv_cr_p p {
        font-size: 2.273vw;
    }

    .mv_cl_bottom {
        padding: 2.727vw 0;
        padding-left: 9.091vw;
    }

    .mv_cl_bottom p {
        font-size: 1.455vw;
        line-height: 2.182vw;
    }

    .mvb_m_top {
        padding: 3.636vw 0 4.545vw;
    }

    .mvb_m_top h2 {
        font-size: 2.545vw;
        margin-bottom: 3.636vw;
    }

    .mvb_m_top p {
        margin-bottom: 3.636vw;
        font-size: 1.636vw;
        line-height: 3.273vw;
    }

    .mvb_m_bottom .inner {
        padding: 5.455vw 0;
    }

    .mvb_mb_title {
        width: 54.545vw;
        margin-bottom: 2.727vw;
    }

    .mvb_mv_info h2 {
        font-size: 2.545vw;
        line-height: 5.091vw;
        margin-bottom: 3.636vw;
    }

    .mvb_mv_info p {
        font-size: 1.636vw;
        line-height: 3.273vw;
    }

    .mvb_mv_info_bottom {
        margin-top: 2.182vw;
    }

    .mvb_mv_info_bottom p {
        margin-bottom: 2.182vw;
    }

    .mvb_mv_info_bottom p.p_big {
        font-size: 2.545vw;
        line-height: 2.727vw;
    }


    section.s_ab {
        padding-bottom: 7.273vw;
        margin-bottom: 3.6365vw;
    }

    .s_ab_bg {
        /*padding-bottom: 24.545vw;*/
    }

    .s_ab_contents {
        padding-top: 7.273vw;
    }

    .s_ab_content.c01 {
        margin-bottom: 6.364vw;
    }

    .s_ab_c_01_info {
        width: 43.636vw;
        margin-right: 4.364vw;
    }

    .s_ab_c_01_info h3 {
        font-size: 1.636vw;
        line-height: 2.818vw;
        margin-bottom: 1.818vw;
    }

    .s_ab_c_01_info h2 {
        font-size: 2.545vw;
        line-height: 3.818vw;
        margin-bottom: 2.727vw;
    }

    .s_ab_c_01_info h4 {
        font-size: 1.636vw;
        line-height: 2.455vw;
        margin-bottom: 2.727vw;
    }

    .s_ab_c_01_info h5 {
        margin-bottom: 2.727vw;
    }

    .s_ab_c_01_info h5,
    .s_ab_c_01_info p {
        font-size: 1.273vw;
        line-height: 2.545vw;
    }

    .s_ab_c02_text {
        margin-bottom: 5.091vw;
    }

    .s_ab_c02_text h3 {
        font-size: 1.818vw;
        margin-bottom: 1.455vw;
    }

    .s_ab_c02_text p {
        font-size: 1.273vw;
    }

    .s_ab_content.c01.c01_2 .s_ab_c_01_info {
        margin-left: 4.364vw;
        width: 39.273vw;
    }

    section.s_me {
        padding-bottom: 3.091vw;
    }

    .s_bk_logo {
        margin-bottom: 4vw;
    }

    .s_bk_logo img {
        width: 37.818vw;
    }

    .s_me_mv {
        margin-bottom: 1.818vw;
    }

    .s_me_bg {
        min-height: 36.364vw;
    }

    .s_me_mv_title h2 {
        font-size: 2.818vw;
        padding: 0.455vw 0.909vw;
        margin-top: 0.909vw;
    }

    .s_mec_title {
        margin-bottom: 2.727vw;
    }

    .s_mec_title h2 {
        font-size: 2.182vw;
        line-height: 3.273vw;
    }

    .s_me_content ul.s_me_ul {
        margin-bottom: 5vw;
    }

    .s_me_content ul.s_me_ul li {
        padding: 1.364vw 0;
        font-size: 1.182vw;
    }

    .s_mec_info {
        margin-bottom: 3.364vw;
        width: 49.545vw;
    }

    .s_meci_left ul li {
        margin-bottom: 1.364vw;
    }

    .s_me_l_title {
        font-size: 1.273vw;
        padding: 0.545vw 0.727vw;
        width: 14.545vw;
        margin-right: 1.273vw;
    }

    .s_me_l_cntent p.p_bk {
        font-size: 1.182vw;
        margin-bottom: 0.455vw;
    }

    .s_me_l_cntent p.price {
        font-size: 1.091vw;
    }

    .s_me_l_cntent p.price span {
        font-size: 1.818vw;
        margin-left: 0.455vw;
    }

    span.line:before,
    span.line:after {
        height: 0.455vw;
    }

    .s_me_l_cntent p.p {
        font-size: 1.091vw;
        margin-top: 0.455vw;
    }

    .s_me_r_content {
        width: 22.455vw;
        height: 3.909vw;
    }

    .s_me_r_content p {
        font-size: 1.091vw;
        line-height: 1.636vw;
    }

    .s_mec_arrow {
        margin-bottom: 1.818vw;
    }

    .s_mec_arrow img {
        width: 18.182vw;
    }

    .s_mec_arrow p {
        font-size: 1.455vw;
    }

    .s_line_btn {
        width: 30vw;
    }

    .s_line_btn a:after {
        border-radius: 0.364vw;
    }

    .s_ca_contents {
        padding: 5vw 0 3.636vw;
    }

    .s_ca_c_title {
        margin-bottom: 3.636vw;
    }

    .s_ca_c_title h2 {
        font-size: 3.091vw;
    }

    .s_ca_ul ul li {
        width: 27.727vw;
        margin-bottom: 2.273vw;
    }

    section.s_po {
        padding-top: 3.636vw;
    }

    .s_po_title img {
        width: 27.818vw;
        margin-bottom: 2.182vw;
    }

    .s_po_title h2 {
        font-size: 2.364vw;
        margin-bottom: 2.727vw;
    }

    .s_po_c {
        padding: 3.636vw 0;
    }

    .s_poc_title h4 {
        font-size: 1.455vw;
        line-height: 1.636vw;
        margin-bottom: 0.909vw;
    }

    .s_poc_title h3 {
        font-size: 2.727vw;
        line-height: 4.091vw;
    }

    .s_poc_title p {
        margin-top: 1.364vw;
    }

    .s_po_line {
        margin: 1.818vw 0;
    }

    .s_poc_imgs ul li {
        width: 27.727vw;
    }

    .s_poc_imgs ul li p {
        font-size: 1.182vw;
        margin-bottom: 1vw;
    }

    .s_po_more {
        padding: 3.636vw 0 1.364vw;
    }

    .s_po_m_title {
        margin-bottom: 2.727vw;
        padding-bottom: 2.182vw;
    }

    .s_po_m_title h2 {
        font-size: 1.818vw;
        margin-bottom: 1.091vw;
    }

    .s_po_m_title p {
        font-size: 1.091vw;
        letter-spacing: 0.05em;
    }

    .s_po_m_title:after {
        width: 2.909vw;
    }

    .s_po_m_contents ul li {
        width: 14.545vw;
        height: 5vw;
        border-radius: 0.364vw;
        padding: 0 0.636vw;
        font-size: 1.273vw;
        line-height: 1.909vw;
        margin-bottom: 2.727vw;
    }

    section.banner {
        padding: 3.636vw 0;
    }

    .b_c_left img {
        width: 26.727vw;
        margin-bottom: 1.818vw;
    }

    .b_c_left h3 {
        font-size: 1.818vw;
        line-height: 2.727vw;
        margin-bottom: 1.818vw;
    }

    .b_c_left p {
        font-size: 1.091vw;
        line-height: 1.636vw;
    }

    section.s_co {
        padding: 3.636vw 0;
    }

    .s_co_top {
        margin-bottom: 2.727vw;
    }

    .s_co_title {
        margin-bottom: 1.818vw;
    }

    .s_co_title h2 {
        font-size: 1.818vw;
        line-height: 2.727vw;
        margin-bottom: 7.273vw;
    }

    .s_co_title p {
        font-size: 1.091vw;
        line-height: 1.636vw;
    }

    .s_co_profile {
        margin-bottom: 0.727vw;
    }

    .s_co_p_img {
        width: 5.455vw;
        margin-right: 1.364vw;
    }

    .s_co_p_text p {
        font-size: 1.273vw;
        line-height: 1.909vw;
        margin-bottom: 0.909vw;
    }

    .s_co_p_text h3 {
        font-size: 1.455vw;
        line-height: 1.909vw;
    }

    .s_co_comment {
        font-size: 1.273vw;
        line-height: 2.545vw;
        padding: 1.636vw 1.364vw;
        border-radius: 0.727vw;
    }

    .s_co_comment img {
        top: -0.591vw;
        left: 1.909vw;
        width: 1.727vw;
    }

    .s_co_bottom {
        margin-top: 1.818vw;
        border-radius: 0.727vw;
        padding: 1.364vw;
    }

    .s_co_bottom h3 {
        font-size: 1.273vw;
        margin-bottom: 1.364vw;
    }

    .s_co_bottom p {
        font-size: 1.091vw;
        line-height: 1.636vw;
    }

    .s_co_bottom a {
        font-size: 1.091vw;
        line-height: 1.636vw;
    }

    section.s_tw {
        padding: 7.273vw 0;
    }

    .s_tw_title h2 {
        font-size: 2.909vw;
        margin-bottom: 1.455vw;
    }

    .s_tw_title p {
        font-size: 1.455vw;
        padding-bottom: 3.636vw;
    }

    .s_tw_title:after {
        width: 2.909vw;
    }

    .s_tw_content {
        margin-right: 10.909vw;
        width: 51.818vw;
        /*height: 70vw;*/
    }

    .pul_contents {
        width: 32.727vw;
        transform: translate(34vw,0);
    }



/*
    .mv_title {
        padding-left: 100px;
    }

    img.mv_title_img {
        width: 97px;
    }

    .mv_img {
        height: 700px;
    }

    .mv_c_right {
        width: 100px;
    }

    .mv_cr_p p {
        font-size: 25px;
    }

    .mv_cl_bottom {
        padding: 30px 0;
        padding-left: 100px;
    }

    .mv_cl_bottom p {
        font-size: 16px;
        line-height: 24px;
    }

    section.s_ab {
        padding-bottom: 80px;
    }

    .s_ab_bg {
        padding-bottom: 270px;
    }

    .s_ab_contents {
        padding-top: 80px;
    }

    .s_ab_content.c01 {
        margin-bottom: 70px;
    }

    .s_ab_c_01_info {
        width: 480px;
        margin-right: 48px;
    }

    .s_ab_c_01_info h3 {
        font-size: 18px;
        line-height: 31px;
        margin-bottom: 20px;
    }

    .s_ab_c_01_info h2 {
        font-size: 28px;
        line-height: 42px;
        margin-bottom: 30px;
    }

    .s_ab_c_01_info h4 {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 30px;
    }

    .s_ab_c_01_info p {
        font-size: 14px;
        line-height: 28px;
    }

    .s_ab_c02_text {
        margin-bottom: 56px;
    }

    .s_ab_c02_text h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .s_ab_c02_text p {
        font-size: 14px;
    }

    section.s_me {
        padding-bottom: 34px;
    }

    .s_bk_logo {
        margin-bottom: 44px;
    }

    .s_bk_logo img {
        width: 416px;
    }

    .s_me_mv {
        margin-bottom: 20px;
    }

    .s_me_bg {
        min-height: 400px;
    }

    .s_me_mv_title h2 {
        font-size: 31px;
        padding: 5px 10px;
        margin-top: 10px;
    }

    .s_mec_title {
        margin-bottom: 30px;
    }

    .s_mec_title h2 {
        font-size: 24px;
        line-height: 36px;
    }

    .s_me_content ul.s_me_ul {
        margin-bottom: 55px;
    }

    .s_me_content ul.s_me_ul li {
        padding: 15px 0;
        font-size: 13px;
    }

    .s_mec_info {
        margin-bottom: 37px;
        width: 545px;
    }

    .s_meci_left ul li {
        margin-bottom: 15px;
    }

    .s_me_l_title {
        font-size: 14px;
        padding: 6px 8px;
        width: 160px;
        margin-right: 14px;
    }

    .s_me_l_cntent p.p_bk {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .s_me_l_cntent p.price {
        font-size: 12px;
    }

    .s_me_l_cntent p.price span {
        font-size: 20px;
        margin-left: 5px;
    }

    span.line:before,
    span.line:after {
        height: 5px;
    }

    .s_me_l_cntent p.p {
        font-size: 12px;
        margin-top: 5px;
    }

    .s_me_r_content {
        width: 247px;
        height: 43px;
    }

    .s_me_r_content p {
        font-size: 12px;
        line-height: 18px;
    }

    .s_mec_arrow {
        margin-bottom: 20px;
    }

    .s_mec_arrow img {
        width: 200px;
    }

    .s_mec_arrow p {
        font-size: 16px;
    }

    .s_line_btn {
        width: 330px;
    }

    .s_line_btn a:after {
        border-radius: 4px;
    }

    .s_ca_contents {
        padding: 55px 0 40px;
    }

    .s_ca_c_title {
        margin-bottom: 40px;
    }

    .s_ca_c_title h2 {
        font-size: 34px;
    }

    .s_ca_ul ul li {
        width: 305px;
        margin-bottom: 25px;
    }

    section.s_po {
        padding-top: 40px;
    }

    .s_po_title img {
        width: 306px;
        margin-bottom: 24px;
    }

    .s_po_title h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .s_po_c {
        padding: 40px 0;
    }

    .s_poc_title h4 {
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 10px;
    }

    .s_poc_title h3 {
        font-size: 30px;
        line-height: 45px;
    }

    .s_poc_title p {
        margin-top: 15px;
    }

    .s_po_line {
        margin: 20px 0;
    }

    .s_poc_imgs ul li {
        width: 305px;
    }

    .s_poc_imgs ul li p {
        font-size: 13px;
        margin-bottom: 11px;
    }

    .s_po_more {
        padding: 40px 0 15px;
    }

    .s_po_m_title {
        margin-bottom: 30px;
        padding-bottom: 24px;
    }

    .s_po_m_title h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .s_po_m_title p {
        font-size: 12px;
        letter-spacing: 0.05em;
    }

    .s_po_m_title:after {
        width: 32px;
    }

    .s_po_m_contents ul li {
        width: 160px;
        height: 55px;
        border-radius: 4px;
        padding: 0 7px;
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 30px;
    }

    section.banner {
        padding: 40px 0;
    }

    .b_c_left img {
        width: 294px;
        margin-bottom: 20px;
    }

    .b_c_left h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .b_c_left p {
        font-size: 12px;
        line-height: 18px;
    }

    section.s_co {
        padding: 40px 0;
    }

    .s_co_top {
        margin-bottom: 30px;
    }

    .s_co_title {
        margin-bottom: 20px;
    }

    .s_co_title h2 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 80px;
    }

    .s_co_title p {
        font-size: 12px;
        line-height: 18px;
    }

    .s_co_profile {
        margin-bottom: 8px;
    }

    .s_co_p_img {
        width: 60px;
        margin-right: 15px;
    }

    .s_co_p_text p {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 10px;
    }

    .s_co_p_text h3 {
        font-size: 16px;
        line-height: 21px;
    }

    .s_co_comment {
        font-size: 14px;
        line-height: 28px;
        padding: 18px 15px;
        border-radius: 8px;
    }

    .s_co_comment img {
        top: -6.5px;
        left: 21px;
        width: 19px;
    }

    .s_co_bottom {
        margin-top: 20px;
        border-radius: 8px;
        padding: 15px;
    }

    .s_co_bottom h3 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .s_co_bottom p {
        font-size: 12px;
        line-height: 18px;
    }

    .s_co_bottom a {
        font-size: 12px;
        line-height: 18px;
    }

    section.s_tw {
        padding: 80px 0;
    }

    .s_tw_title h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .s_tw_title p {
        font-size: 16px;
        padding-bottom: 40px;
    }

    .s_tw_title:after {
        width: 32px;
    }

    .s_tw_content {
        margin-right: 120px;
        width: 570px;
        height: 770px;
    }

    .pul_contents {
        width: 360px;
    }
*/


}

@media screen and (max-width: 850px) {
    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }
    .mmb-10 {
        margin-bottom: 10px;
    }
    .mmb-20 {
        margin-bottom: 20px;
    }
    .mmb-30 {
        margin-bottom: 30px;
    }
    .mmb-40 {
        margin-bottom: 40px;
    }





}

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

    .inner {
        width: 327px;
    }

    .header_contents {
        padding-right: 80px;
        height: 80px;
    }

    .header_box {
        display: none;
    }

    .header_logo img {
        width: 260px;
    }

    .header_logo p {
        display: none;
    }

    .mv_img {
        height: 536px;
    }

    .mv_title {
        padding-left: 0;
        padding-top: 80px;
    }

    img.mv_title_img {
        width: 97px;
    }

    .mv_cl_bottom {
        padding: 10px 0;
        padding-left: 16px;
    }

    .mv_cl_bottom {
        padding: 10px 0;
        padding-left: 16px;
    }

    .mv_cl_bottom p {
        font-size: 13px;
        line-height: 21px;
    }

    .mv_c_right {
        width: 40px;
    }

    .mv_cr_p p {
        font-size: 20px;
    }

    .s_ab_bg {
        /*padding-bottom: 0;*/
    }

    .mvb_m_top {
        padding: 40px 0 40px;
    }

    .mvb_m_top h2 {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .mvb_m_top p {
        margin-bottom: 24px;
        font-size: 16px;
        line-height: 28px;
    }

    span.p_red {
        font-size: 14px;
        font-weight: bold;
    }

    .mvb_m_top p.last {
        font-size: 14px;
    }

    .mvb_bg {
        height: 500px;
    }

    .mvb_mb_bg {
        /*padding-bottom: 70px;*/
        box-sizing: border-box;
    }

    .mvb_m_bottom:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 80px;
        width: 100%;
        background-color: #000;
        z-index: -1;
    }

    .mvb_m_bottom .inner {
        padding: 45px 0 55px;
    }

    .mvb_mb_title {
        width: 285px;
        margin-bottom: 35px;
    }

    .mvb_mv_info h2 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .mvb_mv_info p {
        font-size: 16px;
        line-height: 45px;
    }

    .mvb_mv_info_bottom {
        margin-top: 10px;
    }

    .mvb_mv_info_bottom p {
        margin-bottom: 18px;
        line-height: 1;
    }

    .mvb_mv_info_bottom p.p_big {
        font-size: 14px;
        line-height: 20px;
    }

    .mvb_mv_info_bottom p.p_big span {
        font-size: 20px;
        font-weight: bold;
    }

    section.s_ab {
        padding-bottom: 80px;
        margin-bottom: 0;
    }

    .s_ab_contents {
        padding-top: 50px;
    }

    .s_ab_content.c01 {
        width: 100%;
        margin-bottom: 40px;
    }

    .s_ab_c_01_info {
        width: 100%;
        margin-right: 0;
    }

    .s_ab_c_01_img.sp-only {
        margin-bottom: 40px;
    }

    .s_ab_c_01_img_inner {
        width: 315px;
        max-width: 85%;
        margin-right: 0;
        margin: auto;
    }

    .s_ab_c_01_info h3 {
        font-size: 18px;
        line-height: 31px;
        margin-bottom: 24px;
    }

    .s_ab_c_01_info h2 {
        font-size: 26px;
        line-height: 45px;
        margin-bottom: 40px;
        text-align: center;
    }

    .s_ab_c_01_info h4 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 32px;
    }

    .s_ab_c_01_info h4 {
        font-size: 24px;
        line-height: 42px;
        margin-bottom: 32px;
        text-align: center;
    }

    .s_ab_c_01_info h5 {
        margin-bottom: 25px;
        text-align: center;
        font-size: 16px;
        line-height: 28px;
    }

    .s_ab_c_01_info p {
        font-size: 14px;
        line-height: 28px;
        text-align: center;
    }

    .s_ab_c02_text {
        margin-bottom: 0;
    }

    .s_ab_c02_text h3 {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 16px;
    }

    .s_ab_c02_text p {
        font-size: 12px;
    }

    .s_ab_content.c01.c01_2 {
        flex-direction: column-reverse;
    }

    .s_ab_content.c01.c01_2 .s_ab_c_01_info {
        margin-left: 0;
        margin-top: 32px;
        width: 100%;
    }

    section.s_me {
        padding-bottom: 26px;
        padding-top: 14px;
    }

    section.s_me .inner {
        width: 355px;
    }

    .s_bk_logo {
        margin-bottom: 0;
    }

    .s_bk_logo img {
        width: 416px;
    }

    .s_me_mv {
        margin-bottom: 22px;
    }

    .s_me_bg {
        min-height: auto;
    }

    .s_me_bg img {
        width: 327px;
        margin: 0;
        margin-left: auto;
    }

    .inner_inner {
        width: 100%;
    }

    .s_me_mv_title h2 {
        font-size: 20px;
        padding: 5px 10px;
    }

    .s_mec_title {
        margin-bottom: 30px;
    }

    .s_mec_title h2 {
        font-size: 20px;
        line-height: 30px;
    }

    .s_me_content ul.s_me_ul {
        margin-bottom: 20px;
    }

    .s_me_content ul.s_me_ul li {
        padding: 16px 0;
        font-size: 13px;
    }

    .s_mec_info {
        margin-bottom: 10px;
        width: 100%;
        flex-direction: column;
        padding-bottom: 22px;
    }

    .s_meci_left {
        width: 100%;
        max-width: 335px;
    }

    .s_meci_left ul {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .s_meci_left ul li {
        margin-bottom: 0;
        flex-direction: column;
        align-items: flex-end;
    }

    .s_me_l_cntent p.price {
        font-size: 12px;
    }

    .s_me_l_cntent p.price span {
        font-size: 20px;
        margin-left: 5px;
    }

    p.p_bk.sp-only {
        font-size: 13px;
        letter-spacing: 0.05em;
        margin-bottom: 5px;
    }

    .s_me_l_title {
        font-size: 14px;
        padding: 6px 8px;
        width: 160px;
        margin-right: 0;
        margin-bottom: 5px;
    }

    span.line:before,
    span.line:after {
        height: 5px;
    }

    .s_meci_right {
        right: 0;
        left: 0;
        bottom: 0;
        margin: auto;
        width: max-content;
        max-width: 100%;
    }

    .s_me_r_content {
        width: 247px;
        height: 43px;
    }

    .s_me_r_content p {
        font-size: 12px;
        line-height: 18px;
    }

    .s_mec_arrow {
        margin-bottom: 20px;
    }

    .s_mec_arrow img {
        width: 200px;
    }

    .s_mec_arrow p {
        font-size: 16px;
    }

    .s_line_btn {
        width: 330px;
        max-width: 100%;
    }

    .s_line_btn a:after {
        border-radius: 4px;
    }

    .s_ca_contents {
        padding: 50px 0;
    }

    .s_ca_contents .inner {
        width: 100%;
        max-width: 100%;
    }

    .s_ca_c_title {
        margin-bottom: 20px;
    }

    .s_ca_c_title h2 {
        font-size: 24px;
        line-height: 36px;
    }

    .s_ca_ul {
        width: 100%;
        overflow-y: hidden;
        overflow-x: scroll;
        -ms-overflow-style: none;
    }

    .s_ca_ul::-webkit-scrollbar{
      display: none;
    }

    .s_ca_ul ul {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: max-content;
        padding-left: 20px;
    }

    .s_ca_ul ul li {
        width: 305px;
        margin-bottom: 0;
        margin-right: 20px;
    }

    section.s_po {
        padding-top: 40px;
    }

    .s_po_c_title {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        margin-bottom: 0;
        overflow: hidden;
    }

    .s_po_c_title h2 {
        text-align: left;
        font-size: 40px;
    }

    .s_po_c_title h2.small_h2 {
        font-size: 35px;
    }

    .s_po_c.s_po_c_3 .s_po_c_title h2,
    .s_po_c.s_po_c_4 .s_po_c_title h2 {
        letter-spacing: 0;
    }

    .s_po_title img {
        width: 305px;
        margin-bottom: 24px;
    }

    .s_po_title h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .s_po_c {
        padding: 55px 0 40px;
    }

    .s_poc_title h4 {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 10px;
    }

    .s_poc_title {
        text-align: left;
    }

    .s_poc_title h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .s_po_c.s_po_c_3 .s_poc_title h3 {
        font-size: 19px;
    }

    .s_poc_title p {
        margin-top: 10px;
        font-size: 10px;
        letter-spacing: 0.05em;
    }

    .s_po_line {
        margin: 20px 0;
    }

    /*.s_poc_imgs {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        overflow-y: hidden;
        overflow-x: scroll;
        -ms-overflow-style: none;
    }*/

    /*.s_poc_imgs::-webkit-scrollbar{
      display: none;
    }*/

    .s_poc_imgs ul {
        width: 100%;
        flex-wrap: wrap;
    }

    .s_poc_imgs ul li {
        width: 156px;
        margin-right: 0;
    }

    .s_poc_imgs ul li:first-child {
        width: 100%;
        margin-bottom: 20px;
    }

    .s_poc_imgs ul li p {
        font-size: 13px;
        margin-bottom: -8px;
        line-height: 18px;
        position: relative;
    }

    .s_poc_imgs ul li:first-child p {
        font-size: 13px;
        line-height: 1;
        margin-bottom: 11px;
    }

    .s_po_more {
        padding: 40px 0 15px;
    }

    .s_po_m_title {
        margin-bottom: 29px;
        padding-bottom: 24px;
    }

    .s_po_m_title h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .s_po_m_title p {
        font-size: 12px;
    }

    .s_po_m_title:after {
        width: 32px;
    }

    .s_po_more .inner {
        width: 335px;
    }

    .s_po_m_contents ul li {
        width: 160px;
        height: 55px;
        border-radius: 4px;
        padding: 0 7px;
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 15px;
    }

    .s_poc_imgs.col1 ul li {
        margin-bottom: 0;
    }

    .banner_contents {
        flex-direction: column;
        justify-content: flex-start;
    }

    .b_c_left {
        margin-bottom: 15px;
    }

    .b_c_left img {
        width: 294px;
        margin: auto;
        margin-bottom: 20px;
    }

    section.banner {
        padding: 40px 0;
    }

    .b_c_left h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
        text-align: center;
    }

    .b_c_left p {
        font-size: 12px;
        line-height: 18px;
        text-align: center;
        white-space: nowrap;
    }

    section.s_co {
        padding: 40px 0;
    }

    .s_co_top {
        margin-bottom: 20px;
    }

    .s_co_title {
        margin-bottom: 20px;
    }

    .s_co_title h2 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .s_co_title p {
        font-size: 12px;
        line-height: 18px;
    }

    .s_co_profile {
        margin-bottom: 14px;
    }

    .s_co_comment {
        font-size: 14px;
        line-height: 28px;
        padding: 12px 10px;
        border-radius: 8px;
    }

    .s_co_comment img {
        top: -12px;
        left: 21px;
        width: 19px;
    }

    .s_co_bottom {
        margin-top: 20px;
        border-radius: 8px;
        padding: 15px;
    }

    .s_co_bottom h3 {
        font-size: 14px;
        margin-bottom: 1em;
    }

    .s_co_bottom p {
        font-size: 12px;
        line-height: 18px;
    }

    .s_co_bottom a {
        font-size: 12px;
        line-height: 18px;
    }

    .s_co_p_img {
        width: 60px;
        margin-right: 15px;
    }

    .s_co_p_text p {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 10px;
    }

    .s_co_p_text h3 {
        font-size: 16px;
        line-height: 21px;
    }

    section.s_tw {
        padding: 56px 0 140px;
    }

    .s_tw_contents {
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
    }

    .s_tw_title {
        margin-bottom: 40px;
        text-align: center;
    }

    .s_tw_title h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .s_tw_title p {
        font-size: 12px;
        padding-bottom: 24px;
    }

    .s_tw_title:after {
        width: 32px;
        right: 0;
        margin: auto;
    }

    .s_tw_content {
        margin-right: 0;
        width: 100%;
        /*height: 765px;*/
    }

    .pul_contents a:last-child {
        /*display: none;*/
    }

    .pul_contents {
        width: 300px;
        transform: translate(310px,0);
    }

    .f_logo p {
        font-size: 8px;
        white-space: nowrap;
    }

    .f_logo img {
        width: 278px;
        margin-bottom: 8px;
    }

    .f_sns {
        margin-bottom: 24px;
    }

    .f_sns ul li {
        margin: 0 8px;
        width: 32px;
    }

    .copyright h4 {
        font-size: 8px;
        line-height: 12px;
    }

}

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

    .mv_cl_bottom {
        align-items: flex-start;
    }

    .s_ab_c_01_img.sp-only {
         left: 50%; 
         right: 50%; 
         margin-left: -50vw; 
         margin-right: -50vw; 
         width: 100vw; 
         position: relative; 
    }

    .mvb_m_bottom .inner {
        padding: 33px 0 55px;
    }

    .s_ab_c_01_info h2 {
        text-align: left;
    }

    .s_ab_c_01_img_inner {
        margin-left: 0;
    }

}

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


    .inner {
        width: 87.2vw;
    }

    .header_contents {
        padding-right: 21.333vw;
        height: 21.333vw;
    }

    .header_box {
        display: none;
    }

    .header_logo img {
        width: 69.333vw;
    }

    .header_logo p {
        display: none;
    }

    .mv_img {
        height: 142.933vw;
    }

    .mv_title {
        padding-left: 0;
        padding-top: 21.333vw;
    }

    img.mv_title_img {
        width: 25.867vw;
    }

    .mv_cl_bottom {
        padding: 2.667vw 0;
        padding-left: 4.267vw;
    }

    .mv_cl_bottom {
        padding: 2.667vw 0;
        padding-left: 4.267vw;
    }

    .mv_cl_bottom p {
        font-size: 3.467vw;
        line-height: 5.6vw;
    }

    .mv_c_right {
        width: 10.667vw;
    }

    .mv_cr_p p {
        font-size: 5.333vw;
    }

    .s_ab_bg {
        /*padding-bottom: 0;*/
    }

    .mvb_m_top {
        padding: 10.667vw 0 10.667vw;
    }

    .mvb_m_top h2 {
        font-size: 5.333vw;
        margin-bottom: 10.667vw;
    }

    .mvb_m_top p {
        margin-bottom: 6.4vw;
        font-size: 4.267vw;
        line-height: 7.467vw;
    }

    span.p_red {
        font-size: 3.733vw;
        font-weight: bold;
    }

    .mvb_m_top p.last {
        font-size: 3.733vw;
    }

    .mvb_bg {
        height: 133.333vw;
    }

    .mvb_mb_bg {
        /*padding-bottom: 18.667vw;*/
        box-sizing: border-box;
    }

    .mvb_m_bottom:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 21.333vw;
        width: 100%;
        background-color: #000;
        z-index: -1;
    }

    .mvb_m_bottom .inner {
        padding: 12vw 0 14.667vw;
    }

    .mvb_mb_title {
        width: 76vw;
        margin-bottom: 9.333vw;
    }

    .mvb_mv_info h2 {
        font-size: 5.333vw;
        line-height: 8vw;
        margin-bottom: 5.333vw;
    }

    .mvb_mv_info p {
        font-size: 4.267vw;
        line-height: 12vw;
    }

    .mvb_mv_info_bottom {
        margin-top: 2.667vw;
    }

    .mvb_mv_info_bottom p {
        margin-bottom: 4.8vw;
        line-height: 1;
    }

    .mvb_mv_info_bottom p.p_big {
        font-size: 3.733vw;
        line-height: 5.333vw;
    }

    .mvb_mv_info_bottom p.p_big span {
        font-size: 5.333vw;
        font-weight: bold;
    }

    section.s_ab {
        padding-bottom: 21.333vw;
        margin-bottom: 0;
    }

    .s_ab_contents {
        padding-top: 13.333vw;
    }

    .s_ab_content.c01 {
        width: 100%;
        margin-bottom: 10.667vw;
    }

    .s_ab_c_01_info {
        width: 100%;
        margin-right: 0;
    }

    .s_ab_c_01_img.sp-only {
        margin-bottom: 10.667vw;
    }

    .s_ab_c_01_img_inner {
        width: 84vw;
        max-width: 85%;
        margin-right: 0;
        margin: auto;
    }

    .s_ab_c_01_info h3 {
        font-size: 4.8vw;
        line-height: 8.267vw;
        margin-bottom: 6.4vw;
    }

    .s_ab_c_01_info h2 {
        font-size: 6.933vw;
        line-height: 12vw;
        margin-bottom: 10.667vw;
        text-align: center;
    }

    .s_ab_c_01_info h4 {
        font-size: 5.333vw;
        line-height: 8vw;
        margin-bottom: 8.533vw;
    }

    .s_ab_c_01_info h4 {
        font-size: 6.4vw;
        line-height: 11.2vw;
        margin-bottom: 8.533vw;
        text-align: center;
    }

    .s_ab_c_01_info h5 {
        margin-bottom: 6.667vw;
        text-align: center;
        font-size: 4.267vw;
        line-height: 7.467vw;
    }

    .s_ab_c_01_info p {
        font-size: 3.733vw;
        line-height: 7.467vw;
        text-align: center;
    }

    .s_ab_c02_text {
        margin-bottom: 0;
    }

    .s_ab_c02_text h3 {
        font-size: 4.8vw;
        line-height: 7.2vw;
        margin-bottom: 4.267vw;
    }

    .s_ab_c02_text p {
        font-size: 3.2vw;
    }

    .s_ab_content.c01.c01_2 {
        flex-direction: column-reverse;
    }

    .s_ab_content.c01.c01_2 .s_ab_c_01_info {
        margin-left: 0;
        margin-top: 8.533vw;
        width: 100%;
    }

    section.s_me {
        padding-bottom: 6.933vw;
        padding-top: 3.733vw;
    }

    section.s_me .inner {
        width: 94.667vw;
    }

    .s_bk_logo {
        margin-bottom: 0;
    }

    .s_bk_logo img {
        width: 110.933vw;
    }

    .s_me_mv {
        margin-bottom: 5.867vw;
    }

    .s_me_bg {
        min-height: auto;
    }

    .s_me_bg img {
        width: 87.2vw;
        margin: 0;
        margin-left: auto;
    }

    .inner_inner {
        width: 100%;
    }

    .s_me_mv_title h2 {
        font-size: 5.333vw;
        padding: 1.333vw 2.667vw;
    }

    .s_mec_title {
        margin-bottom: 8vw;
    }

    .s_mec_title h2 {
        font-size: 5.333vw;
        line-height: 8vw;
    }

    .s_me_content ul.s_me_ul {
        margin-bottom: 5.333vw;
    }

    .s_me_content ul.s_me_ul li {
        padding: 4.267vw 0;
        font-size: 3.467vw;
    }

    .s_mec_info {
        margin-bottom: 2.667vw;
        width: 100%;
        flex-direction: column;
        padding-bottom: 5.867vw;
    }

    .s_meci_left {
        width: 100%;
        max-width: 89.333vw;
    }

    .s_meci_left ul {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .s_meci_left ul li {
        margin-bottom: 0;
        flex-direction: column;
        align-items: flex-end;
    }

    .s_me_l_cntent p.price {
        font-size: 3.2vw;
    }

    .s_me_l_cntent p.price span {
        font-size: 5.333vw;
        margin-left: 1.333vw;
    }

    p.p_bk.sp-only {
        font-size: 3.467vw;
        letter-spacing: 0.05em;
        margin-bottom: 1.333vw;
    }

    .s_me_l_title {
        font-size: 3.733vw;
        padding: 1.6vw 2.133vw;
        width: 42.667vw;
        margin-right: 0;
        margin-bottom: 1.333vw;
    }

    span.line:before,
    span.line:after {
        height: 1.333vw;
    }

    .s_meci_right {
        right: 0;
        left: 0;
        bottom: 0;
        margin: auto;
        width: max-content;
        max-width: 100%;
    }

    .s_me_r_content {
        width: 65.867vw;
        height: 11.467vw;
    }

    .s_me_r_content p {
        font-size: 3.2vw;
        line-height: 4.8vw;
    }

    .s_mec_arrow {
        margin-bottom: 5.333vw;
    }

    .s_mec_arrow img {
        width: 53.333vw;
    }

    .s_mec_arrow p {
        font-size: 4.267vw;
    }

    .s_line_btn {
        width: 88vw;
        max-width: 100%;
    }

    .s_line_btn a:after {
        border-radius: 1.067vw;
    }

    .s_ca_contents {
        padding: 13.333vw 0;
    }

    .s_ca_contents .inner {
        width: 100%;
        max-width: 100%;
    }

    .s_ca_c_title {
        margin-bottom: 5.333vw;
    }

    .s_ca_c_title h2 {
        font-size: 6.4vw;
        line-height: 9.6vw;
    }

    .s_ca_ul {
        width: 100%;
        overflow-y: hidden;
        overflow-x: scroll;
        -ms-overflow-style: none;
    }

    .s_ca_ul::-webkit-scrollbar{
      display: none;
    }

    .s_ca_ul ul {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: max-content;
        padding-left: 5.333vw;
    }

    .s_ca_ul ul li {
        width: 81.333vw;
        margin-bottom: 0;
        margin-right: 5.333vw;
    }

    section.s_po {
        padding-top: 10.667vw;
    }

    .s_po_c_title {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        margin-bottom: 0;
        overflow: hidden;
    }

    .s_po_c_title h2 {
        text-align: left;
        font-size: 10.667vw;
    }

    .s_po_c_title h2.small_h2 {
        font-size: 9.333vw;
    }

    .s_po_c.s_po_c_3 .s_po_c_title h2,
    .s_po_c.s_po_c_4 .s_po_c_title h2 {
        letter-spacing: 0;
    }

    .s_po_title img {
        width: 81.333vw;
        margin-bottom: 6.4vw;
    }

    .s_po_title h2 {
        font-size: 6.933vw;
        margin-bottom: 8vw;
    }

    .s_po_c {
        padding: 14.667vw 0 10.667vw;
    }

    .s_poc_title h4 {
        font-size: 3.733vw;
        line-height: 4.8vw;
        margin-bottom: 2.667vw;
    }

    .s_poc_title {
        text-align: left;
    }

    .s_poc_title h3 {
        font-size: 5.333vw;
        line-height: 8vw;
    }

    .s_po_c.s_po_c_3 .s_poc_title h3 {
        font-size: 5.067vw;
    }

    .s_poc_title p {
        margin-top: 2.667vw;
        font-size: 2.667vw;
        letter-spacing: 0.05em;
    }

    .s_po_line {
        margin: 5.333vw 0;
    }

    .s_poc_imgs ul {
        width: 100%;
        flex-wrap: wrap;
    }

    .s_poc_imgs ul li {
        width: 41.6vw;
        margin-right: 0;
    }

    .s_poc_imgs ul li:first-child {
        width: 100%;
        margin-bottom: 5.333vw;
    }

    .s_poc_imgs ul li p {
        font-size: 3.467vw;
        margin-bottom: -2.133vw;
        line-height: 4.8vw;
        position: relative;
    }

    .s_poc_imgs ul li:first-child p {
        font-size: 3.467vw;
        line-height: 1;
        margin-bottom: 2.933vw;
    }

    .s_po_more {
        padding: 10.667vw 0 4vw;
    }

    .s_po_m_title {
        margin-bottom: 7.733vw;
        padding-bottom: 6.4vw;
    }

    .s_po_m_title h2 {
        font-size: 5.333vw;
        margin-bottom: 3.2vw;
    }

    .s_po_m_title p {
        font-size: 3.2vw;
    }

    .s_po_m_title:after {
        width: 8.533vw;
    }

    .s_po_more .inner {
        width: 89.333vw;
    }

    .s_po_m_contents ul li {
        width: 42.667vw;
        height: 14.667vw;
        border-radius: 1.067vw;
        padding: 0 1.867vw;
        font-size: 3.733vw;
        line-height: 5.6vw;
        margin-bottom: 4vw;
    }

    .s_poc_imgs.col1 ul li {
        margin-bottom: 0;
    }

    .banner_contents {
        flex-direction: column;
        justify-content: flex-start;
    }

    .b_c_left {
        margin-bottom: 4vw;
    }

    .b_c_left img {
        width: 78.4vw;
        margin: auto;
        margin-bottom: 5.333vw;
    }

    section.banner {
        padding: 10.667vw 0;
    }

    .b_c_left h3 {
        font-size: 5.333vw;
        line-height: 8vw;
        margin-bottom: 5.333vw;
        text-align: center;
    }

    .b_c_left p {
        font-size: 3.2vw;
        line-height: 4.8vw;
        text-align: center;
        white-space: nowrap;
    }

    section.s_co {
        padding: 10.667vw 0;
    }

    .s_co_top {
        margin-bottom: 5.333vw;
    }

    .s_co_title {
        margin-bottom: 5.333vw;
    }

    .s_co_title h2 {
        font-size: 5.333vw;
        line-height: 8vw;
        margin-bottom: 5.333vw;
    }

    .s_co_title p {
        font-size: 3.2vw;
        line-height: 4.8vw;
    }

    .s_co_profile {
        margin-bottom: 3.733vw;
    }

    .s_co_comment {
        font-size: 3.733vw;
        line-height: 7.467vw;
        padding: 3.2vw 2.667vw;
        border-radius: 2.133vw;
    }

    .s_co_comment img {
        top: -3.2vw;
        left: 5.6vw;
        width: 5.067vw;
    }

    .s_co_bottom {
        margin-top: 5.333vw;
        border-radius: 2.133vw;
        padding: 4vw;
    }

    .s_co_bottom h3 {
        font-size: 3.733vw;
        margin-bottom: 1em;
    }

    .s_co_bottom p {
        font-size: 3.2vw;
        line-height: 4.8vw;
    }

    .s_co_bottom a {
        font-size: 3.2vw;
        line-height: 4.8vw;
    }

    .s_co_p_img {
        width: 16vw;
        margin-right: 4vw;
    }

    .s_co_p_text p {
        font-size: 3.733vw;
        line-height: 5.6vw;
        margin-bottom: 2.667vw;
    }

    .s_co_p_text h3 {
        font-size: 4.267vw;
        line-height: 5.6vw;
    }

    section.s_tw {
        padding: 14.933vw 0 37.333vw;
    }

    .s_tw_contents {
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
    }

    .s_tw_title {
        margin-bottom: 10.667vw;
        text-align: center;
    }

    .s_tw_title h2 {
        font-size: 5.333vw;
        margin-bottom: 3.2vw;
    }

    .s_tw_title p {
        font-size: 3.2vw;
        padding-bottom: 6.4vw;
    }

    .s_tw_title:after {
        width: 8.533vw;
        right: 0;
        margin: auto;
    }

    .s_tw_content {
        margin-right: 0;
        width: 100%;
        /*height: 204vw;*/
    }

    .pul_contents a:last-child {
        /*display: none;*/
    }

    .pul_contents {
        width: 80vw;
        transform: translate(82.667vw,0);
    }

    .f_logo p {
        font-size: 2.133vw;
        white-space: nowrap;
    }

    .f_logo img {
        width: 74.133vw;
        margin-bottom: 2.133vw;
    }

    .f_sns {
        margin-bottom: 6.4vw;
    }

    .f_sns ul li {
        margin: 0 2.133vw;
        width: 8.533vw;
    }

    .copyright h4 {
        font-size: 2.133vw;
        line-height: 3.2vw;
    }

    .mv_cl_bottom {
        align-items: flex-start;
    }

    .s_ab_c_01_img.sp-only {
         left: 50%; 
         right: 50%; 
         margin-left: -50vw; 
         margin-right: -50vw; 
         width: 100vw; 
         position: relative; 
    }

    .mvb_m_bottom .inner {
        padding: 8.8vw 0 14.667vw;
    }

    .s_ab_c_01_info h2 {
        text-align: left;
    }

    .s_ab_c_01_img_inner {
        margin-left: 0;
    }
}

/*media queryここまで*/

/*----------------------------------------------------------------------

下層ページ

----------------------------------------------------------------------*/

/*----------------------------------------------------------------------
LINE ジャンプページ
----------------------------------------------------------------------*/

html body.line_body {
    opacity: 1;
}

.s_line_jump {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    background-color: #3B3934;
    min-height: calc(var(--vh, 1vh) * 100);
}

.s_line_jump p {
    color: #fff;
    font-weight: bold;
}









