@charset "utf-8";

/* メインカラー #D86078 */
/* サブカラー #FAECEF */

/*******************************************************************/

/*-----------------------------
フォント
-----------------------------*/
/* Noto Sans Japanese */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/*******************************************************************/

/*-----------------------------
共通
-----------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    transition: all 0.3s ease;
}

*::before,
*::after {
    box-sizing: inherit;
    transition: all 0.3s ease;
}

html,
body {
    overflow-x: hidden;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;

    scroll-padding-top: 10.2rem; /* 数値変動（縮小時のヘッダーの高さによる） */
}

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

body {
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    font-smoothing: antialiased;

    color: #432E2B;
    font-size: 1.6rem;
    font-family: "Hiragino Sans", sans-serif;
    font-weight: normal;
    line-height: 1.5em;
    letter-spacing: 0.05em;
    background-color: #fff;
}

.home body {
    font-size: 2rem;
}

main {
    margin-top: 12.2rem; /* 数値変動（ヘッダーの高さによる） */
}

section {
    padding: 8rem 0 6rem;
}

section.small {
    padding: 8rem 0 4rem;
}

.home section {
    padding: 12rem 0 10rem;
}

.home section.small {
    padding: 12rem 0 8rem;
}

hr {
    box-sizing: content-box;
    height: 0;
    border: none;

    border-top: 1px solid #707070;
    margin: 2rem 0;
}

@media screen and (min-width: 1024px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

/* 数値変動（ヘッダーメニュー幅による） */
@media screen and (max-width: 1200px) {
    html {
        scroll-padding-top: 7rem; /* ヘッダーの高さ */
    }

    main {
        margin-top: 7rem;
    }
}

/* 数値変動（コンテンツ幅による） */
@media screen and (max-width: 1160px) {
    html {
        font-size: calc(100vw / 116);
    }
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    html {
        font-size: calc(100vw / 37.5);
    }

    body {
        font-size: 1.6rem;
    }

    section,
    .home section {
        padding: 6rem 0 4rem;
    }

    section.small,
    .home section.small {
        padding: 6rem 0 2rem;
    }
}

/*******************************************************************/

/*-----------------------------
リスト
-----------------------------*/
ul,
ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

ul li::marker,
ol li::marker {
    color: #D86078;
}

ul.none {
    list-style: none;
    padding: 0;
}

ul.dot {
    list-style: disc;
}

header ul,
footer ul,
ul.sns,
ul.cta,
ul.slider,
ul.wsp-pages-list,
.tag-list ul,
.sidebar ul,
ul#main-slider,
ul#sub-slider,
.img-slider ul,
.text-slider ul {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

dl {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;

    padding: 1rem 0;
}

dt {
    width: 30%;
    padding-right: 2rem;
}

dd {
    width: 70%;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    dt,
    dd {
        width: 100%;
    }

    dt {
        padding: 0 0 1rem;
    }
}

/*******************************************************************/

/*-----------------------------
見出し
-----------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

h1 {
    font-size: rem;
}

.home h1 {
    font-size: rem;
}

h2 {
    font-size: 3.6rem;
}

.home h2 {
    font-size: 4.6rem;
    margin-bottom: 6rem;
    text-align: center;
}

h3 {
    font-size: 2.4rem;
}

.home h3 {
    font-size: 3.6rem;
}

h4 {
    font-size: 2rem;
}

.home h4 {
    font-size: 2.4rem;
}

.sub-title {
    font-size: ;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: rem;
    }

    .home h1 {
        font-size: rem;
    }

    h2 {
        font-size: 2.8rem;
    }

    .home h2 {
        font-size: 2.8rem;
    }

    h3 {
        font-size: ;
    }

    .home h3 {
        font-size: 2rem;
    }

    h4 {
        font-size: ;
    }

    .home h4 {
        font-size: 1.8rem;
    }
}

/*******************************************************************/

/*-----------------------------
テキスト
-----------------------------*/
main p {
    margin-bottom: 2rem;
}

i {
    margin-left: 0.5rem;
}

.lead {
    font-size: rem;
    text-align: center;
}

.txtl {
    text-align: left;
}

.txtc {
    text-align: center;
}

.txtr {
    text-align: right;
}

.txtc-txtl {
    text-align: center;
}

.txt10 {
    font-size: 1rem;
}

.txt12 {
    font-size: 1.2rem;
}

.txt14 {
    font-size: 1.4rem;
}

.txt16 {
    font-size: 1.6rem;
}

.txt18 {
    font-size: 1.8rem;
}

.txt20 {
    font-size: 2rem;
}

.line10 {
    line-height: 1em;
}

.line20 {
    line-height: 2em;
}

.main {
    color: #D86078;
}

.red {
    color: #FF5469;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    .txtc-txtl {
        text-align: left;
    }
}

/*******************************************************************/

/*-----------------------------
動画 / 地図
-----------------------------*/
video,
iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
}

video *,
iframe *,
.googlemap * {
    transition: none;
}

iframe.monotone {
    filter: grayscale(100%);
}

.googlemap {
    padding-top: calc(515 / 1920 * 100%);
    margin: 0 auto;
    position: relative;
}

.googlemap .map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    video,
    iframe,
    .googlemap {
        aspect-ratio: 3 / 2;
    }
}

/*******************************************************************/

/*-----------------------------
画像
-----------------------------*/
img {
    display: block;
    max-width: 100%;
}

a img {
    text-decoration: none;
}

