@charset "UTF-8";

/* ------------------------------------------------------
RESET
------------------------------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
    outline: none;
}

body {
    line-height: 1.5;
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
}

details,
menu,
figcaption,
figure,
main,
article,
aside,
footer,
header,
nav,
section {
    display: block;
}

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
figure,
figcaption,
blockquote,
table,
tr,
th,
td {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

dfn {
    font-style: italic;
}

mark {
    background-color: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

canvas,
audio,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

img {
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

legend {
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    display: inline-block;
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

summary {
    display: list-item;
}

[hidden],
template {
    display: none;
}

table {
    font: inherit;
    font-size: 100%;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: none;
}

/* ------------------------------------------------------
GENERAL
------------------------------------------------------ */
img {
    max-width: 100%;
    height: auto;
}

p {
    letter-spacing: 0.1em;
    line-height: 2.53;
    margin: 0 0 1.5em;
}

p:last-child {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: var(--main-color);
}

.section {
    padding: 0 0 50px 0;
}

.section:last-child {
    padding-bottom: 0;
}

.section .section {
    padding: 0 0 25px;
}

.image_l {
    float: left;
    margin: 0 20px 10px 0;
}

.image_r {
    float: right;
    margin: 0 0 10px 20px;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

#totop {
    display: none;
    line-height: 0;
    overflow: hidden;
    cursor: pointer;
    position: fixed;
    bottom: 5px;
    right: 5px;
    z-index: 9;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size: 0;
}

.clearfix {
    display: inline-block;
}

/* Hides from IE-mac */
* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

/* ------------------------------------------------------
Variables
------------------------------------------------------ */
:root {
    --main-color: #2c4c64;
    --white-color: #fff;
    --orange-color: #f87e34;
    --jp-font: 'Noto Sans JP', sans-serif;
    --en-font: 'Inter', sans-serif;
    --Kiwi-Maru-font: 'Kiwi Maru', serif;
    --Zen-Maru-font: 'Zen Maru Gothic', sans-serif;
    --Montserrat-font: 'Montserrat', sans-serif;
    --d: 700ms;
    --e: cubic-bezier(0.19, 1, 0.22, 1);
}

.d_flex {
    --spacing: 20px;
    --column: 3;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-1 * var(--spacing));
    margin-bottom: calc(-1 * var(--spacing));
}

.d_flex > * {
    margin-right: var(--spacing);
    margin-bottom: var(--spacing);
    width: calc((100% / var(--column)) - var(--spacing));
    text-align: center;
}

/* ------------------------------------------------------
Container
------------------------------------------------------ */
html {
    font-size: 100%;
    font-style: normal;
    background: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    line-height: 1;
}

body {
    font-family: var(--jp-font);
    font-size: 15px;
    color: var(--main-color);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

#wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.inner {
    width: 94%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* ------------------------------------------------------
Contents
------------------------------------------------------ */
.h3title {
    font-family: var(--Kiwi-Maru-font);
    font-size: 46px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
}

.h3title span {
    display: block;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--orange-color);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.en {
    font-family: var(--en-font);
}

.btn_primary {
    width: 100%;
    max-width: 280px;
    height: 70px;
    margin: 0 auto;
}

.btn_primary a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    font-weight: 500;
    color: var(--white-color);
    background: var(--orange-color);
    border: 2px solid var(--orange-color);
    border-radius: 35px;
    padding-bottom: 2px;
    transition: all var(--d) var(--e);
}

.btn_primary a.second_bg {
    border-color: var(--white-color);
}

.illust_geometric {
    position: absolute;
    pointer-events: none;
}

.geometric01 {
    top: 180px;
    left: -201px;
}

.geometric02 {
    top: 380px;
    right: 24px;
}

.geometric03 {
    bottom: -132px;
    left: 43px;
}

.geometric04 {
    bottom: -350px;
    right: -222px;
}

.geometric05 {
    top: -145px;
    left: -149px;
}

.geometric06 {
    top: -26px;
    right: 132px;
}

.geometric07 {
    bottom: -260px;
    right: -299px;
    z-index: -1;
}

.geometric08 {
    top: 64px;
    left: 38.1%;
    transform: translateX(-50%);
}

.geometric09 {
    top: 106px;
    right: -83px;
}

.geometric10 {
    top: -111px;
    left: 105px;
}

.illust {
    position: absolute;
    pointer-events: none;
}

.illust_animation {
    animation: shaking 2000ms infinite step-end;
}

@keyframes shaking {
    0% {
        transform: rotateZ(2deg);
    }

    10% {
        transform: rotateZ(-2deg);
    }

    20% {
        transform: rotateZ(2deg);
    }

    30% {
        transform: rotateZ(0);
    }

    100% {
        transform: rotateZ(0);
    }
}

