@charset "utf-8";

/* ==========================================
   ROOT VARIABLES
========================================== */
:root {
    --primary-bg-color: #FAFAFA;
    --primary-color-white: #FDFDFD;
    --primary-color-orange: #EF7A00;
    --primary-color-navy: #003559;
    --primary-color-blue: #0072BB;
    --secondary-color-black: #1A1311;
    --ease-main: cubic-bezier(0, 0.4, 0.25, 1);
}

/* ==========================================
   MEDIA QUERIES
========================================== */
/* Additional Breakpoints */
@media screen and (max-width: 1440px) {
    /* Styles for smaller desktop */
}

@media screen and (max-width: 900px) {
    /* Styles for tablet */
}

@media screen and (max-width: 767px) {
    /* Styles for mobile */
}

@media screen and (max-width: 500px) {
    /* Styles for small mobile */
}

@media screen and (max-width: 320px) {
    /* Styles for very small mobile */
}

/* ==========================================
   BASE STYLES
========================================== */
/* font / text */
html {
	font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 4.375vw;
}

/* ==========================================
   UTILITY CLASSES
========================================== */
.gen-disp_non {
    display: none !important;
}

.gen-disp_pc {
    display: block;
}

.gen-disp_sp,
.gen-disp_sp_inline {
    display: none;
}

@media screen and (max-width:767px) {
    .gen-disp_pc {
        display: none !important;
    }
    .gen-disp_sp {
        display: block;
    }
    .gen-disp_sp_inline {
        display: inline;
    }
}

/* util - html */
.align-center {
    text-align: center !important;
}

.align-right {
    text-align: right !important;
}

.spacer {
    padding: 10px 0 10px;
}

.m-top60 {
    margin-top: 60px;
}

.m-btm60 {
    margin-bottom: 60px;
}

.m-btm30 {
    margin-bottom: 30px;
}

.p-top60 {
    padding-top: 60px;
}

.border-top {
    border-top: 1px solid #000;
}

.relative {
    position: relative;
}

a.tl:hover {
    opacity: .7;
    transition: .3s;
}

a.colored:hover {
    color: var(--primary-color-blue) !important;
    transition: .3s;
}

.text-combine {
    -webkit-text-combine: horizontal;
    -ms-text-combine-horizontal: all;
    text-combine-upright: all;
}

.flex-box {
    display: flex;
}

/* form */
fieldset,
fieldset > legend {
    display: contents;
}


/* format */
.img-box > img {
    display: block;
    width: 100%;
    height: auto;
}

a:hover {
    opacity: .7;
    transition: .4s;
}

/* ==========================================
   FONTS
========================================== */
body {
    font-family: "M PLUS 1p", serif;
}
.m-plus-1p-thin {
    font-family: "M PLUS 1p", serif;
    font-weight: 100;
    font-style: normal;
}

.m-plus-1p-light {
    font-family: "M PLUS 1p", serif;
    font-weight: 300;
    font-style: normal;
}

.m-plus-1p-regular {
    font-family: "M PLUS 1p", serif;
    font-weight: 400;
    font-style: normal;
}

.m-plus-1p-medium {
    font-family: "M PLUS 1p", serif;
    font-weight: 500;
    font-style: normal;
}

.m-plus-1p-bold {
    font-family: "M PLUS 1p", serif;
    font-weight: 700;
    font-style: normal;
}

.m-plus-1p-extrabold {
    font-family: "M PLUS 1p", serif;
    font-weight: 800;
    font-style: normal;
}

.m-plus-1p-black {
    font-family: "M PLUS 1p", serif;
    font-weight: 900;
    font-style: normal;
}

.m-plus-1p {
    transform: rotate(0.05deg);
}

/* ==========================================
   HEADER
========================================== */
.header {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 4.375vw;
    margin: 0;
    padding: 0 0 0 0;
    background: #fff;
}

.header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo-container {
    width: 71%;
    height: 4.375vw;
    background: var(--primary-color-orange);
}

.header .menu-container {
    width: 29%;
    height: 4.375vw;
    background: var(--primary-color-navy);
}

.header .logo {
    width: 12.5%;
    height: auto;
    margin: 1.25% 0 0 3.75%;
}

.header .logo img {
    display: block;
    width: 100%;
}

.header .menu {
    height: 100%;
}

.header .menu-btn {
    display: none;
}

.header .menu-nav {
    height: 100%;
}

.header .menu ul {
    display: flex;
    justify-content: space-around;
    height: 100%;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    list-style: none;
}

.header .menu li {
    position: relative;
    width: 50%;
    height: 100%;
}

.header .menu li:last-child::before {
    position: absolute;
    top: 20%;
    left: 0;
    display: block;
    content: "";
    width: 1px;
    height: 60%;
    background-color: #fff;
}

.header .menu li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.4rem;
    font-size: 0.729vw;
    color: var(--primary-color-white);
}

.header .menu li a > span {
    position: relative;
    display: inline-block;
    align-items: center;
}

.header .menu li a > span::after {
    position: absolute;
    bottom: -0.25em;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}

.header .menu li a:hover > span::after {
    transform: scale(1, 1);
}

