@charset "UTF-8";

/**
 * foundation.scssここから
 */
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
    min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
    -webkit-tap-highlight-color: transparent;
    /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
    margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
    display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
    margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
    font-weight: normal;
}

dd {
    margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
    border-top-width: 1px;
    margin: 0;
    clear: both;
    color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: inherit;
    /* 2 */
}

address {
    font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
    text-decoration: underline dotted;
    /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: inherit;
    /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
    vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
    -webkit-appearance: none;
    /* 1 */
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: inherit;
    text-transform: inherit;
    /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
    cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
    cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
    outline: auto;
}

select:disabled {
    opacity: inherit;
}

/**
 * Remove padding
 */
option {
    padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
    margin: 0;
    padding: 0;
    min-width: 0;
}

legend {
    padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
    vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
    overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type="search"] {
    outline-offset: -2px;
    /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type="number"] {
    -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
    cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
    display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
    outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
    border-color: inherit;
    /* 1 */
    border-collapse: collapse;
}

caption {
    text-align: left;
}

td,
th {
    vertical-align: top;
    padding: 0;
}

th {
    text-align: left;
    font-weight: bold;
}

/* resetここまで */
body {
    font-family: "Noto Sans JP", "Roboto Condensed", Helvetica, Arial, Verdana,
        "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic,
        "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo,
        "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #333333;
    letter-spacing: 0.05em;
    line-height: 1.6;
    background-color: var(--base-color);
}

body.no-scroll {
    overflow: hidden;
    height: 100%;
}

:root {
    --main-color: #ee86a8;
    --sub-color: #7d7d7d;
    --accent-color: #b14f4f;
    --base-color: #f8f6f6;
    --base-color2: #f3e8eb;
    --grey-color: #cccccc;
    --lightGrey-color: #eeeeee;
    --white-color: #ffffff;
    --white-color2: rgba(255, 255, 255, 0.5);
    --line-color: #f6c7d6;
    --text-color: #333333;
}

/**
 * foundation.scssここまで
 */
/**
 * layout.scssここから
 */
#header {
    position: fixed;
    z-index: 20;
    width: 100%;
    height: 60px;
    top: 0;
    background: var(--base-color);
    border-bottom: 1px solid var(--grey-color);
    color: var(--main-color);
}

.admin-bar #header {
    top: 32px;
}

@media (max-width: 782px) {
    /* モバイルでは基本 0 にする（隙間を作らない） */
    .admin-bar #header {
        top: 0;
    }

    /* ただし「最上部にいる間だけ」は管理バーをよける */
    .admin-bar:not(.scrolled) #header {
        top: 46px;
    }
}

.l-header .l-header__inner .logo img {
    width: 260px;
    height: auto;
}

/* フッターまでスクロールしたとき */
@media only screen and (min-width: 768px) {
    #header {
        height: 80px;
    }

    .l-header {
        display: flex;
        align-items: center;
        height: 80px;
        margin: auto;
    }

    .l-header .l-header__inner {
        width: 100%;
        max-width: 1120px;
        margin: auto;
    }

    .l-header .l-header__inner .logo a {
        transition: all 0.3s;
    }

    .l-header .l-header__inner .logo a:hover {
        filter: brightness(85%) contrast(120%);
    }

    .l-header .l-header__inner .logo a img {
        width: 300px;
        height: auto;
    }
}

.l-main {
    grid-area: "contents";
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
    width: 100vw;
    min-height: 100vh;
    position: relative;
}

.l-main .l-section + .l-section {
    padding-top: 80px;
}

.l-2col {
    display: grid;
    grid-template-columns: 1fr;
}

.l-maincol {
    min-width: 0;
}
.l-sidebar {
    margin-top: 80px;
    position: sticky;
    top: 120px;
    align-self: start;
}

.widget {
    margin: 0 0 24px;
}
.widget-title {
    padding: 4p 16px;
    border-bottom: 1px solid var(--line-color);
    margin: 0 0 8px;
    font-weight: bold;
}

@media only screen and (min-width: 768px) {
    .l-2col {
        grid-template-columns: 1fr 240px;
        gap: 32px;
    }
}

.archive-list,
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.archive-list li,
.category-list li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}
.archive-list a,
.category-list a {
    text-decoration: none;
    color: inherit;
}

.contents_area {
    position: relative;
}

.contents_area .background_text {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.contents_area .background_text img {
    width: 100%;
    height: auto;
}

.contents-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 480px));
    justify-content: center;
    gap: 80px;
    margin: 64px auto;
}

.contents-wrapper .contents_item {
    display: grid;
    grid-template-rows: auto minmax(220px, auto) 80px;
    background-color: #fff;
    border: 1px solid var(--line-color);
    border-radius: 16px;
    padding: 32px;
}