.illust01 {
    bottom: 214px;
    left: 20.7%;
    transform: translateX(-50%);
}

.illust02 {
    bottom: 129px;
    left: 26.1%;
    transform: translateX(-50%);
}

.illust03 {
    top: 76px;
    left: 31.5%;
    transform: translateX(-50%);
}

.illust04 {
    top: -27px;
    left: 58.5%;
    transform: translateX(-50%);
}

.illust05 {
    top: 7px;
    left: 61.6%;
    transform: translateX(-50%);
}

.illust06 {
    bottom: 39px;
    right: 29px;
}

.illust07 {
    top: 76px;
    left: 91px;
}

.illust08 {
    top: 79px;
    left: 412px;
}

.illust09 {
    top: 24px;
    left: 262px;
}

.illust10 {
    bottom: 39px;
    left: 33.2%;
    transform: translateX(-50%);
}

.illust11 {
    bottom: -12px;
    left: 38.2%;
    transform: translateX(-50%);
}

.illust12 {
    top: 43px;
    left: 165px;
}

.illust13 {
    top: -30px;
    right: 241px;
}

.illust14 {
    top: 92px;
    right: 174px;
}

.illust15 {
    bottom: 69px;
    right: 323px;
}

.illust16 {
    top: 10px;
    right: 357px;
}

.illust17 {
    top: 55px;
    right: 159px;
}

.illust18 {
    top: 191px;
    right: 60px;
}

.illust19 {
    top: -93px;
    left: 213px;
}

.illust20 {
    bottom: 16px;
    left: 227px;
}

/* ------------------------------------------------------
Header
------------------------------------------------------ */
#header {
    width: 100%;
    height: 15.5vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px 1.1vh 32px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

#header h1 a {
    display: block;
    line-height: 0;
}

#header .menu {
    width: 100%;
    max-width: 1000px;
    margin-left: 35px;
}

#header .gnavi {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#header .gnavi li {
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 40px 0 27px;
}

#header .gnavi li a,
#header .gnavi li.sub .sub_ttl {
    position: relative;
    transition: all .7s var(--e);
    cursor: pointer;
}

#header .gnavi li a::after,
#header .gnavi li.sub .sub_ttl::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--orange-color);
    transform: scale(0, 1);
    transform-origin: center top;
    bottom: -8px;
    left: 0;
    transition: transform .3s;
}

#header .gnavi li .sub_menu {
    width: 100%;
}

#header .gnavi li .sub_menu ul {
    display: flex;
    justify-content: center;
    background: var(--white-color);
    padding-top: 48px;
    position: relative;
}

#header .gnavi li .sub_menu ul li {
    width: calc(100% / 3);
    max-width: 360px;
    height: 190px;
    padding: 0 0;
    margin: 0 20px 30px;
}

#header .gnavi li .sub_menu ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border-radius: 20px;
    padding-bottom: 1.3vh;
    overflow: hidden;
}

#header .gnavi li .sub_menu ul li a::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, #000 100%);
    opacity: .5;
    top: 0;
    left: 0;
    z-index: 1;
}

#header .gnavi li .sub_menu ul li a::after {
    display: none;
}

#header .gnavi li .sub_menu ul li a figure {
    position: absolute;
    top: 0;
    left: 0;
}

#header .gnavi li .sub_menu ul li a figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: all .7s var(--e);
}

#header .gnavi li.sub:hover .sub_menu ul li a figure img {
    transform: scale(1);
}

#header .gnavi li.sub .sub_menu ul li a:hover figure img {
    transform: scale(1.1);
}

#header .gnavi li .sub_menu ul li a span {
    font-family: var(--Kiwi-Maru-font);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--white-color);
    position: relative;
    z-index: 2;
}

#header .group_h_btn {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
}

#toggle_menu {
    width: 62px;
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main-color);
    transition: all .3s cubic-bezier(0.77, 0, 0.175, 1);
    overflow: hidden;
    cursor: pointer;
}

#toggle_menu.active {
    background: var(--orange-color);
}

.hamburger {
    display: inline-block;
    width: 27px;
    height: 20px;
    position: relative;
    z-index: 100;
    pointer-events: none;
}

.hamburger span {
    background: var(--white-color);
    display: block;
    height: 2px;
    transform: rotate(0deg);
    transition: all .25s ease-in-out;
    opacity: 1;
    width: 100%;
    position: absolute;
    left: 0;
}

.hamburger span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10px) translateY(-50%) rotate(-45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) translateY(50%) rotate(45deg);
}

