@charset "utf-8";

/* Googlefonts */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;600;700&family=Zen+Kaku+Gothic+New:wght@400;700&display=swap");

html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    animation: fadeIn 0.5s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
body {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}
* {
    box-sizing: border-box;
    font-style: normal;
}
svg:not(:root) {
    overflow: hidden;
}
img {
    border: none;
    width: auto;
    max-width: 100%;
    height: auto;
    line-height: 0;
    vertical-align: bottom;
}
.full {
    width: 100%;
}
a,
a i,
a small,
a span,
a img,
button .link {
    background: transparent;
    text-decoration: none;
    transition: 0.2s ease-in-out;
    color: #201213;
}
a:focus,
*:focus {
    outline: none;
}
.fade {
    transition: 0.2s ease-in-out;
}
.fade:hover {
    opacity: 1;
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}
p:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}
dl,
dt,
dd,
ul.nolist,
ol.nolist {
    margin: 0;
    padding: 0;
}
ul.nolist li,
ol.nolist li {
    list-style: none;
    padding: 0;
    margin: 0;
}
small {
    font-size: 80%;
}
.right {
    text-align: right !important;
}
.left {
    text-align: left !important;
}
.center {
    text-align: center !important;
}
.pright {
    padding-right: 1rem;
}
.pleft {
    padding-left: 1rem;
}
.block {
    display: block !important;
}
.iblock {
    display: inline-block !important;
}
.note {
    padding-left: 0.8em;
    margin: 0 0 1rem !important;
}
.note span {
    font-size: clamp(12px, 2rem, 14px);
    text-indent: -1em;
    display: block;
    line-height: 1.5;
}
.fortb,
.forsp {
    display: none !important;
}
.tel {
    pointer-events: none;
}
@media screen and (max-width: 980px) {
    .fortb {
        display: block !important;
    }
}
@media screen and (max-width: 780px) {
    .forpc {
        display: none !important;
    }
    .forsp {
        display: block !important;
    }
    .tel {
        pointer-events: inherit;
    }
    input,
    select,
    textarea {
        font-size: 16px !important;
    }
}
/* ーーーーーーーーーーーー共通項目ここからーーーーーーーーーーーー */

