@charset 'UTF-8';
/* ==========================================================================
Foundation
========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
/* Reset
   ----------------------------------------------------------------- */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video
{
    font-size: 100%;

    margin: 0;
    padding: 0;

    vertical-align: baseline;

    border: 0;
    outline: 0;
    background: transparent;
}

body
{
    line-height: 1;
}

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

ul,
ol
{
    list-style: none;
}

blockquote,
q
{
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after
{
    content: '';
    content: none;
}

a
{
    font-size: 100%;

    margin: 0;
    padding: 0;

    vertical-align: baseline;
    text-decoration: none;

    background: transparent;
}

/*! change colours to suit your needs */
ins
{
    text-decoration: none;

    color: #000;
    background-color: #ff9;
}

/*! change colours to suit your needs */
mark
{
    font-weight: bold;
    font-style: italic;

    color: #000;
    background-color: #ff9;
}

del
{
    text-decoration: line-through;
}

abbr[title],
dfn[title]
{
    cursor: help;

    border-bottom: 1px dotted;
}

table
{
    border-spacing: 0;
    border-collapse: collapse;
}

/*! change border colour to suit your needs */
hr
{
    display: block;

    height: 1px;
    margin: 1em 0;
    padding: 0;

    border: 0;
    border-top: 1px solid #ccc;
}

input,
select
{
    vertical-align: middle;
}

main
{
    display: block;
}

/* Base
   ----------------------------------------------------------------- */
html
{
    font-size: 62.5%;

    -webkit-box-sizing: border-box;

            box-sizing: border-box;
}

@media screen and (max-width: 767px)
{
    html
    {
        font-size: 56%;
    }
}

*,
*:before,
*:after
{
    -webkit-box-sizing: inherit;
            box-sizing: inherit;
}

body
{
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1;

    position: relative;

    text-align: justify;
    word-wrap: break-word;
    word-break: normal;

    color: #634720;

    -webkit-font-feature-settings: 'palt';

            font-feature-settings: 'palt';
    -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 767px)
{
    body
    {
        font-size: 32px;
        font-size: 4.27vw;
    }
}

@media screen and (min-width: 768px)
{
    body
    {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

body.is-fixed
{
    position: fixed;

    width: 100%;
    height: 100%;
}

a
{
    -webkit-transition: all .2s;
    transition: all .2s;

    color: #634720;
}

a:hover,
a:active
{
    text-decoration: none;

    opacity: .8;
}

p
{
    line-height: 1.6;
}

/* フルードイメージにします。 */
img
{
    max-width: 100%;
    height: auto;

    vertical-align: middle;
}

/* svgのIEバグ回避 */
img[src$='.svg']
{
    width: 100%;
    height: auto;
}

code,
pre
{
    font-family: Consolas, Menlo, Courier, monospace;
}

/* Container
   ----------------------------------------------------------------- */
.l-container
{
    overflow: hidden;
}

/* Component
   ----------------------------------------------------------------- */
.c-breadcrumb
{
    text-align: left;
}

.c-breadcrumb__lists
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.c-breadcrumb__list
{
    font-size: 13px;
    font-size: 1.3rem;

    margin-right: 10px;
}

.c-btn
{
    font-size: 17px;
    font-size: 1.7rem;

    padding: 10px 40px;

    border: 1px solid #634720;
    border-radius: 100vw;
    background-color: #f5cb23;
    -webkit-box-shadow: 2px 2px 0 #634720;
            box-shadow: 2px 2px 0 #634720;
}

@media screen and (max-width: 767px)
{
    .c-btn
    {
        padding: 15px 60px;
    }
}

.c-drawer
{
    /* チェックボックスは非表示に */
    /* ハンバーガーアイコンの設置スペース */
    /* ハンバーガーメニューのアイコン */
    /* 三本線のうち一番上の棒の位置調整 */
    /* 三本線のうち一番下の棒の位置調整 */
    /* アイコンがクリックされたら真ん中の線を透明にする */
    /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
    /* メニューのデザイン*/
    /* アイコンがクリックされたらメニューを表示 */
    /* メニューを閉じるための要素のデザイン*/
}

@media screen and (min-width: 768px)
{
    .c-drawer
    {
        display: none;
    }
}

.c-drawer__hidden
{
    display: none;
}

.c-drawer__open
{
    position: relative;
    z-index: 98;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    width: 45px;
    height: 40px;
    /* 重なり順を一番下に */

    cursor: pointer;

    border-radius: 8px;
    background-color: #e6617c;

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.c-drawer__open span,
.c-drawer__open span::before,
.c-drawer__open span::after
{
    position: absolute;

    display: block;

    width: 25px;
    height: 2px;

    content: '';
    -webkit-transition: .5s;
    transition: .5s;

    border-radius: 3px;
    background: #fff;
}

.c-drawer__open span::before
{
    bottom: 8px;
}

.c-drawer__open span::after
{
    top: 8px;
}

.c-drawer #drawer-check:checked ~ .c-drawer__open span
{
    background: rgba(0, 0, 0, 0);
}

.c-drawer #drawer-check:checked ~ .c-drawer__open span::before
{
    bottom: 0;

    -webkit-transform: rotate(45deg);

            transform: rotate(45deg);
}

.c-drawer #drawer-check:checked ~ .c-drawer__open span::after
{
    top: 0;

    -webkit-transform: rotate(-45deg);

            transform: rotate(-45deg);
}

.c-drawer__content
{
    /* ここの割合を小さくすると閉じる部分の領域が広がる */
    position: fixed;
    /* メニューを画面外へ */
    z-index: 100;
    top: 64.7px;
    left: 100%;

    width: 100%;
    /* 重なり順を一番上に */

    -webkit-transition: .5s;

    transition: .5s;
}

.c-drawer #drawer-check:checked ~ .c-drawer__content
{
    left: 0;
    /* メニューを画面内へ */
}

.c-drawer__close
{
    position: fixed;
    /* 閉じるための要素を画面外へ */
    z-index: 99;
    top: 64.7px;
    left: 100%;

    width: 100%;
    height: 100%;
    /* 重なり順をメニューより下に*/

    -webkit-transition: .5s;

    transition: .5s;

    background: transparent;
}

.c-drawer #drawer-check:checked ~ .c-drawer__close
{
    left: 0;
    /* 閉じるための要素を画面内へ */
}

.c-drawer__list
{
    text-align: center;

    background-color: #f7c5bc;
}

.c-drawer__item
{
    border-bottom: 1px solid #634720;
}

.c-drawer__item:nth-last-of-type(1)
{
    border-bottom: none;
}

.c-drawer__link
{
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 600;

    display: block;

    padding: 20px 0;
}

.c-heading
{
    font-weight: 500;

    text-align: center;
}

.c-heading__en
{
    font-family: 'Pacifico', cursive;
    font-size: 66px;
    font-size: 6.6rem;

    display: block;

    margin-bottom: 25px;
}

@media screen and (max-width: 767px)
{
    .c-heading__en
    {
        font-size: 58px;
        font-size: 5.8rem;
    }
}

.c-heading__jp
{
    font-size: 23px;
    font-size: 2.3rem;

    display: block;
}

@media screen and (max-width: 767px)
{
    .c-heading__jp
    {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

.c-tab__menu
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media screen and (max-width: 767px)
{
    .c-tab__menu
    {
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
    }
}

.c-tab__item
{
    padding: 10px 0;

    text-align: center;

    color: #fff;
    border-radius: 17px 17px 0 0;
}

@media screen and (max-width: 767px)
{
    .c-tab__item
    {
        border-radius: 10px 10px 0 0;
    }
}

.c-tab__item.active
{
    position: relative;

    cursor: default;
}

.c-tab__item.active::before
{
    position: absolute;
    top: 100%;
    left: 50%;

    margin-left: -15px;

    content: '';

    border: 15px solid transparent;
}

.c-tab__item:not(.active)
{
    position: relative;

    cursor: pointer;
}

.c-tab__item:not(.active)::before
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';
    -webkit-transition: opacity .2s 0s ease;
    transition: opacity .2s 0s ease;

    opacity: 1;
    border-radius: 17px 17px 0 0;
    background-color: rgba(255, 255, 255, .6);
}

@media screen and (max-width: 767px)
{
    .c-tab__item:not(.active)::before
    {
        border-radius: 10px 10px 0 0;
    }
}

.c-tab__item:not(.active):hover::before
{
    opacity: 0;
}

.c-tab__content
{
    display: none;
}

.c-tab__content.show
{
    display: block;
}

/* utility
   ----------------------------------------------------------------- */
@media screen and (max-width: 767px)
{
    .u-pc
    {
        display: none !important;
    }
}

@media screen and (min-width: 768px)
{
    .u-sp
    {
        display: none !important;
    }
}

@media screen and (min-width: 1024px)
{
    .u-tb
    {
        display: none !important;
    }
}

@media screen and (min-width: 1024px)
{
    .u-tb-only
    {
        display: none !important;
    }
}

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

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

/* ==========================================================================
   page 下層ページ共通部分
   ========================================================================== */
a[href^='tel:']
{
    text-decoration: none;
}

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


/* 220309追記 */
.pagetop {
  display: none;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #F7C5BC;
  position: fixed;
  right: 20px;
  bottom: 20px;
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 50px;
    height: 50px;
    right: 10px;
    bottom: 10px;
  }
}
.pagetop::after {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #F7C5BC;
  border-right: 2px solid #F7C5BC;
  transform: rotate(-45deg) translate(-4px, 3px);
}
@media screen and (max-width: 767px) {
  .pagetop::after {
    width: 12px;
    height: 12px;
    transform: rotate(-45deg) translate(-2px, 1px);
  }
}
@media screen and (min-width: 768px) {
body {
  padding-top: 80px;
}
.topHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  z-index: 1;
}
}