.contents-wrapper .contents_item .c-more_btn {
    margin-top: 20px;
}

@media only screen and (min-width: 768px) {
    .l-main .l-section + .l-section {
        padding-top: 104px;
    }

    .contents_area .background_text {
        top: 48.8%;
    }

    .contents-wrapper {
        /* grid-template-columns: repeat(2, min(100%, 480px));
        justify-content: space-between; */
        gap: 96px;
        margin: 80px 32px;
    }

    .contents-wrapper .contents_item {
        grid-template-rows: 88px 300px 60px;
        padding: 40px;
    }

    .contents-wrapper .contents_item .c-more_btn {
        margin-top: 0;
    }
}

.l-footer {
    background-color: var(--main-color);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-footer .copy {
    font-family: Helvetica, Arial, sans-serif;
    text-align: center;
    font-size: 14px;
    color: var(--white-color);
}

.l-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* グローバルナビ共通 */
.global-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1000;
}

.logo {
    margin-left: 12px;
}

/* メニューリスト（デスクトップ用のスタイル） */
.menu-list {
    display: flex;
    column-gap: 12px;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.menu-list li a {
    display: block;
    font-weight: bold;
    font-size: 16px;
    color: var(--main-color);
    padding: 4px 10px;
    transition: all 0.3s;
    position: relative;
    line-height: 1.6;
    text-align: center;
}

.menu-list li a:active {
    color: var(--line-color);
}

.menu_br {
    display: none;
}

@media (768px <=width < 900px) {
    .menu_br {
        display: block;
    }

    .menu-list li a {
        font-size: clamp(0.75rem, -0.705rem + 3.03vw, 1rem);
    }
}

/* ハンバーガーアイコン */
.hamburger {
    display: none;
    /* デスクトップでは非表示 */
}

.hamburger .bar {
    display: block;
    height: 3px;
    width: 100%;
    background: #555;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

/* open状態のハンバーガー */
.hamburger.open .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* オーバーレイ */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 900;
}

@media only screen and (min-width: 768px) {
    .menu-list li a::after {
        content: "";
        background-color: var(--main-color);
        width: 0;
        height: 2px;
        position: absolute;
        bottom: 0;
        left: 50%;
        transition: 0.3s;
    }

    .menu-list li a:hover::after {
        width: 100%;
        left: 0;
    }
}

.menu-list li.current-menu-item a {
    pointer-events: none;
    color: var(--line-color);
}

.menu-list li.current-menu-item a::after {
    content: "";
    background-color: var(--main-color);
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}

@media only screen and (max-width: 767px) {
    /* 横並びメニューを非表示 */
    .menu-list {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        padding: 4rem 2rem;
        background: var(--base-color2);
        transform: translateX(150%);
        transition: transform 0.5s ease;
        z-index: 1050;
    }

    .menu-list li + li {
        margin-top: 1rem;
    }

    .menu-list li {
        width: 100%;
        border-bottom: 1px solid var(--line-color);
    }

    .menu-list li a {
        padding-bottom: 8px;
        color: var(--main-color);
    }

    .menu-list li.current-menu-item a {
        color: var(--grey-color);
    }

    .menu-list li.current-menu-item a::after {
        width: 0;
    }

    .menu-list:not(.scrolled) {
        top: 46px;
    }

    /* ハンバーガーを表示 */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        background: none;
        border: none;
        cursor: pointer;
        position: fixed;
        right: 24px;
        top: 24px;
        z-index: 1100;
    }

    .admin-bar .hamburger:not(.scrolled) {
        top: calc(46px + 24px);
    }

    .logo {
        padding-block: 8px;
        margin-left: 0;
    }
}

/* 開いたときの状態 */
.menu-list.open {
    transform: translateX(0);
}

.overlay.open {
    opacity: 1;
    pointer-events: all;
}

.nav__box {
    display: flex;
    align-items: center;
    gap: 24px;
}

/**
 * layout.scssここまで
 */
/**
 * object.scssここから
 */
.c-more_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 52px;
    padding: 10px 0;
    text-align: center;
    margin-inline: auto;
    color: var(--white-color);
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    transition: all 0.3s;
    border-radius: 100px;
}

.c-more_btn span {
    position: relative;
}

.c-more_btn span::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -11px;
    width: 50px;
    height: 1px;
    background-color: transparent;
    transition: all 0.3s;
}

.c-more_btn span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 0.6em;
    height: 0.6em;
    border-top: 1px solid var(--main-color);
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s;
}

.c-more_btn:hover {
    background-color: var(--white-color);
    color: var(--main-color);
}

.c-more_btn:hover span::before {
    right: -61px;
    background-color: var(--main-color);
}

.c-more_btn:hover span::after {
    margin-left: 50px;
}