@media screen and (max-width:767px) {
    .header {
        height: 8vw;
    }
    .header .inner {
    }
    .header .logo-container {
        width: 71%;
        height: 8vw;
    }
    .header .menu-container {
        width: 29%;
        height: 8vw;
    }
    .header .logo {
        width: 25%;
        height: auto;
        margin: 2% 0 0 3.75%;
    }
    .header .menu {
        height: 100%;
    }
    .header .menu-btn {
        display: block;
        width: 4.375vw;
        height: 4.375vw;
        padding: 0;
        background: transparent;
        border: 0;
        outline: 0;
    }
    .header .menu-btn .menu-icon {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        background: transparent;
    }
    .header .menu-btn .menu-icon::before, .header .menu-btn .menu-icon::after {
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        content: "";
        width: 100%;
        height: 1px;
        background-color: #fff;
        transform: translateY(-50%);
        transition: transform .3s;
    }
    .header .menu-btn .menu-icon::before {
        transform: translateY(-50%) translateY(-6px);
    }
    .header .menu-btn .menu-icon::after {
        transform: translateY(-50%) translateY(6px);
    }
    .header .menu-btn.open .menu-icon::before {
        transform: translateY(-50%) translateY(0) rotate(45deg);
    }
    .header .menu-btn.open .menu-icon::after {
        transform: translateY(-50%) translateY(0) rotate(-45deg);
    }
    .header .menu-nav {
        display: none;
    }
}

/* ==========================================
   NAVIGATION MENU
========================================== */
.modal-navbar {
    /* display: none; */
}

.modal-container {
    position: fixed;
    z-index: 300;
    display: none;
    top: 0;
    right: 0;
    width: 23vw;
    height: auto;
    padding: 7% 0 0;
    background: rgba(45, 45, 45, 0.61);
}

.modal-contents {
    height: auto;
    overflow-y: auto;
    overscroll-behavior-y: contain;
}

.modal-navbar-header {
    text-align: center;
}