#header .h_contact {
    width: 100%;
    max-width: 62px;
    height: 200px;
    transition: all .3s cubic-bezier(0.77, 0, 0.175, 1);
}

#header .h_contact.hide {
    opacity: 0;
    visibility: hidden;
}

#header .h_contact a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--Montserrat-font);
    font-size: 18px;
    letter-spacing: 0.05em;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    position: relative;
}

#header .h_contact a::before,
#header .h_contact a::after {
    position: absolute;
    content: '';
    background: var(--main-color);
}

#header .h_contact a::before {
    width: 1px;
    height: 93%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

#header .h_contact a::after {
    width: 89%;
    height: 1px;
    bottom: 0;
    right: 0;
}

#header .h_contact a i {
    display: inline-block;
    background: url(../images/header/icon_mail.svg) no-repeat;
    background-size: contain;
    width: 24px;
    height: 19px;
    margin-bottom: 12px;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    pointer-events: none;
    transition: all 2s cubic-bezier(0.22, 1, 0.36, 1);
}

#overlay.opened {
    background: rgba(0, 0, 0, .7);
    pointer-events: auto;
}

#header .overlay_menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70vw;
    max-width: 600px;
    height: 100%;
    background: var(--orange-color);
    padding: 0 50px;
    transition: all .8s cubic-bezier(0.77, 0, 0.175, 1);
    transform: translateX(101%);
}

#header .overlay_menu.opened {
    transform: translateX(0);
}

#header .overlay_gnavi {
    width: 100%;
    border-bottom: 1px solid var(--white-color);
    padding: 0 70px 5.3vh;
    margin-bottom: 7.5vh;
}

#header .overlay_gnavi li {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 3.1vh;
    position: relative;
}

#header .overlay_gnavi li a,
#header .overlay_gnavi li.sub span {
    color: var(--white-color);
}

#header .overlay_gnavi li a {
    position: relative;
}

#header .overlay_gnavi li a::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--white-color);
    transform: scale(0, 1);
    transform-origin: center top;
    bottom: -4px;
    left: 0;
    transition: transform .3s;
}

#header .overlay_gnavi .sub_menu {
    position: absolute;
    top: 0;
    right: -27px;
    z-index: 1;
}

#header .overlay_gnavi .sub_menu::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 1px;
    background: var(--white-color);
    top: 14px;
    left: -19px;
}

#header .overlay_gnavi .sub_menu li {
    padding: 0 0 3.1vh 30px;
    margin-bottom: 0;
}

#header .overlay_gnavi .sub_menu li::before,
#header .overlay_gnavi .sub_menu li::after {
    position: absolute;
    content: '';
    background: var(--white-color);
    left: 0;
}

#header .overlay_gnavi .sub_menu li::before {
    width: 1px;
    height: 100%;
    top: 15px;
}

#header .overlay_gnavi .sub_menu li::after {
    width: 20px;
    height: 1px;
    top: 14px;
}

#header .overlay_gnavi .sub_menu li:last-child::before {
    display: none;
}

#header .overlay_gnavi > li:last-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 0;
}

#header .overlay_gnavi .sub_menu li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

#header .overlay_menu .btn_primary {
    margin: 0 0 0 70px;
}

#header .overlay_menu .btn_primary a .icon {
    display: inline-block;
    width: 32px;
    height: 31px;
    margin-right: 13px;
}

#header .overlay_menu .btn_primary a .icon .cls-1 {
    fill: var(--white-color);
    transition: all var(--d) var(--e);
}

#header .overlay_menu .btn_primary a:hover .icon .cls-1 {
    fill: var(--orange-color);
}

/* ------------------------------------------------------
idx_mainvisual
------------------------------------------------------ */
#idx_mainvisual {
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: flex-end;
    padding-bottom: 10vh;
    position: relative;
}

#idx_mainvisual .mv_container {
    width: 100%;
    height: 74.5vh;
    position: relative;
    z-index: 1;
    opacity: 0;
}

#idx_mainvisual .mv_info {
    width: calc(100% - 200px);
    height: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

#idx_mainvisual .mv_info::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 21px solid #F7931E;
    top: 0;
    left: 0;
    z-index: 77;
    pointer-events: none;
}

#idx_mainvisual h2 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-family: var(--Zen-Maru-font);
    font-size: 50px;
    z-index: 2;
}

#idx_mainvisual h2 span {
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.1em;
    padding: 5px 17px 10px 45px;
    margin-bottom: 10px;
    position: relative;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform calc(var(--d) * 1.5) var(--e), opacity calc(var(--d) * 1.5) var(--e);
}