.c-more_btn:active {
    transform: scale(0.85);
    background-color: var(--white-color);
    color: var(--main-color);
}

.c-more_btn:active span::before {
    right: -61px;
    background-color: var(--main-color);
}

.c-more_btn:active span::after {
    margin-left: 50px;
}

.heading_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid var(--line-color);
    padding-bottom: 20px;
}

.heading_box-child {
    padding-top: 48px;
    position: relative;
}

.heading_box-child .c-sub_large {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 64px;
    font-style: italic;
    font-family: "Roboto Condensed";
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.06);
}

.heading_box-child .c-sub_large.privacy {
    white-space: nowrap;
    font-size: clamp(3rem, 2.043rem + 4.08vw, 4rem);
    top: 10px;
}

.c-h1heading {
    text-align: center;
}

.c-h1heading span {
    font-weight: 600;
    font-size: clamp(1.375rem, 1.06rem + 1.34vw, 2rem);
    color: var(--main-color);
    letter-spacing: 0.1em;
}

.c-sub_small {
    font-style: italic;
    text-transform: uppercase;
    line-height: 1;
    font-size: clamp(0.75rem, 0.624rem + 0.54vw, 1rem);
    font-weight: 500;
    font-family: "Roboto Condensed";
    color: var(--sub-color);
    letter-spacing: 0.1em;
}

.c-h2heading span {
    font-weight: 600;
    font-size: clamp(1.5rem, 1.374rem + 0.54vw, 1.75rem);
    letter-spacing: 0.1em;
    color: var(--main-color);
}

.c-h3heading span {
    font-weight: 600;
    font-size: clamp(1.125rem, 1.062rem + 0.27vw, 1.25rem);
    letter-spacing: 0.1em;
}

.c-heading__wrapper.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.c-heading__wrapper.center .c-h1heading {
    text-align: center;
    border: none;
}

.c-heading__wrapper.center .c-h1heading span {
    padding: 8px;
    border-bottom: 1px solid #888;
}

.back-text {
    position: absolute;
    z-index: 3;
    text-transform: uppercase;
    color: var(--main-color);
    opacity: 0.1;
    font-family: "Jost";
    font-weight: 700;
    writing-mode: vertical-rl;
    line-height: 1;
    top: 0;
    right: 0;
    letter-spacing: 3px;
    white-space: nowrap;
    font-size: clamp(4.5rem, 4.015rem + 2.07vw, 6.5rem);
    overflow: hidden;
    mix-blend-mode: multiply;
}

.back-text.left {
    right: auto;
    left: 0;
}

.c-sub-heading {
    margin-left: 0.5em;
    font-size: clamp(1.125rem, 0.978rem + 0.65vw, 1.5rem);
    color: #444;
    text-transform: capitalize;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.logo_box_child {
    width: 90%;
    margin: 48px auto;
}

.logo_box_child img {
    width: 100%;
    height: auto;
}

@media only screen and (min-width: 768px) {
    .heading_box-child {
        padding-top: 49px;
    }

    .heading_box-child .c-sub_large {
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 96px;
        font-style: italic;
        text-transform: uppercase;
        color: rgba(0, 0, 0, 0.06);
    }

    .heading_box-child .c-sub_large.privacy {
        font-size: 96px;
        top: -30px;
    }

    .logo_box_child {
        width: 640px;
        margin: 48px auto;
    }

    .logo_box_child img {
        width: 100%;
        height: auto;
    }
}

.phone-num {
    padding-left: 1.4em;
    position: relative;
}

.phone-num::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f095";
    position: absolute;
    left: 0;
}

.e-mail {
    padding-left: 1.4em;
    position: relative;
}

.e-mail::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f0e0";
    position: absolute;
    left: 0;
}

.c-inner-1120 {
    width: min(100%, 1168px);
    margin-inline: auto;
    padding-inline: 24px;
}
.c-inner-800 {
    width: min(100%, 848px);
    margin-inline: auto;
    padding-inline: 24px;
}

@media only screen and (max-width: 767px) {
    .c-inner-1120 {
        padding-inline: 20px;
    }
    .c-inner-800 {
        padding-inline: 0;
    }
}

#scroll-to-top {
    position: fixed;
    bottom: 88px;
    right: 4px;
    width: 48px;
    height: 48px;
    background-color: var(--main-color);
    color: #fff;
    font-size: 20px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    /* ちょっと下から */
    transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.3s;
}

#scroll-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    /* 元の位置にスッと */
}

#scroll-to-top:hover {
    background-color: var(--line-color);
}

@media only screen and (min-width: 768px) {
    #scroll-to-top {
        right: 24px;
    }
}

.list_disc {
    list-style: disc;
    margin-left: 2em;
}