.modal-hamburger {
    position: fixed;
    z-index: 400;
    top: 0;
    display: block;
    box-sizing: content-box;
    width: 1.8vw;
    padding: 1.6vw 1.6vw 1.6vw 1.6vw;
    background-color: transparent;
    border: 0;
    outline: 0;
    -webkit-transition: all .6s cubic-bezier(.19,1,.22,1);
    transition: all .6s cubic-bezier(.19,1,.22,1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.modal-hamburger, .modal-open .modal-hamburger {
    right: 0;
}

.sr-only {
    position: absolute;
    overflow: hidden;
    clip: rect(0,0,0,0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

span.menu-text {
    display: block;
    position: absolute;
    bottom: -37.5%;
}

.modal-hamburger-icon {
    position: relative;
    display: block;
    margin-top: 10px;
}

.modal-hamburger-icon, .modal-hamburger-icon::after, .modal-hamburger-icon::before {
    width: 100%;
    height: 2px;
    -webkit-transition: all .6s cubic-bezier(.19,1,.22,1);
    transition: all .6s cubic-bezier(.19,1,.22,1);
    background-color: #fff;
}

.modal-hamburger-icon::after, .modal-hamburger-icon::before {
    position: absolute;
    top: -.6vw;
    left: 0;
    content: " ";
}

.modal-hamburger-icon::after {
    top: 0.6vw;
}

.modal-open .modal-hamburger-icon {
    background-color: transparent;
}

.modal-open .modal-hamburger-icon::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.modal-open .modal-hamburger-icon::after, .modal-open .modal-hamburger-icon::before {
    top: 0;
}

.modal-open .modal-hamburger-icon::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.modal-open span.menu-text {
    visibility: hidden;
}

/* scroll stop */
body.modal-open {
    /* width: 100vh; */
    overflow-y: hidden;
}

/* fade in, fade out */
.modal-open .modal-container {
    display: block;
    animation: fadeInModal .4s ease 0s 1 normal;
    -webkit-animation: fadeInModal .4s ease 0s 1 normal;
}

@keyframes fadeInModal {
    0% { opacity: 0 }
    100% { opacity: 1 }
}

@-webkit-keyframes fadeInModal {
    0% { opacity: 0 }
    100% { opacity: 1 }
}

/* nav */
.nav {
    width: auto;
    margin: 0 0 0 18%;
    padding: 0 0 5%;
    overflow-x: hidden;
    overflow-y: scroll;
}

.nav li {
    position: relative;
    width: auto;
    margin: 0 0 10% 0;
    padding: 0 0 0 0;
    list-style: none;
}

.nav li a {
    position: relative;
    display: block;
    width: max-content;
    padding: 0;
    text-decoration: none;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
    font-size: 2.4rem;
    font-size: 1.25vw;
    color: var(--primary-color-white);
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
    display:none;
}

@media screen and (max-width:1440px) {
    .modal-hamburger {
        padding: 1.3vw;
    }
}

@media screen and (max-width:900px) {
    .modal-hamburger {
        width: 2.2vw;
        padding: 1.0vw;
    }
    .modal-hamburger-icon::before {
        top: -.7vw;
    }
    .modal-hamburger-icon::after {
        top: 0.7vw;
    }
}

@media screen and (max-width:767px) {
    .modal-container {
        width: 70vw;
        padding: 16vw 0 0;
    }
    .nav {
        margin: 0 0 0 12%;
    }
    .nav li {
        margin: 0 0 8% 0;
    }
    .nav li a {
        font-size: 1.4rem;
        font-size: 3.589vw;
    }
    .modal-hamburger {
        width: 5vw;
        padding: 1.7vw;
    }
    .modal-hamburger-icon::before {
        top: -1.2vw;
    }
    .modal-hamburger-icon::after {
        top: 1.2vw;
    }
}

@media screen and (max-width:500px) {
    .modal-hamburger {
        width: 6vw;
        padding: 1.0vw 2.0vw 1.0vw;
    }
    .modal-hamburger-icon::before {
        top: -1.4vw;
    }
    .modal-hamburger-icon::after {
        top: 1.4vw;
    }
}

@media screen and (max-width:320px) {
    .modal-hamburger {
        width: 2.2rem;
        padding: .5% 1% 1% 1%;
    }
    .modal-hamburger-icon::before {
        top: -0.5em;
    }
    .modal-hamburger-icon::after {
        top: 0.5em;
    }
}

/* ==========================================
   BACKGROUND
========================================== */
body {
    padding-top: 4.375vw;
    background-color: var(--primary-bg-color);
}

body::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url(../img/bg_pc-min.png) no-repeat;
    background-position: right top;
    background-size: 100%;
}

@media screen and (max-width:767px) {
    body::before {
        display: none;
    }
    .main::before {
        content: "";
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100vh;
        background: url(../img/bg_sp-min.png) no-repeat;
        background-position: center 8vw;
        background-size: 100%;
    }
}

/* ==========================================
   MAIN CONTENT
========================================== */
.main {
    width: 100%;
    padding: 0 0 13%;
    overflow: hidden;
}

@media screen and (max-width:767px) {
    .main {
        margin: 8vw 0 12vw;
        padding: 0 0 14vw;
    }
}

/* ==========================================
   KEY VISUAL
========================================== */
.kv {
    margin: 0 0 0;
}

.kv-txt-container {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    width: 83.5%;
    margin: 5.5% 0 0 16.5%;
}

.kv-txt img {
    display: block;
    width: 100%;
    height: auto;
}

.kv-txt.item1 {
    display: block;
    width: 20vw;
    margin: 0 0 0 0;
}

.kv-txt.item2 {
    display: block;
    width: 29vw;
    margin: 6% 0 0 0;
}

.kv h1 {
    width: 18.5vw;
    margin: 5% 0 0 0;
}

@media screen and (max-width:767px) {
    .kv {
        margin: 0 0 0;
    }
    .kv-txt-container {
        width: 90%;
        margin: 12vw 0 0 8vw;
    }
    .kv-txt.item1 {
        width: 41vw;
        margin: 0 0 0 0;
    }
    .kv-txt.item2 {
        width: 42vw;
        margin: 16vw 0 0 0;
    }
    .kv h1 {
        width: 38vw;
        margin: 19vw 0 0 0;
    }
}

/* ==========================================
   SECTIONS
========================================== */
.section {
    margin: 5vw 0 0;
}

.section .section-inner {
    width: 77%;
    height: auto;
    margin: 0 auto 0;
}

.bottom .bottom-inner {
    width: 58%;
    margin: 0 auto 0;
}

.section .box {
    width: 100%;
    height: auto;
    padding: 2% 0 5%;
    background: #fff;
    border-radius: 1vw;
}

.section h2 {
    position: relative;
    width: 100%;
    margin: 0 auto 0;
    padding: 0.875em 0 2em;
    text-align: center;
    letter-spacing: 0.12em;
    line-height: 1;
    font-size: 3.0rem;
    font-size: 1.563vw;
    font-weight: bold;
    color: var(--primary-color-navy);
}

.h-border::after {
    position: absolute;
    bottom: 0;
    display: block;
    content: "";
    width: 100%;
    border-bottom: 2px solid var(--primary-color-orange);
}

.section h2 .en {
    display: block;
    margin: 0 0 0.725em 0;
    line-height: 1.65;
    letter-spacing: 0.06em;
    font-size: 2.0rem;
    font-size: 1.042vw;
    font-weight: normal;
    color: var(--primary-color-orange);
}

.section h2 .jp {
    line-height: 0.825;
    letter-spacing: 0.1em;
    font-size: 4.0rem;
    font-size: 2.083vw;
}

@media screen and (max-width:767px) {
    .section {
        margin: 8vw 0 0;
    }
    .section .section-inner {
        width: 92%;
        margin: 0 auto 0;
    }
    .section .box {
        border-radius: 3vw;
    }
    .section h2 .en {
        font-size: 1.2rem;
        font-size: 3.077vw;
    }
    .section h2 .jp {
        font-size: 2.0rem;
        font-size: 5.128vw;
    }
}

/* section0 */
.section0 {
    margin: 12vw 0 0;
}

.section0 .item-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    height: auto;
    margin: 4% auto 0;
}

.section0 .item-container a {
    display: block;
    width: 20%;
    margin: 0 0% 0;
    text-align: center;
    text-decoration: none;
}

.section0 .item-container a .en {
    display: block;
    margin: 0 0 0.5em 0;
    line-height: 2.2;
    letter-spacing: 0.06em;
    font-size: 1.5rem;
    font-size: 0.7815vw;
    color: var(--primary-color-orange);
}

.section0 .item-container a .jp {
    display: block;
    margin: 0 0 0.6em 0;
    line-height: 1.13;
    letter-spacing: 0.05em;
    font-size: 3.0rem;
    font-size: 1.5625vw;
    font-weight: bold;
    color: var(--primary-color-navy);
}

@media screen and (max-width:767px) {
    .section0 {
        margin: 18vw 0 0;
    }
    .section0 .item-container.sp-m0 {
        margin-top: 0;
    }
    .section0 .item-container a {
        width: 100%;
        margin: 0 0 0;
    }
    .section0 .item-container a .en {
        font-size: 0.9rem;
        font-size: 2.308vw;
    }
    .section0 .item-container a .jp {
        font-size: 1.6rem;
        font-size: 4.103vw;
    }
}

/* section1 */
.section1 .box {
    width: 100%;
    height: auto;
}

.section1 .box-txt {
    margin: 2% 0 0;
}

.section1 .box-txt .item {
    display: flex;
    flex-direction: column;
    margin: 2% 0 0;
}

.section1 h3 {
    text-align: center;
    line-height: 1.13;
    letter-spacing: 0.05em;
    font-size: 3.0rem;
    font-size: 1.563vw;
    font-weight: bold;
    color: var(--primary-color-navy);
}

.section1 p {
    margin: 0.5em 0 0;
    text-align: center;
    line-height: 2.0;
    letter-spacing: 0.1em;
    font-size: 1.8rem;
    font-size: 0.938vw;
    font-weight: normal;
    color: var(--primary-color-navy);
}

.section1 .re {
    width: 6.45%;
    height: auto;
    aspect-ratio: 94 / 56;
    margin: 3% auto 3%;
    background: url(../img/txt_re.svg) no-repeat;
    background-size: 100%;
    background-position: center;
}

@media screen and (max-width:767px) {
    .section1 .box {
        margin: 10vw 0 0;
        padding-bottom: 8vw;
    }
    .section1 .box-txt .item {
        flex-direction: row;
        flex-wrap: wrap;
        width: 80%;
        margin: 6.5% auto 0;
    }
    .section1 .box-txt .item1 {
        margin-top: 7%;
    }
    .section1 .box-txt .item .re {
        width: 14%;
        margin: 3% 3% 0 0;
    }
    .section1 .box-txt .item h3 {
        width: 80%;
    }
    .section1 .box-txt .item p {
        width: 100%;
    }
    .section1 h3 {
        text-align: left;
        line-height: 1.375;
        letter-spacing: 0.05em;
        font-size: 1.6rem;
        font-size: 4.103vw;
    }
    .section1 p {
        margin: 0.5em 0 0;
        text-align: left;
        line-height: 1.5;
        letter-spacing: 0.05em;
        font-size: 1.2rem;
        font-size: 3.076vw;
        font-weight: normal;
    }
}

/* section2 */
.section2 .section-inner {
    height: auto;
}

.section2 .box {
    padding-bottom: 2%;
}

.section2 .item-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 70%;
    margin: 7% auto 0;
}

.section2 .item-container .item {
    width: 44%;
    margin: 0 0 6%;
    padding: 0;
    text-align: center;
}

.section2 .img-box img {
    display: block;
    width: 100%;
    height: auto;
}

.section2 .item-container .item img {
    display: block;
    width: 100%;
    height: auto;
}

.section2 h3 {
    margin: 0 auto 0;
    letter-spacing: 0.05em;
}

.section2 h3 .en {
    display: block;
    margin: 1em 0 0.5em;
    line-height: 2.2;
    letter-spacing: 0.06em;
    font-size: 1.5rem;
    font-size: 0.781vw;
    font-weight: normal;
    color: var(--primary-color-orange);
}

.section2 h3 .jp {
    line-height: 1.13;
    letter-spacing: 0.05em;
    font-size: 3.0rem;
    font-size: 1.5625vw;
    font-weight: bold;
    color: var(--primary-color-navy);
}

.section2 p {
    margin: 1em 0 0;
    text-align: center;
    line-height: 1.77;
    letter-spacing: 0.0em;
    font-size: 1.8rem;
    font-size: 0.9375vw;
    font-weight: normal;
    color: var(--primary-color-navy);
}

@media screen and (max-width:767px) {
    .section2 .section-inner {
        flex-direction: column;
    }
    .section2 .item-container {
        width: 84%;
    }
    .section2 .item-container .item {
        width: 100%;
        margin: 0 0 16%;
    }
    .section2 h3 .en {
        font-size: 0.9rem;
        font-size: 2.308vw;
    }
    .section2 h3 .jp {
        font-size: 1.6rem;
        font-size: 4.103vw;
    }
    .section2 p {
        margin: 1em 0 0;
        line-height: 1.375;
        letter-spacing: 0.05em;
        font-size: 1.4rem;
        font-size: 3.589vw;
    }
    .section2 .img-box {
        width: 77%;
        margin: 3% auto 0;
    }
    .section2 .img-box img {
        display: block;
        width: 100%;
        height: auto;
    }
    .section2 .note {
        width: 80%;
        aspect-ratio: 323 / 43;
        margin: 5% auto 0;
        padding: 0.5em 0 0.5em 0.5em;
        background: url(../img/section2_note_border_sp.svg) no-repeat;
        background-size: 100%;
        background-position: center;
        letter-spacing: 0.025em;
        font-size: 1.8rem;
        font-size: 4.615vw;
    }
}

/* section3 */
.section3 .item-container {
    width: 70%;
    margin: 2.5% auto 0;
}

.section3 h3 {
    margin: 4% auto 0;
    text-align: center;
    letter-spacing: 0.05em;
}

.section3 h3 .en {
    display: block;
    margin: 1em 0 0.25em;
    line-height: 2.2;
    letter-spacing: 0.06em;
    font-size: 1.5rem;
    font-size: 0.781vw;
    font-weight: normal;
    color: var(--primary-color-orange);
}

.section3 h3 .jp {
    line-height: 1.13;
    letter-spacing: 0.05em;
    font-size: 3.0rem;
    font-size: 1.5625vw;
    color: var(--primary-color-navy);
}

.section3 p {
    margin: 1em 0 0;
    text-align: center;
    line-height: 1.77;
    letter-spacing: 0.0em;
    font-size: 1.8rem;
    font-size: 0.9375vw;
    font-weight: normal;
    color: var(--primary-color-navy);
}

.section3 .link {
    margin: 1em 0 0;
    text-align: center;
    line-height: 1.68;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 2.2rem;
    font-size: 1.145vw;
    color: var(--primary-color-navy);
}

.section3 .link a {
    position: relative;
    padding: 0 0 0.1em;
    color: var(--primary-color-orange);
    text-decoration: none;
}

.section3 .link a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    border: 1px solid var(--primary-color-orange);
}