#idx_mainvisual h2 span::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: var(--white-color);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform calc(var(--d) * 1.5) var(--e), opacity calc(var(--d) * 1.5) var(--e);
}

#idx_mainvisual h2 span:last-child {
    margin-bottom: 0;
}

#idx_mainvisual h2.ttl-active span,
#idx_mainvisual h2.ttl-active span::before {
    opacity: 1;
    transform: translateX(0);
}

#idx_mainvisual h2.ttl-active span::before {
    transition-delay: .8s;
}

#idx_mainvisual h2.ttl-active .layer02 {
    transition-delay: .5s;
}

#idx_mainvisual h2.ttl-active .layer02::before {
    transition-delay: 1.3s;
}

#idx_mainvisual .mv_slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#idx_mainvisual .mv_slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

#idx_mainvisual .mv_slider .slide .item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#idx_mainvisual .mv_slider .slide:nth-child(1) .item {
    background-image: url(../images/top/mv_slide_img01.jpg);
    z-index: 1;
}

#idx_mainvisual .mv_slider .slide:nth-child(2) .item {
    background-image: url(../images/top/mv_slide_img02.jpg);
}

#idx_mainvisual .mv_slider .slide:nth-child(3) .item {
    background-image: url(../images/top/mv_slide_img03.jpg);
}

#idx_mainvisual .mv_slider .slide:nth-child(4) .item {
    background-image: url(../images/top/mv_slide_img04.jpg);
}

#idx_mainvisual .mv_slider .slide:nth-child(5) .item {
    background-image: url(../images/top/mv_slide_img05.jpg);
}

/*
#idx_mainvisual .mv_slider .slide:nth-child(6) .item {
    background-image: url(../images/top/mv_slide_img06.jpg);
}
*/

#idx_mainvisual .mv_txt {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

#idx_mainvisual .firstview {
    opacity: 0;
    transition: opacity .8s ease;
}

#idx_mainvisual .firstview-active {
    opacity: 1;
}

#idx_mainvisual .illust_geometric.firstview-active {
    transition-delay: .5s;
}

/* ------------------------------------------------------
idx_recommend
------------------------------------------------------ */
#idx_recommend .h3title {
    margin-bottom: 56px;
}

#idx_recommend .idx_recommend_list {
    margin-bottom: 66px;
    overflow: hidden;
}

#idx_recommend .recommend_card {
    width: 67.347vw;
    max-width: 330px;
    margin: 0 20px !important;
}

#idx_recommend .recommend_card a {
    width: 100%;
    position: relative;
}

#idx_recommend .recommend_card figure {
    width: 100%;
    height: 44.898vw;
    max-height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    margin-bottom: 17px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

#idx_recommend .recommend_card figure::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    border: 8px solid #f7931e;
    border-radius: 12px;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

#idx_recommend .recommend_card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all calc(var(--d) * 2) var(--e);
    transform-origin: 50% 50%;
}

#idx_recommend .recommend_card .card_txt {
    font-size: 14px;
}

#idx_recommend .recommend_card .card_txt p {
    line-height: 2.14;
}

#idx_recommend .recommend_card .card_txt a {
    text-decoration: underline;
}

#idx_recommend .group_control .swiper-pagination {
    width: 100% !important;
    position: relative;
}

#idx_recommend .group_control .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(44, 76, 100, 0.2);
    transform: scale(1) !important;
    margin: 0 19px;
    left: auto !important;
    opacity: 1 !important;
    transition: all .3s ease;
}

#idx_recommend .group_control .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--main-color);
}

#idx_recommend .group_control .swiper-pagination .swiper-pagination-bullet:hover {
    background: var(--main-color);
}

#idx_recommend .overlaymodal {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .3s ease;
}

#idx_recommend .overlaymodal.opened {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#idx_recommend .recommend_popup {
    width: 80%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: all .3s ease;
}

#idx_recommend .recommend_popup.opened {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#idx_recommend .idx_recommend_gallery {
    width: 100%;
    height: 48vw;
    max-height: 600px;
    position: relative;
    overflow: hidden;
}

#idx_recommend .idx_recommend_gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#idx_recommend .idx_recommend_gallery .swiper-button-next,
#idx_recommend .idx_recommend_gallery .swiper-button-prev {
    width: 34px;
    height: 34px;
    border: 4px solid var(--main-color);
    border-left: 0;
    border-top: 0;
    margin: 0 0;
    top: calc(50% - 17px);
}

#idx_recommend .idx_recommend_gallery .swiper-button-next:after,
#idx_recommend .idx_recommend_gallery .swiper-button-prev:after {
    display: none;
}

#idx_recommend .idx_recommend_gallery .swiper-button-next {
    right: 15px;
    transform: rotate(315deg);
}