html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    animation: fadeIn 0.5s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
body {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    background-color: var(--gray);
    overflow-x: hidden; /* 背景の円が画面からはみ出しても横スクロールが出ないようにする */
}
/* ーーーーーーーー フォント ーーーーーーーー*/
html {
    font-size: 0.4vw;
    scroll-behavior: smooth;
}
html,
body,
h1,
h2,
h3,
p,
dl,
dt,
dd,
ul,
li {
    /*デフォルトの文字色、font-familyを予め当てておく*/
    color: #201213;
    font-family: "Zen Kaku Gothic New", "Helvetica Neue", Arial,
        "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
p {
    font-size: clamp(14px, 3rem, 16px);
    line-height: 1.75;
}
.en {
    font-family: "Josefin Sans", sans-serif;
}
.fade {
    transition: 0.4s ease-in-out;
}
.fade:hover {
    opacity: 1;
    text-decoration: none;
}

.right {
    text-align: right !important;
}
.left {
    text-align: left !important;
}
.center {
    text-align: center !important;
}
.block {
    display: block !important;
}
.iblock {
    display: inline-block !important;
}
.full {
    width: 100%;
    height: auto;
}
.note {
    padding-left: 1em;
    text-indent: -1em;
}

/*ーーーーーーーー FLEX ーーーーーーーー*/
.flex_content {
    display: flex;
}
.flex_wrap {
    flex-wrap: wrap;
}
.flex_justify {
    justify-content: space-between;
}
.flex_start {
    justify-content: flex-start;
}
.flex_end {
    justify-content: flex-end;
}
.flex_center {
    justify-content: center;
}
.flex_top {
    align-items: flex-start;
}
.flex_align {
    align-content: space-between;
}
.flex_middle {
    align-items: center;
}
.flex_bottom {
    align-items: flex-end;
}
.flex_all {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex_left,
.flex_right {
    flex-basis: 48%;
    max-width: 48%;
}
.flex_free {
    flex: 1;
}

/*ーーーーーーーー POSITION ーーーーーーーー*/
.prelative {
    position: relative !important;
}
.pabsolute {
    position: absolute !important;
}

/*ーーーーーーーー MARGIN ーーーーーーーー*/
.mauto {
    margin-left: auto !important;
    margin-right: auto !important;
}
.mb0 {
    margin-bottom: 0 !important;
}
.mg02 {
    margin-top: 0.2em !important;
    margin-bottom: 0.2em !important;
}
.mg03 {
    margin-top: 0.3em !important;
    margin-bottom: 0.3em !important;
}
.mg05 {
    margin-top: 0.5em !important;
    margin-bottom: 0.5em !important;
}
.mg1 {
    margin-top: 1em !important;
    margin-bottom: 1em !important;
}
.mg2 {
    margin-top: 2em !important;
    margin-bottom: rem !important;
}
.mg3 {
    margin-top: 3em !important;
    margin-bottom: 3em !important;
}
.mg4 {
    margin-top: 4em !important;
    margin-bottom: 4em !important;
}
.mg5 {
    margin-top: 5em !important;
    margin-bottom: 5em !important;
}
.mg10 {
    margin-top: 10em !important;
    margin-bottom: 10em !important;
}
.mg15 {
    margin-top: 15em !important;
    margin-bottom: 15em !important;
}
.mg20 {
    margin-top: 20em !important;
    margin-bottom: 20em !important;
}
.mg30 {
    margin-top: 30em !important;
    margin-bottom: 30em !important;
}
.mb02 {
    margin-bottom: 0.2em !important;
}
.mb03 {
    margin-bottom: 0.3em !important;
}
.mb05 {
    margin-bottom: 0.5em !important;
}
.mb1 {
    margin-bottom: 1em !important;
}
.mb2 {
    margin-bottom: 2em !important;
}
.mb3 {
    margin-bottom: 3em !important;
}
.mb4 {
    margin-bottom: 4em !important;
}
.mb5 {
    margin-bottom: 5em !important;
}
.mb10 {
    margin-bottom: 10em !important;
}
.mb15 {
    margin-bottom: 15em !important;
}
.mb20 {
    margin-bottom: 20em !important;
}
.mt02 {
    margin-top: 0.2em !important;
}
.mt03 {
    margin-top: 0.3em !important;
}
.mt05 {
    margin-top: 0.5em !important;
}
.mt1 {
    margin-top: 1em !important;
}
.mt2 {
    margin-top: 2em !important;
}
.mt3 {
    margin-top: 3em !important;
}
.mt4 {
    margin-top: 4em !important;
}
.mt5 {
    margin-top: 5em !important;
}
.mt10 {
    margin-top: 10em !important;
}
.mt15 {
    margin-top: 15em !important;
}
.mt20 {
    margin-top: 20em !important;
}
.pt02 {
    padding-top: 0.2em !important;
}
.pt03 {
    padding-top: 0.3em !important;
}
.pt05 {
    padding-top: 0.5em !important;
}
.pb1 {
    padding-bottom: 1em !important;
}
.pb2 {
    padding-bottom: 2em !important;
}
.pb3 {
    padding-bottom: 3em !important;
}
.pb4 {
    padding-bottom: 4em !important;
}
.pb5 {
    padding-bottom: 5em !important;
}
.pb10 {
    padding-bottom: 10em !important;
}
.pb15 {
    padding-bottom: 15em !important;
}
.pb20 {
    padding-bottom: 20em !important;
}
.pd02 {
    padding-top: 0.2em !important;
    padding-bottom: 0.2em !important;
}
.pd03 {
    padding-top: 0.3em !important;
    padding-bottom: 0.3em !important;
}
.pd05 {
    padding-top: 0.5em !important;
    padding-bottom: 0.5em !important;
}
.pd1 {
    padding-top: 1em !important;
    padding-bottom: 1em !important;
}
.pd2 {
    padding-top: 2em !important;
    padding-bottom: 2em !important;
}
.pd3 {
    padding-top: 3em !important;
    padding-bottom: 3em !important;
}
.pd4 {
    padding-top: 4em !important;
    padding-bottom: 4em !important;
}
.pd5 {
    padding-top: 5em !important;
    padding-bottom: 5em !important;
}
.pd10 {
    padding-top: 10em !important;
    padding-bottom: 10em !important;
}
.pd15 {
    padding-top: 15em !important;
    padding-bottom: 15em !important;
}
.pd20 {
    padding-top: 20em !important;
    padding-bottom: 20em !important;
}
.pd25 {
    padding-top: 25em !important;
    padding-bottom: 25em !important;
}
.pa02 {
    padding: 0.2em !important;
}
.pa03 {
    padding: 0.3em !important;
}
.pa05 {
    padding: 0.5em !important;
}
.pa1 {
    padding: 1em !important;
}
.pa2 {
    padding: 2em !important;
}
.pa3 {
    padding: 3em !important;
}
.pa4 {
    padding: 4em !important;
}
.pa5 {
    padding: 5em !important;
}
.pa10 {
    padding: 10em !important;
}
.pa15 {
    padding: 15em !important;
}
.pa20 {
    padding: 20em !important;
}

/*ーーーーーーーー オリジナル ーーーーーーーー*/
.mb50 {
    margin-bottom: 50px;
}
.mb70 {
    margin-bottom: 70px;
}
.mb100 {
    margin-bottom: 100px;
}
.mb150 {
    margin-bottom: 150px;
}
.mb200 {
    margin-bottom: 200px;
}
.pt100 {
    padding-top: 100px;
}
.gap {
    gap: 10rem;
}
/*ーーーーーーーー フェードイン ーーーーーーーー*/
/* フェードイン前 */
.js-fade {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s, visibility 1s, transform 1s;
}
/* フェードイン後 */
.scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

/*ーーーーーーーー カラー ーーーーーーーー*/
:root {
    --gray: #f8f8f9;
    --orange: #fb7243;
    --green: #91d082;
    --black: #201213;
}

/*ーーーーーーーー レスポンシブ表示切り替え ーーーーーーーー*/
.pc_block {
    display: block;
}
.sp_none {
    display: none;
}
@media screen and (max-width: 480px) {
    .pc_block {
        display: none;
    }
    .sp_none {
        display: block;
    }
}

/*ーーーーーーーー wrap ーーーーーーーー*/
.inner {
    /* width: calc(100% - 20rem); */
    max-width: 1100px;
    margin-left: auto !important;
    margin-right: auto !important;
}
.section {
    padding: 0 4%;
}
@media screen and (max-width: 580px) {
    .section {
        padding: 0 7%;
    }
}

/*ーーーーーーーー 背景のオブジェクト ーーーーーーーー*/
.section-obj {
    /* 円のオブジェクト */
    position: absolute;
    width: 20vw;
    height: 20vw;
    border-radius: 99rem;
}
.obj01 {
    top: 20%;
    right: 5%;
    background: rgba(239, 114, 67, 0.2);
}
.obj02 {
    top: 50%;
    left: 30%;
    transform: translateX(-50%);
    background: rgba(131, 194, 128, 0.2);
}
/* 固定ページ：mvの背景オブジェクト位置調整 */
.section-mv .obj01 {
    top: 0;
    right: 2%;
}
.section-mv .obj02 {
    top: 90%;
    left: 20%;
}

/*ーーーーーーーー pagetop ーーーーーーーー*/
.page-top a i::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.page-top a {
    font-size: 28px;
    height: 100%;
}
.page-top:hover {
    filter: invert(5%);
}
.page-top {
    height: 50px;
    background-color: #fff;
}

/*ーーーーーーーー header ーーーーーーーー*/
.header-inner {
    padding: 80px 0;
}
.header-inner h1 {
    width: 250px;
}
.header-inner ul {
    gap: 4em;
    list-style: none;
}
.header-inner ul li {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(16px, 3.3rem, 18px);
    font-weight: 700;
}
.header-inner ul li a:hover {
    border-bottom: 2px solid #4c4c4c;
}
.header-logo a:hover {
    opacity: 0.7;
}

/* 通常時、スマホ版は非表示 */
.sp-nav,
.sp-btn {
    display: none;
}
@media screen and (max-width: 580px) {
    .pc-nav {
        display: none;
    }
    .header-inner {
        padding: 20px 0;
    }
    .header {
        margin-bottom: 10px;
    }

    /* ハンバーガー */
    .sp-btn {
        top: 30px;
        right: 25px;
        height: 23px;
        cursor: pointer;
        z-index: 1001;
    }
    .sp-btn span {
        top: 10px;
        width: 33px;
        height: 3px;
        border-radius: 2px;
        background: var(--black);
        transition: 0.3s;
    }
    .sp-btn span::before,
    .sp-btn span::after {
        content: "";
        display: block;
        position: absolute;
        width: 33px;
        height: 3px;
        border-radius: 3px;
        background: var(--black);
        transition: 0.3s;
    }
    .sp-btn span::before {
        bottom: 10px;
    }
    .sp-btn span::after {
        top: 10px;
    }

    /* ハンバーガー閉じる */
    .sp-btn.open span {
        background: transparent;
    }
    .sp-btn.open span::before {
        bottom: 0;
        transform: rotate(45deg);
    }
    .sp-btn.open span::after {
        top: 0;
        transform: rotate(135deg);
    }

    /* ハンバーガーメニュー */
    .sp-nav {
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background: var(--gray);
        z-index: 1000;
    }
    .sp-nav ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
    .sp-nav ul li {
        padding: 20px 0;
        color: var(--black);
        font-size: 16px;
        width: 60%;
        border-bottom: 1px solid #dcdcdd;
    }
    .sp-nav ul li:last-child {
        border-bottom: none;
    }
    .header-inner_listitem a {
        width: 100%;
        display: block;
    }
    .sp-nav_i::before {
        position: absolute;
        top: 0;
        right: 0;
        font-size: 80%;
        color: #4c4c4c;
    }
    .header-inner ul li a:hover {
        border-bottom: none;
    }
    .sp-nav_sns {
        gap: 2em;
        margin-top: 50px;
    }
    .sp-nav_sns--ig {
        width: 25px;
    }
    .sp-nav_sns--fb {
        height: 25px;
    }
}

/*ーーーーーーーー footer ーーーーーーーー*/
.footer {
    background-color: var(--black);
}
.footer p {
    color: #fff;
}
.footer-inner {
    padding: 100px 0;
}
.footer-sns {
    gap: 2rem;
}
.footer-sns a img {
    width: 70%;
    height: auto;
}

/*ーーーーーーーー ローディング ーーーーーーーー*/
.loader {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: var(--gray);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    visibility: visible;
}
.loader.is-active {
    opacity: 0;
    visibility: hidden;
}
.loader-circle {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: var(--green);
    border-radius: 100%;
}

/* more-link */
.more-link::after {
    content: "";
    position: absolute;
    right: 8rem;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid #201213;
    border-right: 1px solid #201213;
    transform: rotate(45deg) translateY(-50%);
}