@media screen and (max-width:767px) {
    .section3 .box {
        padding-bottom: 8vw;
    }
    .section3 .item-container {
        padding-top: 5%;
    }
    .section3 .item-container .item {
        margin: 0 0 16%;
    }
    .section3 h3 .en {
        font-size: 0.9rem;
        font-size: 2.308vw;
    }
    .section3 h3 .jp {
        font-size: 1.6rem;
        font-size: 4.103vw;
    }
    .section3 p {
        margin: 1em 0 0;
        line-height: 1.375;
        letter-spacing: 0.05em;
        font-size: 1.4rem;
        font-size: 3.589vw;
    }
    .section3 .link {
        font-size: 1.6rem;
        font-size: 4.103vw;
    }
}

/* section4 */
.section4 .box {
    padding-bottom: 8%;
}

.section4 .item-container {
    width: 64%;
    margin: 0 auto 0;
}

.section4 .item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 9% 0 0;
}

.section4 .item .box-img {
    display: flex;
    justify-content: center;
    width: 43%;
}

.section4 .item .box-txt {
    width: 62%;
    margin:0 0 0 7%;
}

.section4 .item .box-img > img {
    display: block;
    width: 100%;
    height: auto;
}

.section4 .item1 .box-img > img {
    width: 78%;
    /* margin: 0 3% 0 auto; */
    padding: 0 0 11% 0;
}
.section4 .item2 .box-img > img {
    width: 86%;
    /* margin: 0 3% 0 auto; */
    padding: 0 0 5% 0;
}
.section4 .item3 .box-img > img {
    width: 100%;
    /* margin: 0 -4% 0 auto; */
    padding: 8% 0 0 0;
}

