@charset "UTF-8";
/* ==========================================
Root
========================================== */
:root {
  --color_base: #323232;
  --color_accent: #ff8b17;
  --font_base: "Zen Maru Gothic", serif;
  --font_accent: "Cabin Sketch", sans-serif;
  --letter_spacing: 0.05em;
  --font_weight_base: 700;
}

/* ==========================================
Additional Reset
========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  letter-spacing: var(--letter_spacing);
}

a {
  text-decoration: none;
  color: inherit;
}

a:active,
a:hover {
  outline-width: medium;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
summary:focus {
  outline-width: medium;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(-font_weight_bold);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul, ol {
  list-style: none;
}

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

address {
  font-style: normal;
}

iframe {
  border-width: 0;
}

th {
  font-weight: inherit;
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

summary {
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

fieldset {
  border: none;
}

select {
  color: var(--color_base);
  border-radius: 0;
}

/* =========================================
focus-visibleのIE、Safari対応
========================================= */
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

/* ==========================================
Font Settings
========================================== */
/* Zen Maru Gothic 700 ------------ */
.zenmaru {
  font-family: "Zen Maru Gothic", serif;
}

/* Cabin Sketch 700 ------------ */
.cabinSketch {
  font-family: "Cabin Sketch", sans-serif;
}

/* ==========================================
bese
========================================== */
html {
  font-size: 62.5%;
}

body {
  font-family: var(--font_base);
  font-weight: var(--font_weight_base);
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color_base);
  background-color: #fff;
}

img {
  display: block;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  img {
    width: 100%;
    height: auto;
  }
}
/* ==========================================
mousedeive / touchdevice
========================================== */
/* MouseDevice設定 ------------------ */
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.6;
  }
  a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}
/* TouchDevice設定 ------------------ */
@media (pointer: none) {
  a:active {
    opacity: 0.6;
  }
}
/* ==========================================
layout
========================================== */
.ly_wrapper {
  display: flex;
  flex-direction: column;
  min-width: 1200px;
  min-height: 100%;
  overflow: hidden;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .ly_wrapper {
    min-width: 320px;
  }
}
/* ==========================================
header
========================================== */
.ly_header {
  position: absolute;
  width: 100%;
  z-index: 110;
}

.header_logo {
  position: absolute;
  top: 20px;
  left: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.header_logo a {
  display: block;
  transition: opacity 0.15s;
  font-size: 1.4rem;
  text-align: center;
}
.header_logo img,
.header_logo .header_logo_text {
  display: block;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .header_logo {
    top: 10px;
    left: 12px;
    width: 132px;
  }
  .header_logo a {
    font-size: 1rem;
  }
  .header_logo .header_logo_text {
    margin-top: 1px;
  }
}
/* ==========================================
humberger
========================================== */
.humberger_open body {
  padding-right: var(--scrollbarWidth);
}

.humberger {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  border: none;
  z-index: 111;
}

.humberger:before,
.humberger:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 52px;
  height: 2px;
  margin: 0 auto;
  background-color: #fff;
  transition: 0.4s;
  border-radius: 100vh;
}

.humberger:before {
  top: 23px;
}

.humberger:after {
  top: 38px;
}

.humberger_inner {
  display: block;
  width: 80px;
  height: 80px;
  padding: 38px 0 0 0.05em;
  border-radius: 0 0 0 12px;
  background-color: var(--color_accent);
  overflow: hidden;
  font-size: 1.9rem;
  text-align: center;
  color: #fff;
  transition: 0.4s;
}

/* ハンバーガーメニューが開いた場合 */
.humberger[aria-expanded=true]::before {
  top: 28px;
  width: 44px;
  background-color: var(--color_base);
  transform: rotate(25deg);
}

.humberger[aria-expanded=true]::after {
  top: 28px;
  width: 44px;
  background-color: var(--color_base);
  transform: rotate(-25deg);
}

.humberger[aria-expanded=true] .humberger_inner {
  background-color: transparent;
  color: var(--color_base);
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .humberger:before,
  .humberger:after {
    width: 32px;
    height: 1px;
  }
  .humberger:before {
    top: 14px;
  }
  .humberger:after {
    top: 23px;
  }
  .humberger_inner {
    width: 50px;
    height: 50px;
    padding: 24px 0 0 0.05em;
    border-radius: 0 0 0 8px;
    font-size: 1.1rem;
    text-align: center;
    color: #fff;
    transition: 0.4s;
  }
  /* ハンバーガーメニューが開いた場合 */
  .humberger[aria-expanded=true]::before {
    top: 16px;
    width: 34px;
    transform: rotate(20deg);
  }
  .humberger[aria-expanded=true]::after {
    top: 16px;
    width: 34px;
    transform: rotate(-20deg);
  }
}
/* ==========================================
header_menu
========================================== */
.header_menu {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  padding: 58px 0 33px;
  background-color: rgba(255, 255, 255, 0.9);
  transition: transform 0.25s ease;
  transform: translateX(100%);
}

/* アクティブクラスが追加されたときに表示 */
.header_menu.is_active {
  transform: translateX(0);
}

.menu_title {
  max-width: 190px;
  margin: 0 auto 35px;
  text-align: center;
}
.menu_title svg {
  display: block;
}

.menu_title_text {
  display: block;
  margin-top: 6px;
  font-size: 1.3rem;
}

.nav_list {
  margin-bottom: 26px;
}
.nav_list a {
  display: block;
  font-size: 1.5rem;
  padding: 10px 10px 10px 110px;
}
.nav_list a::before {
  content: "〉";
  display: inline-block;
  position: relative;
  top: -0.05em;
  font-size: 1.2rem;
}
.nav_list a:hover,
.nav_list a:focus,
.nav_list .is_current {
  background-color: #ffe8d1;
  opacity: 1;
  transition: background-color 0.05s;
}