.list_disc--flex {
    display: flex;
    flex-wrap: wrap;
    column-gap: 3em;
}

.list_num {
    list-style: decimal;
    margin-left: 2em;
}

.asterisk {
    padding-left: 1.2em;
    text-indent: -0.9em;
}

.asterisk li::before {
    content: "※";
    margin-right: 0.3em;
    position: relative;
    bottom: 1px;
}

.asterisk.en li::before {
    content: "*";
    margin-right: 0.3em;
    position: relative;
    bottom: 1px;
}

.bread-crumbs {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 12px;
    color: var(--main-color);
    margin-top: 64px;
    font-size: clamp(0.75rem, 0.624rem + 0.54vw, 1rem);
}

.bread-crumbs::before {
    content: "\f14a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
}

.bread-crumbs span a {
    transition: all 0.3s;
}

.bread-crumbs span a:hover {
    color: var(--grey-color);
}

.bread-crumbs span a:active {
    color: var(--grey-color);
}

.bread-crumbs span:nth-child(2),
.bread-crumbs span:nth-child(3) {
    white-space: nowrap;
    margin-left: 0.5em;
    padding-left: 1em;
    position: relative;
}

.bread-crumbs span:nth-child(2)::before,
.bread-crumbs span:nth-child(3)::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8em;
    position: absolute;
    top: 0.2em;
    left: 0;
}

@media only screen and (min-width: 768px) {
    .bread-crumbs {
        margin-top: 96px;
    }
}

.mv_privacy {
    margin-top: 48px;
    height: 180px;
    background-image: image-set(
        "../img/mv_privacy_sp.webp" type("image/webp"),
        "../img/mv_privacy_sp.jpg" type("image/jpeg")
    );
    background-position: center 92%;
    background-size: cover;
    background-repeat: no-repeat;
}

.privacy_wrapper {
    width: min(100%, 992px);
    margin: 48px auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.heading_privacy {
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line-color);
}

.heading_privacy span {
    font-weight: bold;
    font-size: clamp(1.125rem, 1.062rem + 0.27vw, 1.25rem);
}

@media only screen and (min-width: 768px) {
    .mv_privacy {
        margin-top: 48px;
        height: 320px;
        background-image: image-set(
            "../img/mv_privacy.webp" type("image/webp"),
            "../img/mv_privacy.jpg" type("image/jpeg")
        );
    }
}

.mv_services {
    margin-top: 48px;
    height: 180px;
    background-image: image-set(
        "../img/mv_services_sp.webp" type("image/webp"),
        "../img/mv_services_sp.jpg" type("image/jpeg")
    );
    background-position: center 70%;
    background-size: cover;
    background-repeat: no-repeat;
}

.service_container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    border: 1px solid var(--line-color);
    border-radius: 16px;
    box-sizing: border-box;
    overflow: hidden;
    background-color: var(--white-color);
}

.service_container figure {
    height: 100%;
    overflow: hidden;
}

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

.service_container section {
    padding: 24px;
}

.service_container section .sub_text {
    margin-top: 8px;
    font-weight: bold;
    font-size: clamp(1.125rem, 1.062rem + 0.27vw, 1.25rem);
}

.service_container section p {
    text-align: justify;
}

.mb80_160 {
    margin-bottom: 80px;
}

@media only screen and (min-width: 768px) {
    .mv_services {
        margin-top: 48px;
        height: 320px;
        background-image: image-set(
            "../img/mv_services.webp" type("image/webp"),
            "../img/mv_services.jpg" type("image/jpeg")
        );
        background-position: center;
    }

    .service_container {
        grid-template-columns: min(40%, 416px) auto;
        grid-template-rows: auto;
    }

    .service_container section {
        padding: 32px 64px;
    }

    .service_container.reverse {
        grid-template-columns: auto min(40%, 416px);
    }

    .service_container.reverse section {
        order: 1;
    }

    .service_container.reverse figure {
        order: 2;
    }

    .mb80_160 {
        margin-bottom: 160px;
    }
}

.mv_recruit {
    margin-top: 48px;
    height: 180px;
    background-image: image-set(
        "../img/mv_recruit_sp.webp" type("image/webp"),
        "../img/mv_recruit_sp.jpg" type("image/jpeg")
    );
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.recruit_container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    border: 1px solid var(--line-color);
    border-radius: 16px;
    box-sizing: border-box;
    overflow: hidden;
    background-color: var(--white-color);
}

.recruit_container figure {
    height: 100%;
    overflow: hidden;
}

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

.recruit_container section {
    padding: 24px;
}

.recruit_container section .sub_text {
    margin-top: 8px;
    font-weight: bold;
    font-size: clamp(1.125rem, 1.062rem + 0.27vw, 1.25rem);
}