.section4 h3 {
    display: flex;
    align-items: center;
    width: max-content;
    padding: 0 1em 0.5em 0;
    border-bottom: 2px solid var(--primary-color-orange);
    display: inline-block;
    line-height: 1;
    font-size: 3.4rem;
    font-size: 1.771vw;
    font-weight: bold;
    color: var(--primary-color-navy);
}

.section4 h3 .step {
    display: inline-block;
    letter-spacing: 0.05em;
    font-size: 3.0rem;
    font-size: 1.5625vw;
    color: var(--primary-color-orange);
}

.section4 h3 .h-txt {
    margin: 0 0 0 1em;
    letter-spacing: 0.1em;
}

.section4 p {
    margin: 1.25em 0 0;
    line-height: 1.77;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    font-size: 0.938vw;
    font-weight: normal;
    color: var(--primary-color-navy);
}

@media screen and (max-width:767px) {
    .section4 .box {
        padding-bottom: 8vw;
    }
    .section4 .item-container {
        width: 94%;
    }
    .section4 .item {
        margin: 8% 0 0;
    }
    .section4 .item .box-img {
        width: 40%;
    }
    .section4 .item .box-txt {
        width: 54%;
        margin: 0 0 0 6%;
    }
    .section4 .item .box-img > img {
        display: block;
        width: 100%;
        height: auto;
    }
    .section4 .item1 .box-img > img {
        width: 74%;
        margin: -16% 3% 0 auto;
        padding: 5% 0 0 0;
    }
    .section4 .item2 {
        margin: 12% 0 0;
    }
    .section4 .item2 .box-img > img {
        width: 80%;
        margin: -16% 3% 0 auto;
        padding: 0 0 0 0;
    }
    .section4 .item3 {
        margin: 12% 0 0;
    }
    .section4 .item3 .box-img > img {
        width: 93%;
        margin: 0 -2% 0 auto;
        padding: 0 0 0 0;
    }
    .section4 h3 {
        letter-spacing: 0.05em;
        font-size: 1.6rem;
        font-size: 4.103vw;
    }
    .section4 h3 span.step {
        letter-spacing: 0.1em;
        font-size: 1.25rem;
        font-size: 3.205vw;
    }
    .section4 h3 span.h-txt {
        margin: 0 0 0 0.65em;
    }
    .section4 p {
        margin: 1em 0 0;
        line-height: 1.5;
        letter-spacing: 0.05em;
        font-size: 1.2rem;
        font-size: 3.076vw;
        font-weight: normal;
    }
}