#idx_recommend .idx_recommend_gallery .swiper-button-prev {
    left: 15px;
    transform: rotate(135deg);
}

#idx_recommend .modalclose {
    cursor: pointer;
    position: fixed;
    top: -50px;
    right: 0;
    z-index: 99999;
}

#idx_recommend .modalclose i {
    width: 50px;
    height: 50px;
    display: block;
    position: relative;
}

#idx_recommend .modalclose i::before,
#idx_recommend .modalclose i::after {
    position: absolute;
    content: '';
    width: 45px;
    height: 2px;
    background: var(--white-color);
    left: 3px;
}

#idx_recommend .modalclose i::before {
    top: 0;
    transform: translateY(24px) translateY(-50%) rotate(-45deg);
}

#idx_recommend .modalclose i::after {
    top: 0;
    transform: translateY(22px) translateY(50%) rotate(45deg);
}

/* ------------------------------------------------------
idx_blog
------------------------------------------------------ */
#idx_blog {
    background: #f4efec;
    padding: 126px 0 96px;
    position: relative;
}

#idx_blog .h3title {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

#idx_blog .idx_blog_txt {
    width: 94%;
    font-size: 16px;
    text-align: center;
    margin: 0 auto 58px;
}

#idx_blog .idx_blog_wrap {
    width: 94%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

#idx_blog .idx_blog_wrap::before {
    position: absolute;
    content: '';
    width: 100vw;
    height: 100%;
    background: #f4efec;
    top: 0;
    left: -100vw;
    z-index: 2;
}

#idx_blog .idx_blog_list {
    display: flex;
    flex-wrap: wrap;
}

#idx_blog .blog_card {
    width: calc((100% - 120px) / 3);
    margin: 0 20px 40px;
}

#idx_blog .blog_card figure {
    width: 100%;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
}

#idx_blog .blog_card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all calc(var(--d) * 2) var(--e);
    transform-origin: 50% 50%;
    /*    transform: translateZ(1px);*/
}

#idx_blog .blog_card .card_contents {
    padding: 27px 0 0;
}

#idx_blog .blog_card .card_meta {
    line-height: 2;
    margin-bottom: 7px;
}

#idx_blog .blog_card .card_meta .group_cate {
    margin-right: 13px;
}

#idx_blog .blog_card .card_meta .cate {
    min-width: 120px;
    height: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    letter-spacing: 0;
    color: var(--white-color);
    border-radius: 4px;
    padding: 0 10px;
    margin: 0 9px 5px 0;
    position: relative;
    top: -1px;
}

#idx_blog .blog_card .card_meta .cate:last-child {
    margin-right: 0;
}

#idx_blog .blog_card .card_meta .date {
    font-size: 14px;
    letter-spacing: 0.05em;
}

#idx_blog .blog_card .card_ttl {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.625;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

/* ------------------------------------------------------
idx_about
------------------------------------------------------ */
#idx_about {
    padding: 96px 0 100px;
    position: relative;
}

#idx_about .h3title {
    margin-bottom: 59px;
}

#idx_about .idx_about_txt {
    font-size: 20px;
    text-align: center;
}

#idx_about .idx_about_txt p {
    line-height: 2.4;
}

#idx_about .idx_about_txt p:not(:last-child) {
    margin-bottom: 48px;
}

/* ------------------------------------------------------
idx_container
------------------------------------------------------ */
#idx_container {
    background: var(--orange-color);
    padding: 0 0 350px;
    position: relative;
}

#idx_container::before {
    position: absolute;
    content: '';
    background: url(../images/top/large_txt.png) repeat-x;
    background-size: 2590px 100%;
    width: 100vw;
    height: 158px;
    bottom: 106px;
    left: 0;
    z-index: 9;
    transition: all 1s linear;
    animation: TitleRight 40s linear infinite;
    pointer-events: none;
}

@keyframes TitleRight {
    from {
        background-position: 2590px 0;
    }

    to {
        background-position: 0 0;
    }
}

@keyframes TitleRight-sp {
    from {
        background-position: 1229px 0;
    }

    to {
        background-position: 0 0;
    }
}

#idx_container .block_element {
    min-height: 850px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

#idx_container .element_panel {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

#idx_container .element_frame {
    width: 100%;
    max-width: 400px;
    color: var(--white-color);
    margin-right: 70px;
}

#idx_container .element_frame .h3title {
    text-align: left;
    margin-bottom: 49px;
}

#idx_container .element_frame .h3title span {
    color: var(--white-color);
}

#idx_container .element_frame .element_txt {
    text-align: justify;
    margin-bottom: 74px;
}