.recruit_container section p {
    text-align: justify;
}

.recruit_text {
    letter-spacing: 0.1em;
    font-size: clamp(1.375rem, 1.06rem + 1.34vw, 2rem);
    font-weight: bold;
    color: var(--main-color);
    text-align: center;
}

/* お問い合わせフォーム */
/* フォーム全体のスタイル */
.wpcf7 {
    width: min(100%, 736px);
    margin: 40px auto 80px;
}

/* ラベルのスタイル */
.wpcf7-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    letter-spacing: 0.1em;
}

/* 必須フィールドのラベルスタイル */
.wpcf7-form .required {
    background-color: var(--main-color);
    color: var(--white-color);
    padding: 2px 8px;
    border-radius: 8px;
    margin-left: 10px;
    font-size: 16px;
    letter-spacing: 0.1em;
    vertical-align: baseline;
}

/* インプットフィールドのスタイル */
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid var(--line-color);
    border-radius: 5px;
    margin-bottom: 10px;
    margin-top: 10px;
    background-color: var(--white-color);
    font-weight: normal;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder,
.wpcf7-form select::placeholder {
    color: var(--grey-color);
}

/* テキストエリアのスタイル */
.wpcf7-form textarea {
    height: 150px;
    resize: vertical;
}

/* 送信ボタンのスタイル */
.wpcf7-form input[type="submit"] {
    width: 282px;
    display: flex;
    justify-content: center;
    margin-inline: auto;
    align-items: center;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: var(--white-color);
    padding: 10px 0;
    transition: all 0.3s;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 100px;
    position: relative;
}

.wpcf7-form input[type="submit"]::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -11px;
    width: 50px;
    height: 1px;
    background-color: transparent;
    transition: all 0.3s;
}

.wpcf7-form input[type="submit"]::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 0.6em;
    height: 0.6em;
    border-top: 1px solid var(--main-color);
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: var(--white-color);
    color: var(--main-color);
}

.wpcf7-form input[type="submit"]:hover::before {
    right: -61px;
    background-color: var(--main-color);
}

.wpcf7-form input[type="submit"]:hover::after {
    margin-left: 50px;
}

.wpcf7-form input[type="submit"]:active {
    scale: 0.85;
}

.wpcf7-form input[type="submit"]:hover {
    color: var(--main-color);
    background-color: var(--white-color);
    cursor: pointer;
}

/* エラーメッセージと成功メッセージのスタイル */
.wpcf7-form .wpcf7-not-valid-tip {
    color: red;
    font-size: 14px;
}

.wpcf7-form .wpcf7-mail-sent-ok {
    color: green;
    font-size: 16px;
    margin-bottom: 20px;
}

.wpcf7-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--line-color);
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 16px;
    background-color: var(--white-color);
}

.wpcf7-form input[type="checkbox"] {
    padding: 0;
    margin: 0;
    background: transparent;
    appearance: auto;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    cursor: pointer;
}

.wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wpcf7-list-item-label {
    position: relative;
    display: inline-block;
}

.wpcf7-list-item-label a {
    color: blue;
    text-decoration: underline;
}

.wpcf7-list-item-label a:hover {
    text-decoration: none;
}