/* section5 */
.section5 .box {
    padding-bottom: 9%;
}

.section5 .item-container {
    margin: 3% 0 0;
}

.section5 h3 {
    letter-spacing: 0.05em;
    text-align: center;
    font-size: 3.0rem;
    font-size: 1.5625vw;
    color: var(--primary-color-navy);
}

.section5 p {
    margin: 1em 0 0;
    text-align: center;
    line-height: 1.77;
    letter-spacing: 0.1em;
    font-size: 1.8rem;
    font-size: 0.9375vw;
    font-weight: normal;
    color: var(--primary-color-navy);
}

.section5 .link-button {
    width: max-content;
    margin: 3.25% auto 0;
}

.section5 .link-button a {
    display: block;
    width: 100%;
    padding: 0.5em 3em;
    background-color: var(--primary-color-navy);
    border-radius: 0.75vw;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-size: 3.0rem;
    font-size: 1.5625vw;
    font-weight: bold;
    color: var(--primary-color-white);
}

@media (any-hover: hover) {
    .section5 .link-button a:hover {
        background-color: var(--primary-color-orange);
        opacity: 1;
        transition: .3s;
    }
}

.section5 .about-tell {
    position: relative;
    width: max-content;
    margin: 2% auto 0;
    padding: 0 0 0.5em;
    text-align: center;
    line-height: 1.42;
    letter-spacing: 0.05em;
    font-weight: bold;
    font-size: 2.4rem;
    font-size: 1.25vw;
    color: var(--primary-color-navy);
}

.section5 .about-tell::after {
    position: absolute;
    bottom: 0;
    display: block;
    content: "";
    width: 100%;
    border-bottom: 2px solid var(--primary-color-orange);
}

@media screen and (max-width:767px) {
    .section5 .item-container {
        width: 86%;
        margin: 5% auto 0;
    }
    .section5 h3 {
        font-size: 1.6rem;
        font-size: 4.103vw;
    }
    .section5 p {
        margin: 1em 0 0;
        text-align: left;
        line-height: 1.375;
        letter-spacing: 0.05em;
        font-size: 1.4rem;
        font-size: 3.589vw;
    }
    .section5 .link-button {
        margin: 6% auto 0;
    }
    .section5 .link-button a {
        border-radius: 2vw;
        font-size: 1.8rem;
        font-size: 4.615vw;
    }
    .section5 .about-tell {
        margin: 6% auto 0;
        font-size: 1.6rem;
        font-size: 4.103vw;
    }
}

/* section6 */
.section6 .box {
    padding-bottom: 8%;
}

.section6 .item-container {
    display: flex;
    justify-content: space-between;
    width: 82.5%;
    margin: 6% auto 0;
}

.section6 .item {
    justify-content: center;
    align-items: center;
    width: 22%;
    margin: 0 0 0;
}

.section6 .item .box-img > img {
    display: block;
    width: 100%;
}

.section6 h3 {
    margin: 0 auto 0;
    text-align: center;
    letter-spacing: 0.05em;
}

.section6 h3 .job {
    display: block;
    margin: 1em 0 0.5em;
    line-height: 1.77;
    letter-spacing: 0.02em;
    font-size: 1.8rem;
    font-size: 0.9375vw;
    font-weight: normal;
    color: var(--primary-color-orange);
}

.section6 h3 .name {
    line-height: 1.31;
    letter-spacing: 0.05em;
    font-size: 2.6rem;
    font-size: 1.354vw;
    color: var(--primary-color-navy);
}

.section6 p {
    width: 90%;
    margin: 1em auto 0;
    line-height: 1.77;
    letter-spacing: 0.02em;
    font-weight: normal;
    font-size: 1.8rem;
    font-size: 0.9375vw;
    color: var(--primary-color-navy);
}

@media screen and (max-width:767px) {
    .section6 .item-container {
        flex-direction: column;
        width: 70%;
    }
    .section6 .item {
        width: 100%;
        margin: 0 0 16%;
    }
    .section6 h3 .job {
        font-size: 1.4rem;
        font-size: 3.589vw;
    }
    .section6 h3 .name {
        font-size: 2.0rem;
        font-size: 5.128vw;
    }
    .section6 p {
        margin: 0.725em auto 0;
        line-height: 1.5;
        letter-spacing: 0.05em;
        font-size: 1.4rem;
        font-size: 3.589vw;
    }
}

/* section7 */
.section7 .box {
    padding-bottom: 8%;
}

.section7 .map {
    width: 54%;
    margin: 5% auto 0;
}

.section7 .map img {
    display: block;
    width: 100%;
    height: auto;
}

.section7 .item-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 78.5%;
    margin: 6% auto 0;
}

.section7 .item-container .item {
    position: relative;
    width: 100%;
    margin: 0 0 0.825em;
    padding: 0 0 0.5em 0;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-weight: normal;
    font-size: 2.0rem;
    font-size: 1.042vw;
    color: var(--primary-color-navy);
}

.section7 .item a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    border: 1px solid var(--primary-color-orange);
}