#idx_container .element_frame .btn_primary {
    margin: 0 0;
}

#idx_container .element_panel figure {
    line-height: 0;
    border-radius: 20px;
    overflow: hidden;
}

#idx_container .element_image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#idx_container .element_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#idx_container .block_element:nth-child(even) .element_panel {
    flex-direction: row-reverse;
}

#idx_container .block_element:nth-child(even) .element_frame {
    margin: 0 0 0 70px;
}

#idx_container .block_element:nth-child(even) .element_frame .btn_primary {
    margin-left: auto;
}

#idx_container .block_element:nth-child(even) .element_image {
    left: 0;
    right: auto;
}

/* ------------------------------------------------------
idx_aboutschool
------------------------------------------------------ */
#idx_aboutschool {
    padding: 220px 0 0;
    position: relative;
}

#idx_aboutschool .inner {
    width: 100%;
    max-width: 100%;
    min-height: 740px;
    z-index: 1;
}

#idx_aboutschool .inner::after {
    position: absolute;
    content: '';
    width: 100vw;
    height: 410px;
    background: var(--orange-color);
    bottom: 0;
    left: 0;
    z-index: -1;
}

#idx_aboutschool .idx_aboutschool_list {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 50px;
    left: 0;
    z-index: 3;
}

#idx_aboutschool .idx_aboutschool_list li {
    width: 100%;
    max-width: 390px;
    min-height: 300px;
    margin: 0 20px;
    overflow: hidden;
    transform-origin: 50% 50%;
    transition: all calc(var(--d) * 1.5) var(--e);
}

#idx_aboutschool .idx_aboutschool_list li a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white-color);
    border-radius: 20px;
    padding: 0 20px;
    transition: all calc(var(--d) * 1.5) var(--e);
    transform: translateZ(1px);
    transform-origin: 50% 50%;
    overflow: hidden;
}

#idx_aboutschool .idx_aboutschool_list li .h3title {
    font-size: 34px;
    margin-bottom: 19px;
    transition: all .2s var(--e);
}

#idx_aboutschool .idx_aboutschool_list li .h3title span {
    transition: all calc(var(--d) * 1.5) var(--e);
}

#idx_aboutschool .idx_aboutschool_list li .idx_aboutschool_txt {
    font-size: 14px;
    line-height: 2.28;
    text-align: center;
    margin-bottom: 29px;
}

#idx_aboutschool .idx_aboutschool_list li .icon {
    width: 36px;
    height: 36px;
}

#idx_aboutschool .idx_aboutschool_list li .icon .cls-1 {
    fill: none;
    stroke: var(--white-color);
    stroke-miterlimit: 10;
    stroke-width: 2px;
    transition: all calc(var(--d) * 2) var(--e);
}

#idx_aboutschool .idx_aboutschool_list li .icon .cls-2 {
    fill: var(--orange-color);
    transition: all calc(var(--d) * 2) var(--e);
}

#idx_aboutschool .idx_aboutschool_gallery {
    width: 80vw;
    height: 740px;
    line-height: 0;
    border-top-right-radius: 100px;
    overflow: hidden;
    position: relative;
}

#idx_aboutschool .idx_aboutschool_gallery .gallery_item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: visibility .7s var(--e), opacity .7s var(--e);
}

#idx_aboutschool .idx_aboutschool_gallery .gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#idx_aboutschool .idx_aboutschool_gallery .gallery_item.is-active,
#idx_aboutschool .idx_aboutschool_gallery .gallery_item.show {
    opacity: 1;
    visibility: visible;
}

#idx_aboutschool .idx_aboutschool_gallery .gallery_item.is-active {
    z-index: 1;
}

/* ------------------------------------------------------
idx_info
------------------------------------------------------ */
#idx_info {
    padding: 200px 0 170px;
    position: relative;
    z-index: 1;
}

#idx_info .idx_info_list {
    width: 100%;
    max-width: 1500px;
    display: flex;
    flex-wrap: wrap;
    padding: 0 60px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

#idx_info .idx_info_list .idx_info_card {
    width: calc((100% - 60px) / 3);
    border-radius: 20px;
    margin: 0 30px 30px 0;
    overflow: hidden;
}

#idx_info .idx_info_list .idx_info_card:last-child {
    margin-right: 0;
}

#idx_info .idx_info_list .idx_info_card a {
    width: 100%;
    height: 100%;
    display: block;
    color: var(--white-color);
    padding: 30px 30px 37px;
}

#idx_info .idx_info_list .idx_info_card figure {
    width: 100%;
    height: 29vw;
    max-height: 435px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    margin-bottom: 25px;
    overflow: hidden;
    opacity: 0;
}