a:hover img {
    opacity: 0.7;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*******************************************************************/

/*-----------------------------
リンク
-----------------------------*/
a,
a *,
a:link,
a:visited,
a:focus {
    text-decoration: none;
    outline: none !important;
}

a {
    display: inline-block;
    background-color: transparent;
    word-break: break-word;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

    color: #432E2B;
}

a[href^="tel:"]:hover {
    color: #FAECEF;
}

a:hover {
    cursor: pointer;
}

a[tabindex="-1"]:hover {
    cursor: text;
}

/*a:focus {
    outline: 2px solid #432E2B;
    outline-offset: 2px;
}*/

a.link {
    display: inline-block;
}

a.link span {
    display: table;
}

a.link span::after {
    content: "";
    display: block;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;

    border-bottom: 1px solid #D86078;
}

a.link:hover span::after {
    width: 100%;
}

a.underline {
    text-decoration: underline;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*******************************************************************/

/*-----------------------------
ホバー
-----------------------------*/
a.link:hover,
a.underline:hover,
.logo a:hover img,
.logo a:hover,
.tag-list a:hover,
ul.tag a:hover,
.slide-arrow:hover,
.modal-open:hover {
    opacity: 0.7;
    cursor: pointer;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*******************************************************************/

/*-----------------------------
PC / SP切り替え 
-----------------------------*/
.tab-only,
.sp-only {
    display: none !important;
}

@media screen and (max-width: 1023px) {
    .tab-only {
        display: block !important;
    }
}

@media screen and (max-width: 767px) {
    .pc-only,
    .tab-only {
        display: none !important;
    }

    .sp-only {
        display: block !important;
    }
}

/*******************************************************************/

/*-----------------------------
入れ替え
-----------------------------*/
.orderbox {
    display: flex;
    flex-direction: row;
}

.order01 {order: 1;}
.order02 {order: 2;}
.order03 {order: 3;}
.order04 {order: 4;}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    .orderbox {
        flex-direction: column;
    }

    .order01,
    .order02,
    .order03,
    .order04 {
         width: 100%;
    }

    .order01 {order: 2;}
    .order02 {order: 1;}
    .order03 {order: 4;}
    .order04 {order: 3;}
}

/*******************************************************************/

/*-----------------------------
レイアウト
-----------------------------*/
.shadow {
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);
    margin-bottom: 0.5rem;
}

.radius {
    border-radius: 1rem;
}

.center {
    display: table;
    margin:  0 auto;
}

.ma0 {
    margin: 0;
}

.mt0 {
    margin-top: 0;
}

.mb0 {
    margin-bottom: 0;
}

.mb1 {
    margin-bottom: 1rem;
}

.mb2 {
    margin-bottom: 2rem;
}

.mb3 {
    margin-bottom: 3rem;
}

.mb4 {
    margin-bottom: 4rem;
}

.pa0 {
    padding: 0;
}

.pt0 {
    padding-top: 0;
}

.pb0 {
    padding-bottom: 0;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*******************************************************************/

/*-----------------------------
アニメーション
-----------------------------*/

/* 共通設定（初期状態） */
.fadein,
.fadeleft,
.faderight,
.slidein,
.slideleft,
.slideright,
.pc-fadein,
.pc-fadeleft,
.pc-faderight,
.pc-slidein,
.pc-slideleft,
.pc-slideright,
.sp-fadein,
.sp-fadeleft,
.sp-faderight,
.sp-slidein,
.sp-slideleft,
.sp-slideright,
.zoomin {
    opacity: 0;
    transform: none;
}

/* 共通：PC・SP両方で適用される delay クラス */
.delay01 { animation-delay: 0.2s !important; }
.delay02 { animation-delay: 0.4s !important; }
.delay03 { animation-delay: 0.6s !important; }
.delay04 { animation-delay: 0.8s !important; }
.delay05 { animation-delay: 1.0s !important; }
.delay06 { animation-delay: 1.2s !important; }

/* PC用アニメーション（768px以上） */
@media screen and (min-width: 768px) {
    .fadein.scrollin,
    .pc-fadein.scrollin {
        animation: fadein-up 1s ease forwards;
    }

    .fadeleft.scrollin,
    .pc-fadeleft.scrollin {
        animation: fadein-left 1s ease forwards;
    }

    .faderight.scrollin,
    .pc-faderight.scrollin {
        animation: fadein-right 1s ease forwards;
    }

    .slidein.scrollin,
    .pc-slidein.scrollin {
        animation: slidein-bottom 0.5s ease-out forwards;
    }

    .slideleft.scrollin,
    .pc-slideleft.scrollin {
        animation: slidein-left 0.5s ease-out forwards;
    }

    .slideright.scrollin,
    .pc-slideright.scrollin {
        animation: slidein-right 0.5s ease-out forwards;
    }

    .zoomin.scrollin {
        animation: zoomin 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }
}

/* スマホ用アニメーション（767px以下） */
@media screen and (max-width: 767px) {
    .fadein.scrollin,
    .sp-fadein.scrollin {
        animation: fadein-up 1s ease forwards;
    }

    .fadeleft.scrollin,
    .sp-fadeleft.scrollin {
        animation: fadein-left 1s ease forwards;
    }

    .faderight.scrollin,
    .sp-faderight.scrollin {
        animation: fadein-right 1s ease forwards;
    }

    .slidein.scrollin,
    .sp-slidein.scrollin {
        animation: slidein-bottom 0.5s ease-out forwards;
    }

    .slideleft.scrollin,
    .sp-slideleft.scrollin {
        animation: slidein-left 0.5s ease-out forwards;
    }

    .slideright.scrollin,
    .sp-slideright.scrollin {
        animation: slidein-right 0.5s ease-out forwards;
    }

    .zoomin.scrollin {
        animation: zoomin 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    /* スマホ専用：SP時にのみ適用され、.delayXXを上書きする sp-delay クラス */
    .sp-delay01 { animation-delay: 0.2s !important; }
    .sp-delay02 { animation-delay: 0.4s !important; }
    .sp-delay03 { animation-delay: 0.6s !important; }
    .sp-delay04 { animation-delay: 0.8s !important; }
    .sp-delay05 { animation-delay: 1.0s !important; }
    .sp-delay06 { animation-delay: 1.2s !important; }
}

/* アニメーション定義 */
@keyframes fadein-up {
    0% {
        opacity: 0;
        transform: translateY(2rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadein-left {
    0% {
        opacity: 0;
        transform: translateX(-2rem);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadein-right {
    0% {
        opacity: 0;
        transform: translateX(2rem);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slidein-bottom {
    0% {
        opacity: 0;
        transform: translateY(100rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slidein-left {
    0% {
        opacity: 0;
        transform: translateX(-200rem);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slidein-right {
    0% {
        opacity: 0;
        transform: translateX(200rem);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomin {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/*******************************************************************/

/*-----------------------------
header / footer
-----------------------------*/
.logo,
.logo a {
    display: table;
}

.g-nav .g-nav-list {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/*******************************************************************/

/*-----------------------------
header
-----------------------------*/
header {
    position: fixed;
    left: 0;
    top: 0;
    transform: translate(0, 0);
    z-index: 100;
    width: 100%;

    background-color: #fff;
    padding: 1rem 0 1.5rem;
}

header .header-menu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: calc(108rem + 8rem);
    margin: 0 auto;
    padding: 0 4rem;
}

header .menu-left {
}

header .menu-center {
}

header .menu-right {
}

header .logo a {
}

header .logo img {
    width: 24.5rem;
}

header .logo h1,
header .logo p {
    font-size: 1.4rem;
    margin: 0 0 1.5rem 0;
}

header .g-nav .g-nav-list li {
    margin-right: 4rem;
}

header .g-nav .g-nav-list li:last-child {
    margin-right: 0;
}

header .g-nav .g-nav-list li a {
    color: #fff;
    padding: 3rem 0;
}

header .g-nav .g-nav-list li a.link span::after {
    border-bottom: 1px solid #fff;
}

header .g-nav-sp {
    display: none;
}

/* 数値変動（ヘッダーメニュー幅による） */
@media screen and (min-width: 1200px) {
    /* ヘッダー縮小時 */
    header.smaller {
        padding: 0 0 1rem;
    }

    header.smaller .logo img {
        width: 17rem;
    }

    header.smaller .logo h1,
    header.smaller .logo p {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    header.smaller .cta a {
        margin: 2rem 0;
        font-size: 1.6rem;
    }

    header.smaller .g-nav .g-nav-list li a {
        padding: 2rem 0;
    }
}

/* 数値変動（ヘッダーメニュー幅による） */
@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    header {
        padding: 0;
    }

    header .g-nav,
    header .logo h1,
    header .logo p,
    header .cta,
    header .tel {
        display: none !important;
    }

    header .header-menu {
        padding: 0 0 0 2rem;
    }

    header .logo img {
        width: 12rem;
    }

    header .g-nav-sp {
        display: block;
    }

    .globalMenuSp .cta {
        display: block !important;
    }
}

/*-----------------------------
ハンバーガーメニューボタン
-----------------------------*/
.hamburger {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 102;

    width: 7rem;
    height: 7rem;
    background-color: #fff;
}

.hamburger .menu {
    height: 1.6rem;
}

.hamburger span {
    display: block;
    margin: 0 auto;

    background : #432E2B;
    width : 2rem;
    height: 0.2rem;
}

.hamburger span:nth-child(1),
.hamburger span:nth-child(2) {
    margin-bottom: 0.5rem;
}

.hamburger p {
    line-height: 1em;

    font-size: 1.4rem;
    color: #432E2B;
    margin-top: 1rem;
}

.hamburger .close {
    display: none;
}

/* ナビ開いてる時のボタン */
.hamburger.active {
}

.hamburger.active .menu {
    left: 1rem;
    top: 0.8rem;
}

.hamburger.active .open {
    display: none;
}

.hamburger.active .close {
    display: block;
}

/* 線が縮むタイプ */
/*.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  width: 1.1rem;
}*/

/* ×になるタイプ */
.hamburger.active span {
    width: 2.5rem;
    background: #432E2B;
    box-shadow: none;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-30deg);
  margin: 0;
}

.hamburger.active span:nth-child(2) {
  transform: rotate(30deg);
  margin: -0.2rem 0 0 0;
}

.hamburger.active span:nth-child(3) {
    display: none;
}

/* 線が消えるタイプ */
/*.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3) {
    background: #D86078;
}*/

/*-----------------------------
ハンバーガーメニュー
-----------------------------*/
.globalMenuSp-bg,
nav.globalMenuSp {
    position: fixed;
    right: 0;
    transition: all 0.5s ease;
    -webkit-overflow-scrolling: touch;
    margin: 0 0 0 auto;
    max-width: 100%;
    z-index: 101;

    top: 7rem;
    height: calc(100vh - 7rem);
}

.globalMenuSp-bg {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    width: 100%;

    background-color: rgba(216, 96, 120, 0.7);
    padding: 3rem;
}

nav.globalMenuSp {
    transform: translateX(120%);
    overflow-y: scroll;
    width: 40rem;

    background-color: #fff;
    padding: 3rem;
}

nav.globalMenuSp .logo {
    margin-left: 2rem;
}

nav.globalMenuSp .g-nav-list {
    margin: 8.5rem 0 2rem;
}

nav.globalMenuSp .g-nav-list li .menu-title {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #707070;
}

nav.globalMenuSp .g-nav-list li a {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #707070;
    padding: 2rem;
}

nav.globalMenuSp .g-nav-list li .menu-title a {
    border-bottom: none;
    width: calc(100% - 6rem);
}

nav.globalMenuSp .g-nav-list li:last-child a {
    border: none;
}

/* このクラスを、jQueryで付与・削除する */
.globalMenuSp-bg.active {
    opacity: 1;
    visibility: visible;
}

nav.globalMenuSp.active {
  transform: translateX(0%);
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    nav.globalMenuSp {
        width: 85%;
    }
}

/*-----------------------------
サブメニュー
-----------------------------*/

/* PC */
header .g-nav .g-nav-list .submenu .g-nav-sub {
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 7rem;
    transform: translate(-50%, 0);
    visibility: hidden;

    background: #FAECEF;
    text-align: center;
    font-size: 1.4rem;;
    padding: 1rem 0;

}

header .g-nav .g-nav-list .submenu01 .g-nav-sub {
    width: 30rem;
}

header .g-nav .g-nav-list .submenu02 .g-nav-sub {
    width: 50rem;
}

/* 吹き出しタイプ */
header .g-nav .g-nav-list .submenu .g-nav-sub::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -3.4rem;
    transform: translate(-50%, 0);

    border: 1.5rem solid transparent;
    border-bottom: 2rem solid #FAECEF;
}

header .g-nav .g-nav-list .submenu:hover .g-nav-sub,
header .g-nav .g-nav-list .submenu:hover .g-nav-sub:hover,
header .g-nav .g-nav-list .submenu .g-nav-sub:hover {
    opacity: 1;
    visibility: visible;

    top: 8rem; /* header .g-nav .g-nav-list .submenu .g-nav-sub の＋1rem */
}

header .g-nav .g-nav-list .submenu .g-nav-sub li {
    padding: 0;
    margin: 0;
}

header .g-nav .g-nav-list .submenu .g-nav-sub li a {
    display: block;
    padding: 1rem 3rem;
    color: #333;
}

header .g-nav .g-nav-list .submenu .g-nav-sub li a.link span::after {
    border-bottom: 1px solid #D86078;
}

/* SP */
nav.globalMenuSp .g-nav-list li.submenu .g-nav-sub {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-2rem);
    transition: max-height 0.7s ease, opacity 0.7s ease, transform 0.7s ease;

    font-size: 1.2rem;
    border-bottom: 1px solid #707070;
}

nav.globalMenuSp .g-nav-list li.submenu .g-nav-sub ul {
    padding: 2rem;
}

nav.globalMenuSp .g-nav-list li.submenu .g-nav-sub li a {
    justify-content: flex-start;
    padding: 0 0 2rem;
    border-bottom: none;
}

nav.globalMenuSp .g-nav-list li.submenu .g-nav-sub li:last-child a {
    padding: 0;
}

nav.globalMenuSp .g-nav-list li.submenu span.arrow {
    content: "";
    display: inline-block;
    background-image: url(../images/common/arrow.svg);
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: center;
    width: 5rem;
    height: 5rem;
    margin-left: 1rem;
}

nav.globalMenuSp .g-nav-list li.submenu span.arrow.active {
    transform: rotate(90deg);
}

nav.globalMenuSp .g-nav-list li.submenu .g-nav-sub.active {
    max-height: 100rem;
    opacity: 1;
    transform: translateY(0);
}

nav.globalMenuSp .g-nav-list li.submenu .g-nav-sub ul li a::after {
    display: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp .g-nav-list li.submenu a.active {
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*-----------------------------
CTA
-----------------------------*/
header .cta {
    display: flex;
    align-items: center;
}

header .cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

header .cta li:nth-child(2) {
    margin-left: 2rem;
}

header .cta a::before {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-right: 1rem;
}

header .cta .access a::before {
    background-image: url(../images/common/ico_access_pink.svg);
    width: 1em;
    height: 1.5em;
}

header .cta .access a:hover::before {
    background-image: url(../images/common/ico_access_white.svg);
}

header .cta .contact a::before {
    background-image: url(../images/common/ico_mail_pink.svg);
    width: 1.5em;
    height: 1.2em;
}

header .cta .contact a:hover::before {
    background-image: url(../images/common/ico_mail_white.svg);
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    header .cta li:nth-child(2) {
        margin: 2rem 0 0;
    }
}

/*-----------------------------
追従ボタン
-----------------------------*/
#page-top,
#tuijyu {
    opacity: 0;
    display: block;
    cursor: pointer;
}

#page-top {
    position: fixed;
    z-index: 99;

    right: 4rem;
    bottom: 9rem;
}

#tuijyu {
    display: none;
    position: fixed;
    z-index: 99;
    width: 100%;

    right: 0;
    bottom: 0;
}

#tuijyu a {
    width: calc(100% /2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

#tuijyu a.tel {
    background-color: #FAECEF;
}

#tuijyu a.mail {
    color: #fff;
    background-color: #D86078;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    #page-top {
        right: 2rem;
        bottom: 6rem;
    }

    #page-top img {
        width: 3rem;
    }

    #tuijyu {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/*-----------------------------
footer
-----------------------------*/
footer {
    background-image: url(../images/common/design_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 6rem 0 0;
    text-align: center;
}

footer .logo {
    margin: 0 auto 5.5rem;
}

footer .logo h4 {
    margin-bottom: 1rem;
}

footer .logo img {
    width: 24.5rem;
}

footer .g-nav {
    margin: 2rem 0;
}

footer .g-nav .g-nav-list li {
    margin-right: 4rem;
}

footer .g-nav .g-nav-list li:last-child {
    margin-right: 0;
}

footer .g-nav .g-nav-list li a {
    color: #fff;
}

footer .g-nav .g-nav-list li a.link span::after {
    border-bottom: 1px solid #fff;
}

footer .sns {
    display: flex;
    align-items: center;
    justify-content: center;

    margin: 2rem 0;
}

footer .sns li {
    margin-right: 1rem;
}

footer .sns li:last-child {
    margin-right: 0;
}

.copy {
    font-size: 1.4rem;
    margin-top: 4rem;
    letter-spacing: 0.1em;

    padding: 1rem 0;
    background-color: #D86078;
    color: #fff;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    .copy {
    font-size: 0.8rem;
    padding: 0;
}
}

/*******************************************************************/

/*-----------------------------
ボタン
-----------------------------*/
.more-btn a,
[type="reset"],
[type="submit"] {
    display: table;
    position: relative;
    width: 32rem;
    max-width: 100%;
    color: #fff;
    text-align: center;
    background-color: #D86078;
    border: 3px solid #D86078;
    margin: 2rem auto;
    padding: 0.5em;
    font-size: 2rem;
    border-radius: 5rem;
}

.more-btn a:hover {
    color: #D86078;
    background-color: #fff;
}

.more-btn.gray a,
[type="reset"],
[type="submit"]:disabled {
    background-color: #707070;
    border: 3px solid #707070;
}

.more-btn.gray a:hover,
[type="reset"]:hover {
    color: #707070;
    background-color: #fff;
}

.more-btn.white a {
    color: #D86078;
    background-color: #fff;
}

.more-btn.white a:hover {
    color: #fff;
    background-color: #D86078;
}

.more-btn02 a {
    color: #D86078;
    font-size: 1.4rem;
    display: table;
    margin: 0 0 0 auto;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    .more-btn a,
    [type="reset"],
    [type="submit"] {
        font-size: 1.6rem;
    }
}

/*******************************************************************/

/*-----------------------------
テーブル
-----------------------------*/
table {
    display: table;
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-all;
    border-collapse: collapse;
    border-spacing : 0;
    width: 100%;
    margin : auto;
}

th {
    width: 30%;
    padding-right: 2rem;
}

td {
    width: 70%;
}

.scroll-table {
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 2rem;
}

.scroll-table table {
    min-width: 80rem;
    background-color: #fffcf5;
}

/* スクロールバー全体の高さ */
.scroll-table::-webkit-scrollbar {
    height: 1rem;
}

/* スクロールバー全体の背景 */
.scroll-table::-webkit-scrollbar-track {
    background: #ccc;
    border-radius: 5rem;
}

/* スクロールバーの動く部分 */
.scroll-table::-webkit-scrollbar-thumb {
    background: #707070;
    border: none;
    border-radius: 5rem;
}

/* スクロールバーの動く部分のホバー（マウスオーバー）*/
.scroll-table::-webkit-scrollbar-thumb:hover {
    background: #432E2B;
}

.table01 {
    border-top: 1px solid #E6E6E6;
}

.table01 dl {
    border-bottom: 1px solid #E6E6E6;
    padding: 1rem 0;
    align-items: center;
}

.table01 dt {
    text-align: center;
    padding-right: 4rem;
    width: 20%;
}

.table01 dd {
    border-left: 3px solid #D86078;
    padding-left: 7rem;
    width: 80%;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    .table01 dt,
    .table01 dd {
        width: 100%;
    }

    .table01 dt {
        padding: 0 0 2rem;
    }

    .table01 dt::after {
        content: "";
        background: #D86078;
        position: absolute;
        width: 7rem;
        height: 3px;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto;
    }

    .table01 dd {
        border: none;
        padding: 2rem 0 0 0;
    }
}

/*******************************************************************/

/*-----------------------------
パンくずリスト
-----------------------------*/
.breadcrumbs {
    padding: 1rem 0 0;
    font-size: 1.6rem;
}

.breadcrumbs,
.breadcrumbs a {
    color: #432E2B;
}

.breadcrumbs a:hover {
    color: #D86078;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*******************************************************************/

/*-----------------------------
下層見出し
-----------------------------*/
.under-title {
    display: flex;
    align-items: center;
    background-image: url(../images/common/design_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    /*min-height: 30rem;*/
    padding: 5rem 0;
}

.under-title.img {
}

.under-title p.sub-title,
.under-title h1,
.under-title p.lead {
    margin-bottom: 0;
}

.under-title p.sub-title {
    text-transform: uppercase; /* 全ての文字を大文字にする */
    color: #D86078;
}

.under-title p.lead {
    margin-top: 4rem;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    .under-title {
        /*min-height: 20rem;*/
    }
}

/*******************************************************************/

/*-----------------------------
投稿
-----------------------------*/
.sec_article .img,
.sec_article .img * {
    aspect-ratio: 3 / 2;
}

.sec_article .img {
    overflow: hidden;
    margin: 1rem 0;
}

.sec_article .img *  {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}

.sec_article .img img:hover {
    transform: scale(1.2, 1.2);
}

.sec_article h3 a:hover {
    color: #D86078;
}

time {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

time.end {
    justify-content: flex-end;
}

.newMark {
    display: inline-block;
    color: #fff;
    font-size: 0.8em;
    line-height: 1;
    background-color: #FF5469;
    margin-left: 0.5rem;
    padding: 0.5rem;
}

.category-list {
    margin: 1rem 0 0.5rem;
}

.category-list a,
.category-list span {
    color: #fff;
    font-size: 1.2rem;
    background-color: #D86078;
    border: 1px solid #D86078;
    padding: 0.2em 0.5em;
    margin: 0 0.5rem 0.5rem 0;
}

.category-list a:hover {
    color: #D86078;
    background-color: #fff;
}

.tag-list ul {
    font-size: 1.4rem;
    margin: 4rem 0 0;
    padding: 0;
}

.tag-list li {
    display: inline-block;
}

.tag-list a {   
    position: relative;
    margin-right: 1rem;
    color: #219DF0;
}

.tag-list a::before {
    content: "#";
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*-----------------------------
一覧
-----------------------------*/
.archive {
}

.archive .sec_article dl.content,
.page .sec_article dl.content {
    border-bottom: 1px solid #707070;
    padding: 4rem 0;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    .archive .sec_article dl.content dt,
    .archive .sec_article dl.content dd {
        width: 100%;
    }

    .archive .sec_article dl.content dt {
        padding: 0;
    }

    .archive .sec_article dl.content .more-btn02 a {
        margin: 0 0 0 auto;
    }
}

/*-----------------------------
詳細
-----------------------------*/
.single article {
    border-bottom: 1px solid #707070;
    padding-bottom: 2rem;
}

.single article .category-list {
    margin-top: 0;
}

.single article .eyecatch img {
    aspect-ratio: 3 / 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 4rem;
}

.single article .content h1 {
    border-top: 2px solid #707070;
    border-bottom: 2px solid #707070;
    padding: 2rem;
}

.single article .content h2 {
    color: #fff;
    background-color: #D86078;
    padding: 2rem;
}

.single article .content h3 {
    display: block;
    position: relative;
    border-bottom: 2px solid #707070;
    padding: 0 2rem 2rem;
}

.single article .content h3::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 5rem;
    height: 2px;
    background-color: #D86078;
}

.single article .content h4 {
    border-left: 4px solid #D86078;
    padding-left: 2rem;
}

.single article .content p {
    margin: 0;
}

.single article .content a {
    color: #D86078;
    text-decoration: underline;
}

.single article .content a:hover {
    opacity: 0.7;
}

.single article .content img {
    width: auto;
    margin: 1rem 0;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*******************************************************************/

/*-----------------------------
トピックス
-----------------------------*/
.sec_article.topics .date {
    display: flex;
}

.sec_article.topics .date time {
    margin-right: 2rem;
}

/*-----------------------------
一覧
-----------------------------*/
.post-type-archive-post {
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*-----------------------------
カテゴリー / タグ
-----------------------------*/
.archive.category,
.archive .tag {
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*-----------------------------
詳細
-----------------------------*/
.single-post {
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*******************************************************************/

/*-----------------------------
a-label
-----------------------------*/

/*-----------------------------
一覧
-----------------------------*/
.post-type-archive-a-slug {
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*-----------------------------
カテゴリー / タグ
-----------------------------*/
.tax-a-slugcat,
.tax-a-slugtag {
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*-----------------------------
詳細
-----------------------------*/
.single-a-slug {
}

.single-a-slug .a-slug-slider {
    margin-bottom: 4rem;
}

.single-a-slug #main-slider .slick-list {
    background-color: #FAECEF;
}

.single-a-slug #main-slider .content {
    padding: 2rem;
}

.single-a-slug #sub-slider .content {
    background-color: #FAECEF;
    padding: 2rem;
}

.single-a-slug #main-slider .content img,
.single-a-slug #sub-slider .content img {
    margin: 0 auto;
}

.single-a-slug #main-slider .content img {
    height: 50rem;
}

.single-a-slug #sub-slider .content img {
    height: 20rem;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*******************************************************************/

/*-----------------------------
b-label
-----------------------------*/

/*-----------------------------
一覧
-----------------------------*/
.post-type-archive-b-slug {

}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*-----------------------------
カテゴリー / タグ
-----------------------------*/
.tax-b-slugcat,
.tax-b-slugtag {
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*-----------------------------
詳細
-----------------------------*/
.single-b-slug {
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*******************************************************************/

/*-----------------------------
サイドバー
-----------------------------*/
.sidebar aside {
    background-color: #FAECEF;
    margin-bottom: 4rem;
    padding: 2rem;
}

.sidebar time {
    font-size: 1.2rem;
    line-height: 1em;
    margin: 0;
}

.sidebar p {
    display: flex;
    margin: 0;
}

.sidebar a:hover {
    color: #D86078;
}

.sidebar p {
    font-size: 1.4rem;
}

.sidebar dl {
    padding: 0 0 2rem;
}

.sidebar dl:last-child {
    padding-bottom: 0;
}

.sidebar dt,
.sidebar dd {
    width: 100%;
}

.sidebar dt {
    padding: 0;
}

.sidebar ul {
    margin: 0;
}

.sidebar ul ul.child {
    padding-left: 2rem;
}

.sidebar ul ul.child p::before {
    content: "-";
    margin-right: 0.5rem;
}

.sidebar ul ul.child a {
    width: calc(100% - 0.7rem);
}

.sidebar ul.tag p,
.sidebar ul.tag a {
    color: #219DF0;
}

.sidebar ul.tag p::before {
    content: "#";
    margin-right: 0.5rem;
}

.sidebar ul.tag a {
    width: calc(100% - 1rem);
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    .sidebar {
        margin-top: 4rem;
    }

    .sidebar time {
        margin-bottom: 0.5rem;
    }
}

/*-----------------------------
ページ送り
-----------------------------*/

/* 一覧ページ */
.pagination-area {
    text-align: center;
    margin: 4rem auto 0;
}

.pagination-area .pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-area .pagination .nav-links .current,
.pagination-area .pagination .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;

    width: 4rem;
    height: 4rem;
    color: #fff;
    font-size: 1.4rem;
    background-color: #D86078;
}

.pagination-area .pagination .nav-links a {
    opacity: 0.3;
}

.pagination-area .pagination .nav-links a:hover {
    opacity: 1;
}

/* 詳細ページ */
.post-nav {
    clear: both;
    overflow: hidden;

    font-size: 1.2rem;
    margin: 2rem auto 0;
}

.post-nav .prev a,
.post-nav .next a {
    display: table;
    text-align: center;

    color: #fff;
    background-color: #D86078;
    padding: 0.5rem 1rem;
}

.post-nav .prev a:hover,
.post-nav .next a:hover {
    opacity: 0.7;
}

.post-nav .prev {
    float: left;
}

.post-nav .prev a::before {
    content: "<";
    margin-right: 1rem;
}

.post-nav .next {
    float: right;
}

.post-nav .next a::after {
    content: ">";
    margin-left: 1rem;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*******************************************************************/

/*-----------------------------
スライダー
-----------------------------*/
.slick-slider.arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

#main-slider .slick-list {
    margin-bottom: 1rem;
}

#sub-slider {
    overflow: hidden;
}

#sub-slider .slick-list {
    margin: 0 -0.5rem;
}

#sub-slider .slick-track {
    display: flex;
    align-items: center;
    justify-content: center;
}

#sub-slider .slick-slide {
    cursor: pointer;

    width: calc(100% / 3) !important; /* サブスライダーの表示基準 */
    /* width: calc(100% / var(--subSlidesToShow)) !important; */
    padding: 0 0.5rem;
}

#sub-slider .slick-slide .content .in {
    opacity: 0.3;
}

#sub-slider .slick-current .content .in {
    opacity: 1;
} 

/* 矢印 */
.slide-arrow {
    position: absolute;
    cursor: pointer;
    z-index: 2;

    width: 5rem;
    height: 5rem;
}

.prev-arrow {
    left: -2.5rem;
}

.next-arrow {
    right: -2.5rem;
}

.slick-disabled,
.slick-disabled:hover {
    opacity: 0.3;
}

/* ドット */
.slick-dots {
    bottom: -3rem !important;
}

.slick-dots li {
    margin: 0 !important;
}

.slick-dots li button:before {
    font-size: 0.8rem !important;
    opacity: 1 !important;
    color: #707070 !important;
}

.slick-dots li.slick-active button:before {
    color: #432E2B !important;
}

/*-----------------------------
画像スライダー
-----------------------------*/
.img-slider {
    display: flex;
    overflow: hidden;
}

.img-slider ul {
    display: flex;
    animation: img-slider 30s infinite linear 0.5s both;
}

@keyframes img-slider {
    from {
      transform: translateX(0);
    }
      to {
      transform: translateX(-100%);
    }
}

.img-slider ul li {
    width: 100vw;
}

.img-slider ul li>img {
    width: 100%;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    #sub-slider .slick-slide {
        width: calc(100% / 2) !important; /* サブスライダーの表示基準 */
    }

    .slide-arrow {
        width: 3rem;
        height: 3rem;
    }

    .prev-arrow {
        left: -1.5rem;
    }

    .next-arrow {
        right: -1.5rem;
    }

    .slick-dots li button:before {
        font-size: 0.6rem !important;
    }
}

/*******************************************************************/

/*-----------------------------
モーダルウィンドウ
-----------------------------*/
.modal-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    z-index: 103;

    background: rgba(0,0,0,0.5);
    padding: 2.5rem;
}

.modal-container::before {
    vertical-align: middle;
    height: 100%;
}

.modal-container.active {
    opacity: 1;
    visibility: visible;
}

.modal-body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;

    width: 65rem;
}

.modal-content {
    background-color: #D86078;
    padding: 7em 8rem 4rem;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*******************************************************************/

/*-----------------------------
切り替えタブ
-----------------------------*/
.tabs .tab_item {
    display: flex;
    align-items: center;
    position: relative;
    float: left;
    cursor: pointer;
    
    width: calc((100% - 0.5rem) / 2);
    font-size: 2rem;
    border: 5px solid #D86078;
    border-bottom: none;
    border-radius: 1rem 1rem 0 0;
    padding: 3rem;
}

.tabs input[name="tab_item"] {
    display: none;
}

.tabs .tab_content {
    display: none;
    clear: both;
    overflow: hidden;

    background-color: #D86078;
    border-radius: 0 0 1rem 1rem;
    padding: 5rem;
}

.tabs input:checked + .tab_item {
    background-color: #D86078;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*******************************************************************/

/*-----------------------------
流れ
-----------------------------*/
.flow-box {
}

.flow-box .flow {
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*******************************************************************/

/*-----------------------------
吹き出し
-----------------------------*/
.fukidashi-top::before,
.fukidashi-bottom::before,
.fukidashi-left::before,
.fukidashi-right::before {
    content: "";
    position: absolute;
    border: 1.5rem solid transparent;
}

.fukidashi-top::before,
.fukidashi-bottom::before {
    left: 50%;
    transform: translate(-50%, 0);
}

.fukidashi-left::before,
.fukidashi-right::before {
    top: 50%;
    transform: translate(0, -50%);
}

.fukidashi-top::before {
    top: -3.4rem;
    border-bottom: 2rem solid #D86078;
}

.fukidashi-bottom::before {
    bottom: -3.4rem;
    border-top: 2rem solid #D86078;
}

.fukidashi-left::before {
    left: -3.4rem;
    border-right: 2rem solid #D86078;
}

.fukidashi-right::before {
    right: -3.4rem;
    border-left: 2rem solid #D86078;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*******************************************************************/

/*-----------------------------
アコーディオン
-----------------------------*/
.accordion dt,
.accordion dd {
    width: 100%;
    display: flex;
}

.accordion dt {
    color: #fff;
    background-color: #D86078;
    padding: 1rem;
    cursor: pointer;
}

.accordion dt::before {
    content: "Q";
    background-color: #fff;
    color: #D86078;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 5rem;
    padding: 0 0 0.3rem 0.1rem;
    margin-right: 1rem;
}

.accordion dt::after {
    content: "＋";
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/common/ico_plus.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 3rem;
    height: 3rem;
    margin-left: 1rem;
    font-size: 3rem;
}

.accordion dl.open dt::after {
    content: "－";
    background-image: url(../images/common/ico_minus.svg);
}

.accordion dt .title {
    width: calc(100% - 8rem);
    margin: 0;
    padding: 0;
}

.accordion dd {
    overflow: hidden;
    max-height: 0;
    background-color: #FAECEF;
    padding: 0 1rem;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion dl.open dd {
    padding: 1rem;
}

.accordion dd::before {
    content: "A";
    background-color: #D86078;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 5rem;
    padding-left: 0.1rem;
    margin-right: 1rem;
}

.accordion dd p {
    width: calc(100% - 4rem);
    margin: 0;
    padding: 0;
}

/*******************************************************************/

/*-----------------------------
画像ポップアップ
-----------------------------*/
.lb-container {
    position: static;
}

/*******************************************************************/

/*-----------------------------
お問い合わせフォーム
-----------------------------*/
.contactform p {
    margin-bottom: 0;
}

.contactform {
    margin-top: 4rem;
}

.contactform.table01 dt {
    width: 30%;
}

.contactform.table01 dd {
    width: 70%;
}

/* チェックボックス / ラジオボタン */
input[type="checkbox"i] {
    width: auto;
}

input[type="checkbox"],
input[type="radio"] {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    vertical-align: sub;
    cursor: pointer;

    width: 2rem;
    height: 2rem;
    margin: 0 1rem 0 0;
}

input[type="checkbox"]::before,
input[type="checkbox"]::after {
    content: "";
    display: inline-block;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

input[type="checkbox"]::before {
    background-color: #fff;
    border: 1px solid #707070;
    height: 2rem;
    width: 2rem;
    left: 0;
}

input[type="checkbox"]::after {
    content: '';
    display: block;
    height: 1.7rem;
    left: 0.4rem;
    border-right: 0.3rem solid #FF5469;
    border-bottom: 0.3rem solid #FF5469;
    margin-top: -1rem;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 1.2rem;
}

input[type="checkbox"]:checked::after {
    opacity: 1;
}

input[type="radio"]::before,
input[type="radio"]::after{
    content: "";
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

input[type="radio"]::before {
    background-color: #fff;
    border: 1px solid #707070;
    height: 2rem;
    width: 2rem;
    left: 0;
}

input[type="radio"]::after {
    background: #FF5469;
    opacity: 0;
    height: 1rem;
    width: 1rem;
    left: 0.5rem;
}

input[type="radio"]:checked::after {
    opacity: 1;
}

input[type="tel"],
input[type="email"],
input[type="text"],
input[type="file"],
input[type="date"],
select,
textarea {
    overflow: hidden;
    resize: none;
    -webkit-appearance: none;
    -webkit-user-select: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin: 0;

    border: 1px solid #707070;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

input[type="tel"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
    outline: 1px solid #D86078;
    background-color: #FAECEF;
}

select {
    -webkit-appearance: auto;
    cursor: pointer;
}

textarea {
    width: 100%;
    overflow: auto;
}

.form-width-100 {
    width: 100%;
    margin-bottom: 0.5rem;
}

.form-width-50 {
    width: 50rem;
    max-width: 100%;
    margin-bottom: 0.5rem;
}

.form-width-30 {
    width: 30rem;
    max-width: 100%;
    margin-bottom: 0.5rem;
}

.form-width-15 {
    width: 15rem;
    max-width: 100%;
    margin-bottom: 0.5rem;
}

.required,
.optional {
    vertical-align: middle;
    box-sizing: border-box;
    display: inline-block;
    line-height: 1em;

    font-size: 1rem;
    margin: 0 1rem;
    padding: 0.5rem 1rem;
}

.required {
    border: 1px solid #FF5469;
    color: #FF5469;
}

.optional {
    border: 1px solid #707070;
    color: #707070;
}

.example {
    font-size: 1.2rem;
    color: #432E2B;
    margin-top: 1rem;
}

::placeholder {
    color: #707070;
}

.wpcf7-list-item {
    width: calc(100% / 1);
    margin: 0 0 0.5rem 0 !important;
}

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

.wpcf7-spinner {
    display: none !important;
}

.acceptance {
    text-align: center;
    margin: 3rem 0;
}

.acceptance .wpcf7-list-item label {
    justify-content: center;
}

/* リキャプチャー */
.inv-recaptcha-holder {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.grecaptcha-badge {
    display: none;
}

.page_contact .grecaptcha-badge {
    display: block;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    .contactform.table01 dt,
    .contactform.table01 dd {
        width: 100%;
    }

    input[type="tel"],
    input[type="email"],
    input[type="text"],
    input[type="file"],
    select,
    textarea {
        width: 100%;

        padding: 1rem;
    }
}

/*******************************************************************/

/*-----------------------------
プライバシーポリシー
-----------------------------*/
.privacy-policy01 h4 {
    margin-top: 4rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #D86078;
}

.privacy-policy01 ol ul {
    margin-top: 1rem;
}

.privacy-policy01 ol li,
.privacy-policy01 ul li {
    margin-bottom: 1rem;
}

/*******************************************************************/

/*-----------------------------
サイトマップ
-----------------------------*/
.wsp-pages-title {
    display: none;
}

.wsp-pages-list {
    margin: 0;
}

.wsp-pages-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #707070;
}

.wsp-pages-list li.page_item_has_children {
    padding-bottom: 0.5rem;
}

.wsp-pages-list ul.children {
    margin: 0;
    padding: 0;
}

.wsp-pages-list ul.children li {
    display: flex;
    font-size: 1.4rem;
    border: none;
    padding: 0.5rem 1rem;
}

.wsp-pages-list ul.children li::before {
    content: "-";
    margin-right: 0.5rem;
}

.wsp-pages-list ul.children li a {
    width: calc(100% - 0.6rem);
}

.wsp-pages-list li a:hover {
    color: #D86078;
}

/*******************************************************************/

/*-----------------------------
お問い合わせ
-----------------------------*/
.sec_contact {

}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*******************************************************************/

/*-----------------------------
トピックス
-----------------------------*/
.sec_topics {
}

.sec_topics dl p {
    margin: 0;
}

.sec_topics dt {
    display: flex;
    align-items: flex-start;
}

.sec_topics dt .category-list {
    margin: 0 0 0 2rem;
}

.sec_topics dd a:hover {
    color: #D86078;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    .sec_topics {
    }

    .sec_topics dt,
    .sec_topics dd {
        width: 100%;
    }

    .sec_topics dt {
        padding: 0 0 0.5rem;
    }
}

/*******************************************************************/

/*-----------------------------
a-slug
-----------------------------*/
.sec_a-slug {
    background-color: #FAECEF;
}

.sec_a-slug dl h3 {
    margin: 0;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
    .sec_a-slug {
    }
}

/*******************************************************************/

/*-----------------------------
ページコンテンツ
-----------------------------*/

/*******************************************************************/

/*-----------------------------
Responsive
-----------------------------*/

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}