.nav_sub {
  display: flex;
  justify-content: center;
}
.nav_sub li + li {
  margin-left: 15px;
}

.nav_sub_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  padding-left: 0.05em;
  border-radius: 100vh;
  overflow: hidden;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0;
}
.nav_sub_link.__color01 {
  background-color: #ef7f15;
}
.nav_sub_link.__color02 {
  background-color: #7ed02c;
}
.nav_sub_link.__color03 {
  background-color: #989898;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .header_menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
  }
  /* アクティブクラスが追加されたときに表示 */
  .header_menu.is_active {
    transform: translateX(0);
  }
  body.lock_scroll {
    overflow: hidden;
  }
}
/* =========================================
main
========================================= */
.ly_main {
  position: relative;
}

/* =========================================
footer
========================================= */
.footer_nav_sub {
  display: flex;
}
.footer_nav_sub li + li {
  margin-left: 15px;
}

.footer_nav_sub_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  padding-left: 0.05em;
  border-radius: 100vh;
  overflow: hidden;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0;
  color: #fff;
}
.footer_nav_sub_link.__color01 {
  background-color: #ef7f15;
}
.footer_nav_sub_link.__color02 {
  background-color: #7ed02c;
}
.footer_nav_sub_link.__color03 {
  background-color: #989898;
}

.footer_copyright {
  background-color: #ef7f15;
  color: #fff;
  text-align: center;
}
.footer_copyright small {
  display: inline-block;
  padding-left: 0.1em;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

/* PC調整 ---------------------------- */
@media not screen and (max-width: 768px) {
  .ly_footer {
    position: relative;
  }
  .ly_footer::before {
    content: "";
    display: block;
    position: absolute;
    top: -79px;
    left: calc(50% - 960px);
    width: 1920px;
    height: 81px;
    background: url(../../img/common/footer_bg_top_pc.png) no-repeat 0 0/contain;
  }
  .footer_inner {
    position: relative;
    min-height: 200px;
    background: #fff5d9 url(../../img/common/footer_bg_pc.png) no-repeat center 0/1920px 200px;
  }
  .footer_shelf {
    position: relative;
    width: 1100px;
    margin: 0 auto;
  }
  .footer_logo {
    position: absolute;
    top: 40px;
    left: 132px;
    width: 236px;
    text-align: center;
  }
  .footer_logo img {
    display: block;
    margin-bottom: 3px;
  }
  .footer_logo_text {
    display: block;
    padding-left: 0.05em;
    font-size: 1.6rem;
  }
  .footer_nav_wrap {
    position: absolute;
    top: 49px;
    left: 549px;
    display: flex;
  }
  .footer_nav {
    margin-right: 15px;
  }
  .footer_nav a {
    display: block;
    min-width: 124px;
    padding: 3px;
  }
  .footer_nav a::before {
    content: "〉";
    display: inline-block;
    font-size: 1.4rem;
    margin-right: -0.05em;
  }
  .footer_nav_sub {
    position: absolute;
    top: 60px;
    right: 0;
  }
}
/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .ly_footer {
    position: relative;
    margin-top: 250px;
  }
  .ly_footer::before {
    content: "";
    display: block;
    position: absolute;
    top: -42px;
    left: calc(50% - 384px);
    width: 768px;
    height: 43px;
    background: url(../../img/common/footer_bg_top_sp.png) no-repeat 0 0/contain;
  }
  .footer_inner {
    position: relative;
    min-height: 200px;
    padding-top: 15px;
    background: #fff5d9 url(../../img/common/footer_bg_sp.png) no-repeat center 0/768px 200px;
  }
  .footer_logo {
    position: absolute;
    top: -165px;
    left: 0;
    right: 0;
    width: 236px;
    margin: 0 auto;
  }
  .footer_logo img {
    display: block;
    margin-bottom: 3px;
  }
  .footer_logo_text {
    display: block;
    padding-left: 0.05em;
    text-align: center;
    font-size: 1.6rem;
  }
  .footer_nav {
    display: none;
  }
  .footer_nav_sub {
    justify-content: center;
  }
  .footer_copyright {
    padding: 2px 0 5px;
  }
  .footer_copyright small {
    font-size: 1.1rem;
  }
}
/* ==========================================
Module / Block
========================================== */
/* =========================================
md_view
========================================= */
.md_view {
  opacity: 0;
}

.md_view.__fadeUp {
  transform: translateY(70px);
}

.md_view.__fadeDown {
  transform: translateY(-70px);
}

.md_view.__fadeLeft {
  transform: translateX(-70px);
}

.md_view.__fadeRight {
  transform: translateX(70px);
}

.md_view.is_view {
  opacity: 1;
  transition: opacity 1s ease, transform 1s ease;
}

.md_view.__fadeUp.is_view,
.md_view.__fadeDown.is_view,
.md_view.__fadeLeft.is_view,
.md_view.__fadeRight.is_view {
  transform: translate(0, 0);
}

/* ==========================================
helper - pc and sp setting
========================================== */
/* PC調整 ---------------------------- */
@media not screen and (max-width: 768px) {
  .sp_br,
  .sp_only {
    display: none !important;
  }
}
/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .pc_br,
  .pc_only {
    display: none !important;
  }
  .sp_noSpace {
    display: none;
  }
  .sp_brNoSpace {
    display: block;
    text-indent: -1em;
  }
  .sp_nowrap {
    white-space: nowrap;
  }
}
/* ==========================================
print
========================================== */
@page {
  size: A4 portrait;
  margin: 10mm;
}
@media print {
  body {
    position: relative;
    width: 1200px !important;
    page-break-after: always;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    zoom: 0.8;
  }
}