.wpcf7 form input[type="submit"]:disabled,
.wpcf7 form button[type="submit"][disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

@media only screen and (min-width: 768px) {
    .mv_recruit {
        margin-top: 48px;
        height: 320px;
        background-image: image-set(
            "../img/mv_recruit.webp" type("image/webp"),
            "../img/mv_recruit.jpg" type("image/jpeg")
        );
        background-position: center 45%;
    }

    .recruit_container {
        grid-template-columns: min(40%, 416px) auto;
        grid-template-rows: auto;
    }

    .recruit_container section {
        padding: 24px 32px;
    }
}

@media only screen and (max-width: 767px) {
    .wpcf7-form input[type="checkbox"] {
        transform: scale(2);
        transform-origin: center;
    }
}

.mv_company {
    margin-top: 48px;
    height: 180px;
    background-image: image-set(
        "../img/mv_company_sp.webp" type("image/webp"),
        "../img/mv_company_sp.jpg" type("image/jpeg")
    );
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.com_tbl {
    width: 100%;
    border: 1px solid var(--line-color);
    border-radius: 16px;
    background-color: var(--white-color);
}

.com_tbl dl {
    display: flex;
    align-items: baseline;
    padding: 16px 20px;
    border-bottom: 1px solid var(--line-color);
}

.com_tbl dl:last-child {
    border-bottom: none;
}

.com_tbl dl dt {
    color: var(--main-color);
    font-weight: bold;
    width: 100px;
}

.com_tbl dl dd {
    width: calc(100% - 100px);
}

.g_map {
    margin-bottom: 80px;
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
}

.g_map iframe {
    width: 100%;
    height: 400px;
}

@media only screen and (min-width: 768px) {
    .mv_company {
        margin-top: 48px;
        height: 320px;
        background-image: image-set(
            "../img/mv_company.webp" type("image/webp"),
            "../img/mv_company.jpg" type("image/jpeg")
        );
        background-position: center 45%;
    }

    .com_tbl {
        width: 100%;
        border: 1px solid var(--line-color);
        border-radius: 16px;
        background-color: var(--white-color);
    }

    .com_tbl dl {
        display: flex;
        align-items: baseline;
        padding: 19px 64px;
        border-bottom: 1px solid var(--line-color);
    }

    .com_tbl dl dt {
        width: 160px;
    }

    .com_tbl dl dd {
        width: calc(100% - 160px);
    }

    .g_map iframe {
        height: 600px;
    }
}

.mv {
    margin-top: 60px;
    width: 100vw;
    height: 400px;
    background-image: image-set(
        "../img/mv_sp.webp" type("image/webp"),
        "../img/mv_sp.jpg" type("image/jpeg")
    );
    background-position: center;
    background-size: cover;
}

.mv_inner {
    position: relative;
    height: 100%;
}

.logo_box {
    position: absolute;
    right: 2%;
    bottom: 8%;
    z-index: 10;
}

.logo_box .mv_logo {
    width: 280px;
}

.logo_box .mv_logo img {
    width: 100%;
    height: auto;
}

.logo_box .logo_type_box {
    margin-left: 46px;
    margin-top: 16px;
}

.com_name {
    position: absolute;
    left: 0;
    top: 0;
    color: transparent;
}

.logo_box .logo_type picture {
    position: relative;
    display: flex;
    align-items: baseline;
    width: 140px;
}

.logo_box .logo_type picture img {
    width: 100%;
    height: auto;
}

.logo_box .logo_type picture::after {
    content: "は";
    color: var(--white-color);
    font-weight: 500;
    position: absolute;
    right: -22px;
    bottom: -6px;
    font-size: 16px;
}

.logo_box .tag-line {
    margin-top: 6px;
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
}

@media only screen and (min-width: 768px) {
    .mv {
        margin-top: 80px;
        height: 628px;
        background-image: image-set(
            "../img/mv.webp" type("image/webp"),
            "../img/mv.jpg" type("image/jpeg")
        );
    }

    .logo_box {
        position: absolute;
        right: 9px;
        bottom: 58px;
    }

    .logo_box .mv_logo {
        width: 522px;
    }

    .logo_box .mv_logo img {
        width: 100%;
        height: auto;
    }

    .logo_box .logo_type_box {
        margin-left: 86px;
        margin-top: 27px;
    }

    .logo_box .logo_type picture {
        position: relative;
        display: flex;
        align-items: baseline;
        width: 200px;
    }

    .logo_box .logo_type picture img {
        width: 100%;
        height: auto;
    }

    .logo_box .logo_type picture::after {
        content: "は";
        color: var(--white-color);
        font-weight: 500;
        position: absolute;
        right: -32px;
        bottom: -10px;
        font-size: 24px;
    }

    .logo_box .tag-line {
        margin-top: 10px;
        color: var(--white-color);
        font-weight: 500;
        font-size: 24px;
        line-height: 1.6;
    }
}

.mv_activities {
    margin-top: 48px;
    height: 180px;
    background-image: image-set(
        "../img/mv_activities_sp.webp" type("image/webp"),
        "../img/mv_activities_sp.jpg" type("image/jpeg")
    );
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Blog */
#blog {
    background-color: var(--sub-color);
    padding-bottom: 64px;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 352px));
    gap: 46px 32px;
    margin: 20px auto;
    justify-content: center;
}

.blog-list_item {
    border: 1px solid var(--line-color);
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--white-color);
}

.blog-list_item .blog-list_link {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    text-decoration: none;
    transition: 0.3s;
}

.blog-list_item .blog-list_link:hover {
    background-color: #eee;
}

.blog-list_item .blog_thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #ccc;
}

.blog-list_item .blog-list_link .blog_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: 0.3s;
    overflow: hidden;
}

.blog-list_item .blog-list_link .blog_thumb img:hover {
    scale: 1.05;
}

.blog-list_item .blog-list_link .blog_description {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 8px;
    padding: 12px 24px 18px;
    min-height: 230px;
}

.blog-list_item .blog_description h3 {
    color: #444;
}