.section7 .item-container .item a {
    display: block;
    text-decoration: none;
    color: var(--primary-color-navy);
}

.arrow {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
}

.arrow::before,
.arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    width: 1em;
    height: 1px;
    background-color: var(--primary-color-orange);
    transform-origin: 100% 50%;
}

.arrow::before {
    transform: rotate(45deg);
}

.arrow::after {
    transform: rotate(-45deg);
}

.section7 .num {
    display: inline-block;
    width: 1.725em;
    height: 1.725em;
    padding: 0.05em 0 0 0.05em;
    background-color: var(--primary-color-navy);
    border-radius: 50%;
    text-align: center;
    font-size: 1.4rem;
    font-size: 0.729vw;
    color: var(--primary-color-white);
}

.section7 .shop-name {
    display: inline;
    margin: 0 0 0 0.5em;
}

.to-rh-article {
    width: 40%;
    margin: 5% auto 0;
}

.to-rh-article img {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width:767px) {
    .section7 .map {
        width: 84%;
        margin: 5% auto 0;
    }

    .section7 .item-container {
        flex-direction: column;
        width: 90%;
    }
    .section7 .item-container .item {
        width: 100%;
        font-size: 1.4rem;
        font-size: 3.589vw;
    }
    .section7 .num {
        font-size: 1.2rem;
        font-size: 3.076vw;
    }
    .to-rh-article {
        width: 70%;
        margin: 5% auto 0;
    }
    .arrow::before,
    .arrow::after {
        top: 54%;
    }
}

/* feature */
.feature-section .section-inner {
    height: auto;
}

.feature-section .box {
    padding-bottom: 8%;
}

.feature-section .item-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 82.5%;
    margin: 6% auto 0;
}

.feature-section .item-container .item {
    width: 42.5%;
    margin: 0 0 3%;
    padding: 0;
    text-align: center;
}

.feature-section .item-container .item a {
    display: block;
    text-decoration: none;
}

.feature-section .img-box img {
    display: block;
    width: 100%;
    height: auto;
}

.feature-section .item-container .item img {
    display: block;
    width: 100%;
    height: auto;
}

.feature-section p {
    margin: 1em 0 0;
    text-align: center;
    line-height: 1.77;
    letter-spacing: 0.02em;
    font-size: 1.8rem;
    font-size: 0.9375vw;
    font-weight: bold;
    color: var(--primary-color-navy);
}

.feature-section p.date {
    display: block;
    margin: 0.5em 0 0.5em;
    line-height: 1.83;
    letter-spacing: 0.06em;
    font-size: 1.8rem;
    font-size: 0.9375vw;
    font-weight: normal;
    color: var(--primary-color-orange);
}

.feature-section p.more-link a {
    margin: 0.5em 0 0;
    text-align: center;
    text-decoration: none;
    line-height: 1.31;
    letter-spacing: 0.05em;
    font-size: 2.6rem;
    font-size: 1.354vw;
    font-weight: normal;
    color: var(--primary-color-navy);
}

.feature-section p.more-link a span.arrow::before,
.feature-section p.more-link a span.arrow::after {
    right: -0.5%;
    background-color: var(--primary-color-navy);
}

@media screen and (max-width:767px) {
    .feature-section .section-inner {
        flex-direction: column;
    }
    .feature-section .box {
        padding-bottom: 12%;
    }
    .feature-section .item-container {
        width: 84%;
    }
    .feature-section .item-container .item {
        width: 100%;
        margin: 0 0 8%;
    }
    .feature-section h3 .en {
        font-size: 0.9rem;
        font-size: 2.308vw;
    }
    .feature-section h3 .jp {
        font-size: 1.6rem;
        font-size: 4.103vw;
    }
    .feature-section p {
        margin: 1em 0 0;
        line-height: 1.375;
        letter-spacing: 0.05em;
        font-size: 1.4rem;
        font-size: 3.589vw;
    }
    .feature-section p.date {
        font-size: 1.4rem;
        font-size: 3.589vw;
    }
    .feature-section .img-box {
        width: 77%;
        margin: 3% auto 0;
    }
    .feature-section .img-box img {
        display: block;
        width: 100%;
        height: auto;
    }
    .feature-section .note {
        width: 80%;
        aspect-ratio: 323 / 43;
        margin: 5% auto 0;
        padding: 0.5em 0 0.5em 0.5em;
        background: url(../img/section2_note_border_sp.svg) no-repeat;
        background-size: 100%;
        background-position: center;
        letter-spacing: 0.025em;
        font-size: 1.8rem;
        font-size: 4.615vw;
    }
    .feature-section p.more-link a {
        font-size: 1.6rem;
        font-size: 4.103vw;
    }
    .feature-section p.more-link a span.arrow {
        transform: translateY(-5%);
    }
}

/* ==========================================
   BOTTOM SECTION
========================================== */
.bottom {
    margin: 7.5% 0 0;
}

.bottom p {
    line-height: 1.72;
    letter-spacing: 0.1em;
    font-size: 3.6rem;
    font-size: 1.875vw;
    font-weight: bold;
    color: var(--primary-color-navy);
}

@media screen and (max-width:767px) {
    .bottom {
        margin: 12% 0 0;
    }
    .bottom .bottom-inner {
        width: 90%;
        margin: 0 auto 0;
    }
    .bottom p {
        text-align: center;
        line-height: 1.66;
        letter-spacing: 0.05em;
        font-size: 1.8rem;
        font-size: 4.615vw;
    }
}

