@charset "utf-8";

/* リセット */

* {
  box-sizing: border-box;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre,
form, fieldset, input, textarea, p, blockquote, th, td, figure {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

table {
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-weight: normal;
  font-style: normal;
}

strong {
  font-weight: bold;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

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

abbr, acronym {
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/* Noto Sans JP -------------------------------------*/

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/NotoSansCJKjp-Light.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Light.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/NotoSansCJKjp-Regular.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/NotoSansCJKjp-Medium.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/NotoSansCJKjp-Bold.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Bold.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/NotoSansCJKjp-Black.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Black.woff') format('woff');
}


/* Zen Kaku Gothic New -------------------------------------*/

@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/ZenKakuGothicNew-Light.woff2') format('woff2'),
    url('../fonts/ZenKakuGothicNew-Light.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/ZenKakuGothicNew-Regular.woff2') format('woff2'),
    url('../fonts/ZenKakuGothicNew-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/ZenKakuGothicNew-Medium.woff2') format('woff2'),
    url('../fonts/ZenKakuGothicNew-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/ZenKakuGothicNew-Bold.woff2') format('woff2'),
    url('../fonts/ZenKakuGothicNew-Bold.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/ZenKakuGothicNew-Black.woff2') format('woff2'),
    url('../fonts/ZenKakuGothicNew-Black.woff') format('woff');
}


/*-------------------------------------------------
/* 基本
--------------------------------------------------*/

:root {
  --color-text: #3E0A0A;
  --color-main: #A82A44;
  --color-light-main: #B25F6E;
  --color-too-light-main: #AF7B7B;
  --color-bright-main: #D6A7B2;
  --color-too-bright-main: #D5B3AC;


  --color-back: #F9E3CE;
  --color-global-nav-back: #F9ECE8;
  --color-footer: #F9ECE8;

  --color-red: #FF2727;
  --color-pink: #FF307F;
  --color-orange: #FF4500;
  --color-green: #31CC31;

  --color-gray: #8E939B;
  --color-light-gray: #E1E4E9;
  --color-dark-gray: #585858;

  --box-shadow: 0 0 4px rgba(63, 11, 11, 0.1);

  --font-main: 'Zen Kaku Gothic New', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-sans: 'Noto Sans CJK JP', 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-en: "Lato", sans-serif;
  --font-limelight: "Limelight", sans-serif;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.8;
  background-color: var(--color-back);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-print-color-adjust: exact;
}

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

.foot-copy,
.en {
  font-family: var(--font-en);
}

.en-weight {
  font-weight: 600;
}

.en-limelight {
  font-family: var(--font-limelight);
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: none;
}

/* iPhoneTELリンク色変更なしにする */
a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

html {
  scroll-behavior: smooth;
}

.margin-top-non {
  margin-top: 0!important;
}



/*------------------------------------------*/
/* 背景
/*------------------------------------------*/

.wrapper {
  position: relative;
  z-index: 2;
}

.wrapper::before,
.wrapper::after {
  content: '';
  display: inline-block;
  background-repeat: repeat-y;
  aspect-ratio: 34/200;
  width: 100px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.wrapper::before {
  background: url('../img/common/back_side_l.png');
  background-size: 100%;
  left: 0;
}

.wrapper::after {
  background: url('../img/common/back_side_l.png');
  background-size: 100%;
  right: 0;
}

@media screen and (min-width: 834px), print {

  .wrapper::before,
  .wrapper::after {
    width: 340px;
  }
}



/*------------------------------------------*/
/* ロゴ
/*------------------------------------------*/

.logo {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('../img/common/logo.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 130/255;
  width: 80px;
  height: auto;
}

.logo.white {
  background: url('../img/common/logo_white.svg') no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 834px), print {
  .logo {
    width: 130px;
  }
}

/*------------------------------------------*/
/* うりぼう
/*------------------------------------------*/

.uribou {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('../img/common/uribou.png') no-repeat;
  background-size: 100%;
  aspect-ratio: 520/488;
  width: 130px;
  height: auto;
}

@media screen and (min-width: 834px), print {
  .uribou {
    width: 260px;
  }
}



/*------------------------------------------*/
/* insta
/*------------------------------------------*/

.insta {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('../img/common/sns_insta.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 1/1;
  width: 30px;
  height: auto;
  vertical-align: bottom;
}

.insta.white {
  background: url('../img/common/sns_insta_white.svg') no-repeat;
  background-size: 100%;
}


/*****************************************
*
* ヘッダ
*
******************************************/

header {
  position: relative;
  display: inline-block;
  width: 100%;
  z-index: 99;
}


/* ロゴ --------------------------------*/
header .logo-wrap {
  position: absolute;
  top: 10px;
  left: 20px;
  z-index: 10;
}

@media screen and (min-width: 768px), print {
  header .logo-wrap {
    top: 20px;
    left: 40px;
  }
}

@media screen and (min-width: 834px), print {
  header .logo-wrap {
    position: fixed;
    top: 20px;
    left: 40px;
  }
}


/*!------------------------------------*\
    ナビ
\*!------------------------------------*/


@media screen and (min-width: 1040px), print {

  .drawer-hamburger,
  .drawer-brand,
  .drawer-second {
    display: none;
  }

  .drawer-menu {
    display: flex;
    align-items: center;
    background: var(--color-global-nav-back);
    border-radius: 30px;
    height: 60px;
    padding: 0 40px;
    position: fixed;
    top: 20px;
    right: 40px;
    box-shadow: var(--box-shadow);
  }

  .drawer-menu .drawer-single {
    position: relative;
    margin-right: 40px;
  }

  .drawer-menu .drawer-single+.drawer-single::before {
    content: '';
    background: url('../img/common/global-nav_line.svg');
    background-size: 100%;
    aspect-ratio: 4/20;
    width: 4px;
    height: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -22px;
  }

  .drawer-menu li a {
    color: var(--color-main);
    font-size: 1.1rem;
    font-weight: bold;
    transition: all .3s ease;
  }

  .drawer-menu li a:hover {
    text-decoration: none;
    color: var(--color-orange);
  }

  .drawer-menu li a.insta:hover {
    background: url('../img/common/sns_insta_hover.svg') no-repeat;
    background-size: 100%;
  }
}

@media screen and (max-width: 1039px) {
  .drawer-open {
    overflow: hidden !important;
  }

  .drawer-nav {
    position: fixed;
    z-index: 101;
    top: 0;
    overflow: hidden;
    width: 16.25rem;
    width: 100%;
    height: 100%;
    background: var(--color-main);
    padding: 20px 20px 40px 20px;
  }

  .drawer-menu li+li {
    margin-top: 20px;
  }

  .drawer-menu li.drawer-brand {
    margin-bottom: 40px;
  }

  .drawer-menu li.drawer-insta {
    margin-top: 40px;
  }

  li.drawer-brand a {
    font-size: 0;
    padding: 0;
  }

  .drawer-menu li a {
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
  }

  .drawer-menu li.drawer-insta .insta {
    background: url('../img/common/sns_insta_white.svg') no-repeat;
    background-size: 100%;
  }

  .drawer-menu li a:hover,
  .drawer-menu li a:active {
    text-decoration: none;
    border: 0;
  }

  .drawer-second li a {
    font-size: 0.9rem;
  }

  .drawer-second li,
  .drawer-second li+li {
    margin-top: 0;
  }

  /* ------------------------------*/
  /*! overlay */
  /*
.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
}

.drawer-open .drawer-overlay {
  display: block;
}
*/


  /*!------------------------------------*\
    Right
\*!------------------------------------*/

  .drawer--right .drawer-nav {
    right: -16.25rem;
    right: -100%;
    -webkit-transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }

  .drawer--right.drawer-open .drawer-nav {
    right: 0;
  }


  /*!------------------------------------*\
    iPhoneでメニューをスクロールするとメニューが閉じてしまうバグ対策
\*!------------------------------------*/

  .drawer--top.drawer-open .drawer-nav {
    top: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .drawer--right.drawer-open .drawer-nav,
  .drawer--right .drawer-hamburger,
  .drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /*!------------------------------------*\
    Hamburger
\*!------------------------------------*/

  .drawer-hamburger {
    display: block;
    background-color: var(--color-text);
    border-radius: 6px;
    width: 60px;
    height: 60px;
    box-sizing: content-box;
    padding: 0;
    -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    border: 0;
    outline: 0;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 104;
    box-shadow: var(--box-shadow);
  }

  .drawer-hamburger:hover {
    cursor: pointer;
    transform: scale(1.1);
  }

  .drawer-hamburger-icon {
    position: relative;
    display: block;
    position: absolute;
    top: 20px;
    left: 17px;
  }

  .drawer-hamburger-icon,
  .drawer-hamburger-icon:before,
  .drawer-hamburger-icon:after {
    border-radius: 50%;
    width: 4px;
    height: 4px;
    -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    background-color: white;
  }

  .drawer-hamburger-icon:before,
  .drawer-hamburger-icon:after {
    content: ' ';
    position: absolute;
    top: 0;
  }

  .drawer-hamburger-icon:before {
    left: 12px;
  }

  .drawer-hamburger-icon:after {
    left: 24px;
  }

  .drawer-hamburger-text {
    width: 100%;
    font-family: var(--font-en);
    color: white;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: -0.05em;
    position: absolute;
    bottom: 12px;
    left: 0;
  }

  .drawer-open .drawer-hamburger {
    width: 60px;
    height: 60px;
    /*開いた時のアイコンの背景*/
    background-color: var(--color-text);
  }

  .drawer-open .drawer-hamburger-icon {
    background-color: transparent;
  }

  .drawer-open .drawer-hamburger-icon:before,
  .drawer-open .drawer-hamburger-icon:after {
    border-radius: 0;
    width: 30px;
    height: 3px;
    top: 9px;
    left: -1px;
    /*開いた時の×の色*/
    background-color: white;
  }

  .drawer-open .drawer-hamburger-icon:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .drawer-open .drawer-hamburger-icon:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .drawer-open .drawer-hamburger-text {
    display: none;
  }


  /*!------------------------------------*\
    accessibility
\*!------------------------------------*/

  /*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */

  .sr-only {
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
  }

  /*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */

  .sr-only-focusable:active,
  .sr-only-focusable:focus {
    position: static;
    overflow: visible;
    clip: auto;
    width: auto;
    height: auto;
    margin: 0;
  }

  /*!------------------------------------*\
    Container
\*!------------------------------------*/

  .drawer-container {
    margin-right: auto;
    margin-left: auto;
  }
}





/*****************************************
*
* フッタ
*
******************************************/

footer {
  position: relative;
  width: 100%;
  background: var(--color-footer);
  padding: 40px 20px;
  margin-top: 80px;
}

footer::before,
footer::after {
  content: '';
  display: inline-block;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}

footer::before {
  background: url('../img/common/footer_uribou.png') no-repeat;
  background-size: 100%;
  aspect-ratio: 280/152;
  width: calc(280px / 2);
  z-index: 2;
}

footer::after {
  background: url('../img/common/footer_bottom.png') no-repeat;
  background-size: 100%;
  aspect-ratio: 1663/152;
  width: calc(1663px / 2);
  z-index: 1;
}

@media screen and (min-width: 768px), print {
  footer {
    padding: 60px 40px;
  }
}

@media screen and (min-width: 834px), print {
  footer {
    padding: 80px 60px;
    margin-top: 160px;
  }

  footer::before {
    background: url('../img/common/footer_uribou.png') no-repeat;
    background-size: 100%;
    width: 280px;
    z-index: 2;
  }

  footer::after {
    background: url('../img/common/footer_bottom.png') repeat-x;
    background-size: auto 152px;
    width: 100%;
    height: 152px;
    z-index: 1;
  }
}



/* footer-box --------------------------------*/
.footer-box {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px), print {
  .footer-box {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
}


/* footer-cont --------------------------------*/
.footer-cont {
  font-size: 0.9rem;
  font-weight: bold;
}

.footer-cont .heading {
  color: var(--color-main);
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}

.footer-cont .large {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .footer-cont {
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px), print {
  .footer-cont {
    text-align: left;
    margin-left: 60px;
  }
}

@media screen and (min-width: 834px), print {
  .footer-cont {
    font-size: 1.1rem;
    margin-left: 80px;
  }

  .footer-cont .heading {
    font-size: 1.4rem;
  }

  .footer-cont .large {
    font-size: 1.5rem;
  }
}

/* footer-table --------------------------------*/
.footer-table {
  border-collapse: collapse;
  margin: 0 auto;
  margin-top: 20px;
}

.footer-table th,
.footer-table td {
  text-align: left;
  font-size: 1rem;
  padding: 5px 0;
}

.footer-table th {
  color: var(--color-main);
  font-weight: bold;
  padding-right: 20px;
}

@media screen and (min-width: 834px), print {
  .footer-table {
    margin-top: 30px;
  }

  .footer-table th,
  .footer-table td {
    font-size: 1.2rem;
  }
}


/* コピーライト --------------------------------*/
.footer-copy {
  font-size: 0.7rem;
  font-weight: bold;
  margin-top: 20px;
}

@media screen and (min-width: 834px), print {
  .footer-copy {
    margin-top: 40px;
  }
}


/*****************************************
*
* ページレイアウト
*
******************************************/

/*------------------------------------------*/
/* submain
/*------------------------------------------*/


.submain-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}

.submain {
  display: inline-block;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.submain-wrap::before {
  content: '';
  display: inline-block;
  background: url('../img/common/uribou.png') no-repeat;
  background-size: 100%;
  aspect-ratio: 520/488;
  width: 80px;
  height: auto;
  position: absolute;
  bottom: 20px;
  right: 5px;
}

@media screen and (min-width: 768px), print {
  .submain {
    width: calc(100% - 80px);
  }

  .submain-wrap::before {
    width: 110px;
    right: 20px;
  }
}

@media screen and (min-width: 834px), print {
  .submain-wrap {
    margin-bottom: 100px;
  }

  .submain {
    width: calc(100% - 120px);
  }

  .submain-wrap::before {
    width: calc(calc(200 / 1400) * 100vw);
    right: 20px;
  }
}

@media screen and (min-width: 1400px), print {
  .submain {
    width: 1280px;
  }

  .submain-wrap::before {
    width: 260px;
  }
}

/* 見出し --------------------------------*/
.submain .heading .en {
  position: relative;
  display: inline-block;
  color: var(--color-light-main);
  font-family: var(--font-limelight);
  font-size: 2rem;
  font-weight: 500;
  z-index: 2;
  margin-top: 40px;
}

.submain .heading .en::before {
  content: '';
  display: inline-block;
  background: url('../img/common/heading-back.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 515/88;
  width: 160px;
  height: auto;
  opacity: 1;
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  transition: all .5s ease;
  z-index: -1;
}

.submain .heading .jp {
  display: inline-block;
  background: var(--color-main);
  color: white;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 60px;
}

@media screen and (min-width: 768px), print {
  .submain .heading .en {
    font-size: calc(calc(90 / 1400) * 100vw);
  }

  .submain .heading .en::before {
    width: calc(calc(515 / 1400) * 100vw);
    bottom: calc(calc(10 / 1400) * 100vw);
  }

  .submain .heading .jp {
    font-size: calc(calc(32 / 1400) * 100vw);
  }
}

@media screen and (min-width: 834px), print {
  .submain .heading .en {
    margin-top: 100px;
  }

  .submain .heading .jp {
    margin-top: 30px;
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 1400px), print {
  .submain .heading .en {
    font-size: 5.4rem;
  }

  .submain .heading .en::before {
    width: 515px;
    bottom: 10px;
  }

  .submain .heading .jp {
    font-size: 2rem;
  }
}

/*------------------------------------------*/
/* パンくず
/*------------------------------------------*/

.breadcrumb {
  text-align: left;
  font-size: 0.8rem;
  font-weight: bold;
}

.breadcrumb li a {
  color: var(--color-text);
  transition: all .5s ease;
}

.breadcrumb li a:visited {
  color: var(--color-text);
  text-decoration: none;
}

.breadcrumb li a:hover {
  text-decoration: underline;
  color: white;
  text-decoration: none;
}

.breadcrumb li {
  display: inline-block;
  position: relative;
}

.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  content: '-';
  padding-left: 0.8em;
  padding-right: 0.5em;
}

@media screen and (min-width: 834px), print {
  .breadcrumb {
    font-size: 0.9rem;
  }
}


/*****************************************
*
* 印刷用
*
******************************************/

@media print {
  body {
    width: 1400px;
    transform: scale(0.8);
    transform-origin: 0 0;
    -webkit-print-color-adjust: exact;
  }

  /* FireFoxテーブル印刷バグ回避 */
  _:-ms-lang(x)::-ms-backdrop, .wrapper {
    overflow: auto;
    display: table;
  }


  /* アニメーション無効 */
  [class^="animation"], [class*=" animation"],
  footer {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}