#idx_info .idx_info_list .idx_info_card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all calc(var(--d) * 2) var(--e);
    transform-origin: 50% 50%;
}

#idx_info .idx_info_list .idx_info_card.card-active figure {
    opacity: 1;
    animation: c-card-image 2s cubic-bezier(.4, 0, .2, 1);
}

@keyframes c-card-image {
    0% {
        clip-path: circle(0 at 50% 50%);
        -webkit-clip-path: circle(0 at 50% 50%);
    }

    100% {
        clip-path: circle(100% at 50% 50%);
        -webkit-clip-path: circle(100% at 50% 50%);
    }
}

#idx_info .idx_info_list .idx_info_card .h3title {
    font-size: 34px;
    line-height: 1.4;
    text-align: left;
    opacity: 0;
    transform: translateY(50%);
    transition: transform calc(var(--d) * 1.5) var(--e), opacity calc(var(--d) * 1) var(--e);
}

#idx_info .idx_info_list .idx_info_card.card-active .h3title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .8s;
}

#idx_info .idx_info_list .idx_info_card .h3title span {
    color: var(--white-color);
    margin-bottom: 0;
}

#idx_info .idx_info_list .idx_info_card:nth-child(1) {
    background: #1dbee5;
}

#idx_info .idx_info_list .idx_info_card:nth-child(2) {
    background: #f895b5;
    margin-right: 0;
}

#idx_info .idx_info_list .idx_info_card:nth-child(3) {
    background: #ff9e69;
}

#idx_info .idx_info_list .idx_info_card:nth-child(4) {
    background: #ffdf90;
}

#idx_info .idx_info_list .idx_info_card:nth-child(5) {
    background: #69da87;
}

#idx_info .idx_info_list .idx_info_card:nth-child(-n+2) {
    width: calc((100% - 30px) / 2);
}

#idx_info .idx_info_list .idx_info_card:nth-child(-n+2) a {
    display: flex;
    align-items: center;
    padding: 30px 20px 30px 30px;
}

#idx_info .idx_info_list .idx_info_card:nth-child(-n+2) figure {
    width: 22.667vw;
    max-width: 340px;
    height: 25vw;
    max-height: 375px;
    margin-bottom: 0;
}

#idx_info .idx_info_list .idx_info_card:nth-child(-n+2) .h3title {
    margin-left: 17px;
}

/* ------------------------------------------------------
idx_news
------------------------------------------------------ */
#idx_news {
    background: #f4efec;
    padding: 120px 100px 160px;
    position: relative;
}

#idx_news .inner {
    max-width: 1000px;
    z-index: 1;
}

#idx_news .h3title {
    margin-bottom: 30px;
}

#idx_news .idx_news_txt {
    font-size: 16px;
    text-align: center;
    margin-bottom: 65px;
}

#idx_news .idx_news_list {
    margin-bottom: 94px;
}

#idx_news .idx_news_list dl {
    border-bottom: 1px solid #b3b3b3;
    padding: 44px 0;
    cursor: pointer;
}

#idx_news .idx_news_list dl:first-child {
    border-top: 1px solid #b3b3b3;
}

#idx_news .idx_news_list dl dt {
    margin-bottom: 16px;
}

#idx_news .idx_news_list dl dt span {
    display: inline-block;
    letter-spacing: 0.05em;
}

#idx_news .idx_news_list dl dt .group_cate {
    margin: 0 8px 0 -5px;
}

#idx_news .idx_news_list dl dt .cate {
    color: var(--orange-color);
    margin: 0 8px 5px 0;
}

#idx_news .idx_news_list dl dt .cate:last-child {
    margin-right: 0;
}

#idx_news .idx_news_list dl dd {
    font-size: 18px;
    letter-spacing: 0.05em;
}

#idx_news .idx_news_list dl dd a {
    display: -webkit-box;
    height: auto;
    -webkit-box-orient: vertical;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}

/* ------------------------------------------------------
Footer
------------------------------------------------------ */
#footer .box_contact {
    background: #fcf6f3 url(../images/footer/box_contact_bg.svg) no-repeat center;
    background-size: cover;
    padding: 105px 50px;
}

#footer .box_contact .inner {
    max-width: 1200px;
    border-radius: 42px;
    background: var(--white-color);
    overflow: hidden;
}

#footer .box_contact .inner::before {
    position: absolute;
    content: '';
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='42' ry='42' stroke='%23f87e34' stroke-width='4' stroke-dasharray='7%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 42px;
    top: 15px;
    left: 15px;
    pointer-events: none;
}

#footer .box_contact .box_contact_frame {
    width: 100%;
    text-align: center;
    padding: 73px 25px 97px;
    position: relative;
    z-index: 5;
}