/* ==========================================
   OUTER LINK
========================================== */
.outer-link {
    position: fixed;
    z-index: 100;
    bottom: 0;
    right: -5vw;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 40vw;
    height: 5vw;
    margin: 0;
    padding: 0 0 0 2.5%;
    background: rgba(255, 255, 255, 0.84);
    border-radius: 2.25vw;
}

.outer-link .inner {
    display: flex;
    justify-content: space-between;
    width: 77%;
}

.outer-link a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 46%;
    height: 3vw;
    border-radius: 0.75vw;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    font-size: 1.4rem;
    font-size: 0.729vw;
    color: var(--primary-color-white);
}

.outer-link a.item1 {
    background-color: var(--primary-color-orange);
    transition: .3s;
}

.outer-link a.item2 {
    background-color: var(--primary-color-navy);
    transition: .3s;
}

@media (any-hover: hover) {
    .outer-link a.item1:hover {
        background-color: var(--primary-color-navy);
        opacity: 1;
        transition: .3s;
    }
    .outer-link a.item2:hover {
        background-color: var(--primary-color-orange);
        opacity: 1;
        transition: .3s;
    }
}

@media screen and (max-width:767px) {
    .outer-link {
        justify-content: center;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 16vw;
        padding: 0;
        border-radius: 0;
    }
    .outer-link .inner {
        width: 93%;
    }
    .outer-link a {
        width: 48%;
        height: 8.75vw;
        border-radius: 3vw;
        letter-spacing: 0.12em;
        line-height: 1.24;
        font-size: 1.2rem;
        font-size: 3.076vw;
    }
}

/* ==========================================
   ANIMATIONS & EFFECTS
========================================== */
body {
    -webkit-animation: fadeInPage 2s ease 0s 1 normal;
    animation: fadeInPage 2s ease 0s 1 normal;
}

@keyframes fadeInPage {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* scroll_up */
.scroll_up {
    transition: 0.6s ease-in-out;
    transform: translateY( 15% );
    opacity: 0;
}

.scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
}

.scroll_up_slow {
    transition: 1.6s ease-in-out;
    transform: translateY( 200px );
    opacity: 0;
}

.scroll_up_slow.on {
    transform: translateY(0);
    opacity: 1.0;
}

/* ==========================================
   MODAL & POPUP
========================================== */
.popup-open-btn {
    display: flex;
    /* align-items: center; */
    text-align: left;
    cursor: pointer;
    color: var(--primary-color-navy);
}

.popup-open-btn:hover {
    transition: .3s;
    opacity: 0.8;
}

.popup-close-btn {
    position: absolute;
    top: -50px;
    right: 25px;
    font-size: 1.6rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(79, 79, 79, 0.5);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.popup.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.popup-content {
    width: 80vw;
    max-width: 570px;
    padding: 1% 0 1%;
    background: #ffffff;
    border-radius: 1.5vw;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.popup.active .popup-content {
    animation: fadeInScale 0.4s ease forwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-content .title {
    position: relative;
    display: flex;
    width: 100%;
    margin: 0 0 0;
    padding: 0 1em 0.5em 1.5em;
    text-align: left;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-weight: normal;
    font-size: 2.0rem;
    font-size: 1.042vw;
    color: var(--primary-color-navy);
}
.popup-content .title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    border: 1px solid var(--primary-color-orange);
}
.popup-content .num {
    display: block;
    width: 1.725em;
    height: 1.725em;
    margin-top: .1em;
    padding: 0.1em 0.1em 0.1em 0.1em;
    background-color: var(--primary-color-navy);
    border-radius: 50%;
    text-align: center;
    font-size: 1.4rem;
    font-size: 0.729vw;
    color: var(--primary-color-white);
}

.popup-content .shop-name {
    display: block;
    margin: 0 0 0 0.25em;
}

.popup-content .shop-data {
    width: 100%;
    margin: 0;
    padding: 4% 10% 4%;
    text-align: left;
    line-height: 1.85;
    letter-spacing: 0.1em;
    font-weight: normal;
    font-size: 2.0rem;
    font-size: 1.042vw;
    color: var(--primary-color-navy);
}

.popup-content .time {
    margin: .825em 0 0;
}

.popup-content .tel a {
    text-decoration: none;
    color: var(--primary-color-navy);
}

.popup-content .tel .arrow::before,
.popup-content .tel .arrow::after {
    top: 58%;
    width: .625em;
}

.popup-content .btn-container {
    display: flex;
    justify-content: space-between;
    margin: 3% 0 0;
}

.popup-content .btn-container .btn {
    width: 46%;;
}

.popup-content .btn-container .btn img {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width:767px) {
    .popup-close-btn {
        right: 10px;
    }
    .popup-content {
        width: 90vw;
        padding: 3% 0 3%;
        border-radius: 3vw;
    }
    .popup-content .title {
        padding: 0 1em 0.5em 1em;
        font-size: 1.4rem;
        font-size: 3.589vw;
    }
    .popup-content .num {
        font-size: 1.2rem;
        font-size: 3.076vw;
    }
    .popup-content .shop-data {
        font-size: 1.4rem;
        font-size: 3.589vw;
    }
}
