@charset "UTF-8";
/* ===================== 
リセットcss
 ===================== */
/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
    margin: 0;
    padding-left: 0;
}
ul li,
ol li {
    list-style: none;
}

ul[role="list"],
ol[role="list"] {
    list-style: none;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    line-height: 1.5;
    min-height: 100vh;
    text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
    display: block;
    max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
/* ===================== 
ヘッダー
 ===================== */
.l-header {
    background-color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.l-header__inner {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding: 0 4rem;
}
@media screen and (max-width: 750px) {
    .l-header__inner {
        flex-direction: column;
        padding: 1rem;
    }
}

.l-header__logo {
    display: flex;
    justify-content: center;
    padding: 0;
    width: 168px;
}

.l-header__nav ul {
    display: flex;
    margin: 0;
}
.l-header__nav ul li {
    list-style: none;
    padding: 1rem;
}
@media screen and (max-width: 575px) {
    .l-header__nav ul li {
        font-size: 80%;
        padding: 0.5rem;
    }
}

.l-header__login {
    font-weight: bold;
    text-decoration: none;
}

.l-header__entry {
    background-color: #d73a4e;
    border-radius: 30px;
    color: #fff;
    font-weight: bold;
    padding: 8px 16px;
    text-decoration: none;
}

/* ===================== 
フッター
 ===================== */
.l-footer {
    background-color: #60d0ea;
}

.l-footer__inner {
    display: flex;
    justify-content: space-between;
    margin: auto;
    padding: 0 4rem;
    width: 100%;
}
@media screen and (max-width: 1200px) {
    .l-footer__inner {
        align-items: center;
        flex-direction: column;
        justify-content: center;
        padding: 1rem 4rem;
    }
}
@media screen and (max-width: 750px) {
    .l-footer__inner {
        padding: 1rem;
    }
}

.l-footer__logo {
    align-items: center;
    display: flex;
    padding: 28px 0;
    width: 160px;
}
@media screen and (max-width: 1200px) {
    .l-footer__logo {
        padding: 0;
    }
}
.l-footer__logo img {
    height: auto;
    width: 100%;
}

.l-footer__nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
@media screen and (max-width: 575px) {
    .l-footer__nav {
        flex-direction: column;
    }
}
.l-footer__nav li {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 1rem;
    list-style: none;
    padding: 0 0.8rem;
}
.l-footer__nav li a {
    color: #fff;
    margin: auto;
}
@media screen and (max-width: 575px) {
    .l-footer__nav li {
        font-size: 80%;
        padding: 0 0.5rem;
    }
}

/* ===================== 
コンテナ
 ===================== */
.l-container {
    overflow: hidden;
    position: relative;
}

.l-container__inner {
    box-sizing: border-box;
    margin: auto;
    max-width: 1140px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
}
@media screen and (max-width: 1200px) {
    .l-container__inner {
        padding-left: 48px;
        padding-right: 48px;
    }
}
@media screen and (max-width: 575px) {
    .l-container__inner {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.l-container__inner--full {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
}
@media screen and (max-width: 1200px) {
    .l-container__inner--full {
        padding-left: 48px;
        padding-right: 48px;
    }
}
@media screen and (max-width: 575px) {
    .l-container__inner--full {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* ===================== 
メイン
 ===================== */
.l-main {
    margin: auto;
    max-width: 1140px;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    width: 100%;
}

.l-main--full {
    margin: auto;
    position: relative;
    width: 100%;
}

.l-section {
    padding: 72px 0;
    width: 100%;
}
@media screen and (max-width: 750px) {
    .l-section {
        padding: 48px 0;
    }
}

/* ===================== 
ボタン
 ===================== */
.c-btn-primary {
    background-color: #60d0ea;
    border-radius: 12px;
    color: #fff;
    display: inline-block;
    font-size: 1.75rem;
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: bold;
    min-height: 0vw;
    padding: 32px;
    text-decoration: none;
}
@media screen and (max-width: 750px) {
    .c-btn-primary {
        font-size: 1.25rem;
        padding: 16px 24px;
    }
}

.c-btn-secondary {
    background-color: #d73a4e;
    border-radius: 12px;
    color: #fff;
    display: inline-block;
    font-size: 1.75rem;
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: bold;
    min-height: 0vw;
    padding: 32px;
    text-decoration: none;
}
@media screen and (max-width: 750px) {
    .c-btn-secondary {
        font-size: 1.25rem;
        padding: 16px 24px;
    }
}

/* ===================== 
リンクスタイル
 ===================== */
a {
    text-decoration: none;
    transition: all ease 0.3s;
}
a:hover {
    opacity: 0.7;
}

input[type="submit"] {
    text-decoration: none;
    transition: all ease 0.3s;
}
input[type="submit"]:hover {
    cursor: pointer;
    opacity: 0.7;
}

.c-link-underline {
    text-decoration: underline;
    word-break: break-all;
}

.c-link-url {
    word-break: break-all;
}

/* ===================== 
テキスト
 ===================== */
p {
    line-height: 1.75;
    text-align: justify;
}

* {
    color: #444646;
}

/* ----- 共通フォント設定の@extend ----- */
.c-heading-deco {
    font-family: "Zen Maru Gothic", serif;
    font-style: normal;
    font-weight: 500;
}

.c-heading-deco .strong {
    font-family: "Zen Maru Gothic", serif;
    font-style: normal;
    font-weight: 700;
}

/* 外部リンク */
a[target="_blank"]::after {
    content: "\f35d";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    height: inherit;
    margin-left: 4px;
    position: relative;
}

a[target="_blank"]:has(img)::after {
    display: none;
}

.c-heading {
    color: #444646;
    font-size: 36px;
    position: relative;
    text-align: center;
}

.c-heading-w {
    color: #fff;
    font-size: 36px;
    position: relative;
    text-align: center;
}

.c-heading-deco {
    color: #444646;
    display: inline-block;
    font-size: 36px;
    position: relative;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-heading-deco {
        font-size: 24px;
    }
}
.c-heading-deco::after {
    background-color: #60d0ea;
    bottom: -30px;
    content: "";
    display: inline-block;
    height: 6px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 128px;
}
@media screen and (max-width: 750px) {
    .c-heading-deco::after {
        bottom: -16px;
        height: 4px;
    }
}
.c-heading-deco .strong {
    color: #d73a4e;
}

.c-heading-dots {
    background-image: radial-gradient(
        circle at center,
        #d73a4e 20%,
        transparent 20%
    ); /* 点の色とサイズ調整 */
    background-position: top right; /* 点の位置 */
    background-repeat: repeat-x; /* 横方向に繰り返し */
    background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
    color: #444646;
    padding-top: 0.05em; /* 縦方向の位置調整 */
}

/* ===================== 
共通要素
 ===================== */
/* --- フォームの共通要素 --- */
/* 大見出し */
/* 中（帯）みだし */
/* 小みだし */
/* リード */
/* ボタン */
/* ===================== 
お申し込みフォーム
 ===================== */
.p-contact {
    background-color: #f5f5f5;
}

.p-contact-form {
    display: flex;
}
@media screen and (max-width: 950px) {
    .p-contact-form {
        flex-direction: column;
    }
}

.p-contact-form__left {
    background-color: #fff;
    padding-top: 72px;
    width: 50%;
}
@media screen and (max-width: 950px) {
    .p-contact-form__left {
        width: 100%;
    }
}

.p-contact-form__left-inner {
    background-color: #fff;
    border-radius: 4px;
    margin-left: auto;
    margin-right: 48px;
    padding: 48px 24px;
    width: 100%;
    width: calc(100% - (100% - 570px + 40px));
}
@media screen and (max-width: 1200px) {
    .p-contact-form__left-inner {
        width: 100%;
    }
}
@media screen and (max-width: 950px) {
    .p-contact-form__left-inner {
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    }
}

.p-contact-form__right {
    background-color: #f5f5f5;
    padding-top: 72px;
    width: 50%;
}
@media screen and (max-width: 950px) {
    .p-contact-form__right {
        padding-bottom: 72px;
        width: 100%;
    }
}

.p-contact-form__right-inner {
    background-color: #fff;
    border-radius: 4px;
    margin-left: 48px;
    padding: 32px 24px 24px;
    width: 100%;
    width: calc(100% - (100% - 570px + 40px));
}
@media screen and (max-width: 1200px) {
    .p-contact-form__right-inner {
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    }
}

.p-contact-form__headingL {
    font-family: "Zen Maru Gothic", serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    text-align: center;
}

.p-contact-form__headingM {
    background-color: #60d0ea;
    border-radius: 4px;
    color: #fff;
    font-family: "Zen Maru Gothic", serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    margin-top: 24px;
    padding: 8px;
    text-align: center;
}

.p-contact-form__headingS {
    font-family: "Zen Maru Gothic", serif;
    font-style: normal;
    font-weight: 500;
    margin-top: 16px;
}

.p-contact-form__lead {
    margin-top: 24px;
}

.p-contact-form__step-wrap {
    margin-top: 48px;
}

.p-contact-form__required {
    background-color: #d73a4e;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    margin-left: 4px;
    padding: 0px 4px;
}

.p-contact-form__notes {
    font-size: 12px;
}

.p-contact-form__input input {
    margin-top: 8px;
}
.p-contact-form__input input[type="text"],
.p-contact-form__input input[type="tel"],
.p-contact-form__input input[type="email"] {
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 4px;
    box-sizing: border-box;
    font-weight: 500;
    height: 44px !important;
    padding: 0 15px;
}

.p-contact-form__input--full input {
    width: 100%;
}

.p-contact-form__input--consent {
    margin-top: 24px;
    text-align: center;
}

.p-contact-form__input--2col {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
}
@media screen and (max-width: 750px) {
    .p-contact-form__input--2col {
        gap: 0.5rem;
    }
}
.p-contact-form__input--2col input {
    max-width: 200px;
    width: 100%;
}

::-moz-placeholder {
    color: #b3bbbf;
}

::placeholder {
    color: #b3bbbf;
}

.p-contact-form__check-box label {
    margin-right: 8px;
}

.p-contact-form__link-wrap {
    text-align: center;
}

.p-contact-form__confirm {
    color: #d73a4e;
    position: relative;
}
.p-contact-form__confirm:after {
    border-bottom: 0.5em solid transparent;
    border-left: 0.5em solid #d73a4e;
    border-top: 0.5em solid transparent;
    content: "";
    display: inline-block;
    height: 0;
    position: absolute;
    right: -18px;
    top: 0;
    transform: translateX(-50%);
    width: 0;
}

.p-top-contact__btn-wrap {
    border: 2px solid transparent;
}

.p-contact-form__btn {
    border: solid 0px;
    font-size: clamp(16px, 2vw, 18px);
    margin-top: 32px;
    padding: 24px;
}

/* 4ステップ */
.p-contact-form__step-heading-m {
    align-items: center;
    background-color: #fceb69;
    color: #444646;
    display: flex;
    flex-flow: column;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 46px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
    max-width: 480px;
    padding: 24px;
    position: relative;
    width: 80%;
}
.p-contact-form__step-heading-m::after {
    -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
    background: #fceb69;
    bottom: -60px;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    content: "";
    display: inline-block;
    height: 100%;
    height: 40px;
    position: absolute;
    right: 0;
    top: auto;
    transform: translateY(-50%);
    width: 100%;
}

.p-contact-form__step-heading-m--off {
    align-items: center;
    background-color: #dde1e2;
    color: #444646;
    display: flex;
    flex-flow: column;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 46px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
    max-width: 480px;
    padding: 24px;
    position: relative;
    width: 80%;
}
.p-contact-form__step-heading-m--off::after {
    -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
    background: #dde1e2;
    bottom: -60px;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    content: "";
    display: inline-block;
    height: 100%;
    height: 40px;
    position: absolute;
    right: 0;
    top: auto;
    transform: translateY(-50%);
    width: 100%;
}

.p-contact-form__step-number {
    border-bottom: solid 2px #444646;
    display: block;
}

.p-contact-form__step-heading-text {
    align-items: center;
    display: flex;
    margin-top: 16px;
    text-align: center;
}

.p-contact-form__step-end {
    font-size: 18px;
    font-weight: bold;
    margin-top: 72px;
    text-align: center;
}

.p-contact-form__step-img img {
    margin: auto;
}

.p-contact-form__error {
    color: #d73a4e;
    font-size: 12px;
    font-weight: bold;
}

/* ===================== 
確認画面
 ===================== */
.p-contact {
    background-color: #f5f5f5;
}

.p-confirm-form__wrap {
    margin: auto;
    max-width: 800px;
    width: 100%;
}

.p-confirm-form__headingL {
    font-family: "Zen Maru Gothic", serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    text-align: center;
}

.p-confirm-form__lead {
    margin-top: 24px;
    text-align: center;
}

.p-confirm-form__headingM {
    background-color: #60d0ea;
    border-radius: 4px;
    color: #fff;
    font-family: "Zen Maru Gothic", serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    margin-top: 24px;
    padding: 8px;
    text-align: center;
}

.p-confirm-form__headingS {
    font-family: "Zen Maru Gothic", serif;
    font-style: normal;
    font-weight: 500;
    margin-top: 16px;
}

.p-confirm-form__input {
    background: #fff;
    border: 2px solid #f5f5f5;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 8px;
    padding: 10px 15px;
}

.p-confirm-form__hyphen {
    display: inline-block;
    position: relative;
}
.p-confirm-form__hyphen:before {
    content: "-";
    margin-right: 8px;
    position: relative;
}
.p-confirm-form__hyphen:first-child:before {
    content: "";
    margin-right: 0;
}

.p-confirm-form__btn-wrap {
    text-align: center;
    width: 100%;
}

.p-confirm-form__btn {
    border: solid 0px;
    font-size: clamp(16px, 2vw, 18px);
    margin: auto;
    margin-bottom: 48px;
    margin-top: 32px;
    padding: 24px;
}

/* ===================== 
送信完了
 ===================== */
.p-mailto {
    height: calc(100vh - 147px);
    position: relative;
}

.p-mailto-container {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.p-mailto__headingL {
    font-family: "Zen Maru Gothic", serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    text-align: center;
    text-align: center;
}

.p-mailto__lead {
    margin-top: 24px;
    text-align: center;
}

.p-mailto-container {
    padding: 72px;
}

/* ===================== 
 フォント
 ===================== */
.u-text-n {
    font-weight: normal;
}

.u-text-b {
    font-weight: bold;
}

.u-text-center {
    text-align: center;
}

.u-text-left {
    text-align: left;
}

/* ===================== 
カラー
 ===================== */
.u-bg-w {
    background-color: #fff;
}

.u-clr-w {
    color: #fff;
}

.u-clr-base {
    color: #60d0ea;
}

.u-bg-base {
    background-color: #60d0ea;
}

.u-clr-accent01 {
    color: #d73a4e;
}

.u-bg-accent01 {
    background-color: #d73a4e;
}

.u-clr-accent02 {
    color: #ff8888;
}

.u-bg-accent01 {
    background-color: #ff8888;
}

.u-bg-main-bg {
    background-color: #f5f5f5;
}

/* ===================== 
余白設定
 ===================== */
.u-m-auto {
    margin: auto;
}

/* マージン ------ */
@media screen and (min-width: 769px) {
    .u-mt-s {
        margin-top: 24px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-mt-s {
        margin-top: 16px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-mt-s {
        margin-top: 8px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-mb-s {
        margin-bottom: 24px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-mb-s {
        margin-bottom: 16px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-mb-s {
        margin-bottom: 8px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-my-s {
        margin-bottom: 24px !important;
        margin-top: 24px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-my-s {
        margin-bottom: 16px !important;
        margin-top: 16px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-my-s {
        margin-bottom: 8px !important;
        margin-top: 8px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-mt-m {
        margin-top: 48px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-mt-m {
        margin-top: 32px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-mt-m {
        margin-top: 24px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-mb-m {
        margin-bottom: 48px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-mb-m {
        margin-bottom: 32px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-mb-m {
        margin-bottom: 24px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-my-m {
        margin-bottom: 48px !important;
        margin-top: 48px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-my-m {
        margin-bottom: 32px !important;
        margin-top: 32px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-my-m {
        margin-bottom: 24px !important;
        margin-top: 24px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-mt-l {
        margin-top: 72px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-mt-l {
        margin-top: 48px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-mt-l {
        margin-top: 32px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-mb-l {
        margin-bottom: 72px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-mb-l {
        margin-bottom: 48px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-mb-l {
        margin-bottom: 32px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-my-l {
        margin-bottom: 72px !important;
        margin-top: 72px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-my-l {
        margin-bottom: 48px !important;
        margin-top: 48px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-my-l {
        margin-bottom: 32px !important;
        margin-top: 32px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-pt-s {
        padding-top: 24px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-pt-s {
        padding-top: 16px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-pt-s {
        padding-top: 8px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-pb-s {
        padding-bottom: 24px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-pb-s {
        padding-bottom: 16px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-pb-s {
        padding-bottom: 8px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-py-s {
        padding-bottom: 24px !important;
        padding-top: 24px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-py-s {
        padding-bottom: 16px !important;
        padding-top: 16px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-py-s {
        padding-bottom: 8px !important;
        padding-top: 8px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-pt-m {
        padding-top: 48px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-pt-m {
        padding-top: 32px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-pt-m {
        padding-top: 24px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-pb-m {
        padding-bottom: 48px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-pb-m {
        padding-bottom: 32px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-pb-m {
        padding-bottom: 24px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-py-m {
        padding-bottom: 48px !important;
        padding-top: 48px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-py-m {
        padding-bottom: 32px !important;
        padding-top: 32px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-py-m {
        padding-bottom: 24px !important;
        padding-top: 24px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-pt-l {
        padding-top: 72px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-pt-l {
        padding-top: 48px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-pt-l {
        padding-top: 32px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-pb-l {
        padding-bottom: 72px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-pb-l {
        padding-bottom: 48px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-pb-l {
        padding-bottom: 32px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-py-l {
        padding-bottom: 72px !important;
        padding-top: 72px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-py-l {
        padding-bottom: 48px !important;
        padding-top: 48px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-py-l {
        padding-bottom: 32px !important;
        padding-top: 32px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-pt-ll {
        padding-top: 70px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-pt-ll {
        padding-top: 72px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-pt-ll {
        padding-top: 48px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-pb-ll {
        padding-bottom: 70px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-pb-ll {
        padding-bottom: 72px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-pb-ll {
        padding-bottom: 48px !important;
    }
}

@media screen and (min-width: 769px) {
    .u-py-ll {
        padding-bottom: 70px !important;
        padding-top: 70px !important;
    }
}
@media screen and (max-width: 768px) {
    .u-py-ll {
        padding-bottom: 72px !important;
        padding-top: 72px !important;
    }
}
@media screen and (max-width: 600px) {
    .u-py-ll {
        padding-bottom: 48px !important;
        padding-top: 48px !important;
    }
}

/* ===================== 
表示非表示設定
 ===================== */
.u-sp-display {
    display: block;
}
@media screen and (min-width: 751px) {
    .u-sp-display {
        display: none;
    }
}

.u-pc-display {
    display: block;
}
@media screen and (max-width: 750px) {
    .u-pc-display {
        display: none;
    }
}