#footer .box_contact .h3title {
    line-height: 1.53;
    margin-bottom: 20px;
}

#footer .box_contact .box_contact_txt {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 72px;
}

#footer .box_contact .btn_primary {
    max-width: 480px;
}

#footer .box_contact .btn_primary a {
    font-size: 18px;
}

#footer .box_phone {
    background: var(--orange-color);
    color: var(--white-color);
    text-align: center;
    padding: 97px 0 94px;
}

#footer .box_phone .box_phone_ttl {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 42px;
}

#footer .box_phone .box_phone_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 28px;
}

#footer .box_phone .box_phone_list li {
    width: 100%;
    max-width: 400px;
    font-weight: 700;
    margin: 0 0 15px;
}

#footer .box_phone .box_phone_list li a {
    font-size: 33px;
    letter-spacing: 0.05em;
    color: var(--white-color);
}

#footer .box_phone .box_phone_list li a i {
    display: inline-block;
    background: url(../images/common/icon_phone.svg) no-repeat;
    background-size: contain;
    width: 26px;
    height: 34px;
    margin-right: 11px;
    position: relative;
    top: 2px;
}

#footer .box_phone .box_phone_list li span {
    font-size: 17px;
    letter-spacing: 0.1em;
    margin-left: 5px;
}

#footer .box_phone .box_phone_note {
    font-size: 16px;
    font-weight: 500;
    line-height: 2.375;
}

#footer .box_connect {
    padding: 55px 0 12px;
}

#footer .box_connect .inner {
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 77px;
}

#footer .box_connect .f_logo {
    width: 100%;
    text-align: center;
    margin-bottom: 82px;
}

#footer .box_connect .f_logo span {
    display: block;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin-top: 19px;
}

#footer .box_connect .f_link {
    width: 49.913vw;
    max-width: 574px;
    display: flex;
    justify-content: space-between;
    margin-right: 35px;
}

#footer .box_connect .f_link ul li {
    font-size: 18px;
    letter-spacing: 0.1em;
    padding-left: 20px;
    margin-bottom: 38px;
    position: relative;
}

#footer .box_connect .f_link ul li::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 1px;
    background: #999;
    top: 14px;
    left: 0;
}

#footer .box_connect .f_link ul li:last-child {
    margin-bottom: 0;
}

#footer .box_connect .f_link ul li a {
    position: relative;
    transition: all .7s var(--e);
}

#footer .box_connect .f_link .sub_menu {
    padding: 16px 0 0;
}

#footer .box_connect .f_link .sub_menu ul li {
    padding-left: 0;
    margin-bottom: 16px;
}

#footer .box_connect .f_link .sub_menu ul li::before {
    display: none;
}

#footer .box_connect .f_link ul li a::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--orange-color);
    transform: scale(0, 1);
    transform-origin: center top;
    bottom: -8px;
    left: 0;
    transition: transform .3s;
}

#footer .box_connect .f_link ul li a:hover {
    color: var(--orange-color);
}

#footer .box_connect .f_link ul li a:hover::after {
    transform: scale(1, 1);
}

#footer .box_connect .f_address {
    width: 100%;
    max-width: 362px;
}

#footer .box_connect .f_address dl {
    display: flex;
    margin-bottom: 36px;
}

#footer .box_connect .f_address dl:nth-child(1) {
    margin-bottom: 69px;
}

#footer .box_connect .f_address dl:last-child {
    margin: 51px 0 0;
}

#footer .box_connect .f_address dl dt {
    width: 100%;
    max-width: 114px;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.65;
    color: #666;
    opacity: .4;
    flex-shrink: 0;
}

#footer .box_connect .f_address dl dd {
    font-size: 16px;
    line-height: 1.875;
    letter-spacing: 0.1em;
}

#footer .box_connect .f_address dl:not(:nth-child(1)) dd {
    font-size: 26px;
    line-height: 1;
}

#footer .box_connect .f_address dl:last-child dd {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 12px;
}

#footer .box_connect .f_address dl:last-child dd p {
    line-height: 1.5;
    margin: 0 15px 0 0;
}

#footer .privacy_policy_link {
    text-align: center;
    margin: 43px 0 34px;
}

#footer .privacy_policy_link a {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-decoration: underline;
}

#footer address {
    font-size: 11px;
    letter-spacing: 0.1em;
    font-style: normal;
    text-align: center;
}


/* MOZZILLA CSS */
@-moz-document url-prefix() {}

/* IE CSS */
@media screen\0 {}

/* EDGE 12+ CSS */
@supports (-ms-ime-align:auto) {}