.blog_title {
    font-weight: bold;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog_description p {
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.blog_date {
    display: inline-block;
    font-size: 0.9em;
    letter-spacing: 0.1em;
    color: #444;
    transition: 0.3s;
    line-height: 1;
}

.blog_date::before {
    font-family: "Font Awesome 5 Free";
    content: "\f274";
    font-weight: 900;
    margin-right: 0.3em;
    color: var(--main-color);
}

.archive-list a {
    transition: all 0.3s;
    &:hover {
        color: var(--sub-color);
    }
}

.blog-category {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
}

.blog-category .cat-name {
    display: inline-block;
    background-color: var(--main-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 0.9em;
    padding: 0 16px;
    vertical-align: middle;
    border-radius: 16px;
    height: 24px;
    line-height: 24px;
    white-space: nowrap;
}
.blog-category a.cat-name {
    transition: all 0.3s;
    &:hover {
        background-color: var(--line-color);
    }
}

.category-list .cat-item a {
    display: inline-block;
    background-color: var(--main-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 0.9em;
    padding: 0 16px;
    vertical-align: middle;
    border-radius: 16px;
    height: 24px;
    line-height: 24px;
    white-space: nowrap;
    transition: all 0.3s;
    &:hover {
        background-color: var(--line-color);
    }
}

.c-pagination {
    margin: 80px auto 0;
    position: relative;
}

.c-pagination .nav-links {
    align-items: center;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 13px;
    justify-content: center;
}

[class*="page-numbers"] {
    box-sizing: content-box;
    display: block;
    font-size: 14px;
    height: 36px;
    line-height: 36px;
    min-width: 36px;
    padding: 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    width: auto;
    background-color: var(--grey-color);
    color: var(--white-color);
}

[class*="page-numbers"].current,
[class*="page-numbers"]:hover {
    background-color: var(--sub-color);
    color: #fff;
}

.c-pagination__dot {
    color: #aaa;
    margin: 0 6px;
}

.no_content {
    text-align: center;
    font-size: 1.2em;
    margin: 160px auto;
    min-height: 40vh;
}

/* ブログ個別投稿用 */
.post-meta {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: left;
    margin-bottom: 2em;
}

.blog_date__single {
    font-family: "Roboto Condensed";
    font-weight: 400;
    color: var(--sub-color);
    line-height: 1;
    margin-right: 0.75em;
    padding: 0.5em 0.75em 0.5em 0;
    text-align: center;
    border-right: 1px solid var(--grey-color);
    .__y {
        display: block;
        font-size: 3vw;
        line-height: 1;
        margin-bottom: 4px;
    }
    .__m {
        display: block;
        display: block;
        font-size: 4.2vw;
    }
}
.entry-thumb {
    margin: 2em auto;
    img {
        width: 100%;
        height: auto;
        text-align: center;
    }
}

.entry-header {
    margin-bottom: 2em;
}
.entry-content {
    margin-bottom: 80px;
}

.entry-content h2 {
    font-size: clamp(1.25rem, 0.998rem + 1.07vw, 1.75rem);
    font-weight: bold;
    padding: 0 0 0.2em 0.5em;
    margin: 1em 0;
    border-left: 6px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
}

.entry-content h3 {
    font-size: clamp(1.125rem, 0.936rem + 0.81vw, 1.5rem);
    font-weight: bold;
    padding: 0.1em 0 0.1em 0.4em;
    margin: 0.8em 0;
    border-left: 4px solid var(--main-color);
}

.entry-content p {
    margin-bottom: 2em;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.spec-table th,
.spec-table td {
    border: 1px solid var(--grey-color);
    padding: 12px 16px;
    vertical-align: top;
}
.spec-table td {
    background-color: var(--white-color);
}
.spec-table th {
    background: var(--lightGrey-color);
    font-weight: 700;
    width: 15%;
}
.spec-table tr:last-child td {
    border-bottom: 1px solid var(--grey-color);
}
.spec-table td.multiline p {
    margin: 0 0 0.6em;
}

@media only screen and (max-width: 767px) {
    .spec-table th,
    .spec-table td {
        display: table;
        border-bottom: none;
        width: 100%;
        display: block;
    }
}

.gallery-3cols {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 16px 0;
}
.gallery-3cols img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.section-spec-table h2 {
    margin-bottom: 16px;
    font-weight: bold;
    font-size: 1.4em;
}
.section-gallery h2 {
    margin-top: 2em;
    margin-bottom: 16px;
    font-weight: bold;
    font-size: 1.4em;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 10px 20px;
    flex-wrap: wrap;
    margin: 80px auto 2em;
}
.nav-previous,
.nav-next {
    .nav-label {
        margin-right: 1em;
    }
    a {
        display: block;
        position: relative;
        background-color: var(--lightGrey-color);
        padding: 0.5em 2em;
        font-size: 0.9em;
        border-radius: 8px;
        transition: all 0.3s;
        &:hover {
            color: var(--sub-color);
        }
    }
}
.nav-previous a::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f053";
    position: absolute;
    left: 0.5em;
    font-size: 1.4em;
    color: var(--main-color);
    top: 50%;
    transform: translateY(-50%);
}
.nav-next a::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f054";
    position: absolute;
    right: 0.5em;
    font-size: 1.4em;
    color: var(--main-color);
    top: 50%;
    transform: translateY(-50%);
}

@media only screen and (min-width: 768px) {
    .post-meta {
        /* flex-direction: row-reverse;
        align-items: center; */
    }
    .blog_date__single {
        .__y {
            font-size: 14px;
        }
        .__m {
            font-size: 24px;
        }
    }
}

@media only screen and (min-width: 768px) {
    .mv_activities {
        margin-top: 48px;
        height: 320px;
        background-image: image-set(
            "../img/mv_activities.webp" type("image/webp"),
            "../img/mv_activities.jpg" type("image/jpeg")
        );
    }
}

.main_text {
    font-size: 18px;
}

.contents_text {
    letter-spacing: 0.05em;
    font-weight: 500;
    text-align: justify;
    font-size: clamp(1rem, 0.874rem + 0.54vw, 1.25rem);
}

.b {
    font-weight: bold;
}

.center {
    text-align: center;
}

.nowrap-text {
    white-space: nowrap;
}

.txt-link {
    text-decoration: underline;
    color: #0000ff;
}

.txt-link:hover {
    text-decoration: none;
    color: var(--main-color);
}

.mb8 {
    margin-bottom: 8px;
}

.mb16 {
    margin-bottom: 16px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb24 {
    margin-bottom: 24px;
}

.mb32 {
    margin-bottom: 32px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb80 {
    margin-bottom: 80px;
}

.mb160 {
    margin-bottom: 160px;
}

.mt8 {
    margin-top: 8px;
}

.mt16 {
    margin-top: 16px;
}

.mt20 {
    margin-top: 20px;
}

.mt24 {
    margin-top: 24px;
}

.mt28 {
    margin-top: 28px;
}

.mt32 {
    margin-top: 32px;
}

.mt40 {
    margin-top: 40px;
}

.mt48 {
    margin-top: 48px;
}

.mt80 {
    margin-top: 80px;
}

.mt160 {
    margin-top: 160px;
}

.mr8 {
    margin-right: 8px;
}

.mr16 {
    margin-right: 16px;
}

.mr24 {
    margin-right: 24px;
}

.mr32 {
    margin-right: 32px;
}

.mr40 {
    margin-right: 40px;
}

.mr80 {
    margin-right: 80px;
}

.mr160 {
    margin-right: 160px;
}

.ml8 {
    margin-left: 8px;
}

.ml16 {
    margin-left: 16px;
}

.ml24 {
    margin-left: 24px;
}

.ml32 {
    margin-left: 32px;
}

.ml40 {
    margin-left: 40px;
}

.ml80 {
    margin-left: 80px;
}

.ml160 {
    margin-left: 160px;
}

.pb8 {
    padding-bottom: 8px;
}

.pb16 {
    padding-bottom: 16px;
}

.pb24 {
    padding-bottom: 24px;
}

.pb32 {
    padding-bottom: 32px;
}

.pb40 {
    padding-bottom: 40px;
}

.pb80 {
    padding-bottom: 80px;
}

.pb160 {
    padding-bottom: 160px;
}

.pt8 {
    padding-top: 8px;
}

.pt16 {
    padding-top: 16px;
}

.pt24 {
    padding-top: 24px;
}

.pt32 {
    padding-top: 32px;
}

.pt40 {
    padding-top: 40px;
}

.pt80 {
    padding-top: 80px;
}

.pt160 {
    padding-top: 160px;
}

.pr8 {
    padding-right: 8px;
}

.pr16 {
    padding-right: 16px;
}

.pr24 {
    padding-right: 24px;
}

.pr32 {
    padding-right: 32px;
}

.pr40 {
    padding-right: 40px;
}

.pr80 {
    padding-right: 80px;
}

.pr160 {
    padding-right: 160px;
}

.pl8 {
    padding-left: 8px;
}

.pl16 {
    padding-left: 16px;
}

.pl24 {
    padding-left: 24px;
}

.pl32 {
    padding-left: 32px;
}

.pl40 {
    padding-left: 40px;
}

.pl80 {
    padding-left: 80px;
}

.pl160 {
    padding-left: 160px;
}

.pc_on {
    display: block;
}

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

.sp_on {
    display: none;
}

@media only screen and (max-width: 767px) {
    .sp_on {
        display: block;
    }
}

/**
 * object.scssここまで
 */
/**
 * javascript.scssここから
 */
/**
 * javascript.scssここまで
 */

/*# sourceMappingURL=style.css.map */
