@charset "UTF-8";
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

RESET CSS

html5doctor.com Reset Stylesheet

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  width: 100%;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
} /* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
} /* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  padding: 0;
}

/* ------------------------- 使い方 ----------------------------------------------------------

    @include sizing(width, wide, 365px, sp, 276px);
    ==> width: clamp(276px, 7.46vw + 248px, 365px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を上限下限をつけて設定）

    @include sizing(width, wide, 365px, sp, 276px, noClamp);
    ==> width: calc(7.46vw + 248px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を設定）

    @include sizingRem(font-size, wide, 14px, sp, 12px);
    ==> font-size: clamp(0.75rem, 0.17vw + 0.70625rem, 0.875rem;
    （ビューポートがwide(1568px)のとき14px, sp(375px)のとき12pxになる自動補完値をremに変換して設定）
　　
    ※使いたいsassファイル上で@useしてください。
    ※scssファイル上での読みやすさ重視のため、mixinの引数に単位[px]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  99% {
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  99% {
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
  }
  100% {
    visibility: hidden;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
  }
  100% {
    visibility: hidden;
  }
}
/*
  Base
-----------------------------------------------------*/
*,
:before,
:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
  line-height: 2;
}

body {
  color: #000000;
  background-color: #FFF;
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-family: "Shippori Mincho", serif, sans-serif;
  font-weight: 500;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.035em;
}
@media screen and (min-width: 960px) {
  body {
    line-height: 2;
  }
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -ms-interpolation-mode: nearest-neighbor;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
}

video {
  max-width: 100%;
  height: auto;
}

a,
a:link,
a:visited {
  cursor: pointer;
}

:where(a) {
  color: inherit;
  text-decoration: none;
}

a:active,
a:hover {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
li {
  list-style-type: none;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  border: 0;
  line-height: 0;
  vertical-align: bottom;
}

svg {
  vertical-align: bottom;
}

hr {
  display: none;
}

table {
  margin: 0;
  padding: 0;
}

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

td {
  margin: 0;
}

em {
  font-weight: bold;
  font-style: normal;
}

form {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
  padding: 0;
}

input.btn {
  margin: 0 0.5em;
  padding: 0 1em;
}

button {
  border: none;
  font: inherit;
  line-height: inherit;
  background: none;
  margin: 0;
}

/* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

/*
header
-----------------------------------------------------*/
.l-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding-inline: clamp(1rem, 4.07vw + 0.04375rem, 2rem);
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .l-header {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    padding-block: 2.0625rem;
  }
}
@media screen and (max-width: 959px) {
  .l-header {
    height: 80px;
    padding-top: 1rem;
  }
  .en .l-header {
    padding-bottom: 1rem;
  }
}
.en .l-header {
  align-items: center;
  padding-inline: clamp(0.75rem, 5.09vw - 0.44375rem, 2rem);
}
.l-header__head {
  display: flex;
  gap: 5px 1rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .l-header__head {
    flex-direction: column;
    margin-right: 120px;
  }
  .en .l-header__head {
    margin-right: 130px;
  }
}
.en .l-header__head {
  align-items: center;
}
.l-header__logo {
  position: relative;
  z-index: 10;
  -webkit-transition: 0.3s width;
  transition: 0.3s width;
}
.en .l-header__logo {
  font-size: clamp(0.9375rem, 1.54vw + 0.575rem, 1.5rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: normal;
}
.l-header__logo a {
  display: block;
}
@media (any-hover: hover) {
  .l-header__logo a {
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
  }
  .l-header__logo a:hover {
    opacity: 0.7;
  }
}
.l-header__logo img {
  display: block;
}
@media screen and (min-width: 960px) {
  .l-header__logo img {
    width: 18.75rem;
  }
}
.l-header__topic {
  padding-inline: 0.25rem;
  border: 1px solid;
  font-size: 0.625rem;
  line-height: normal;
}
@media screen and (min-width: 960px) {
  .l-header__topic {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1280px) {
  .l-header__topic {
    font-size: 1rem;
  }
}
.l-header-mainmenu {
  flex-shrink: 0;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 959px) {
  .l-header-mainmenu {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100svh;
    padding-top: 60px;
    background: #fff;
    -webkit-animation: fade-out 0.2s linear forwards;
            animation: fade-out 0.2s linear forwards;
    overflow-y: scroll;
  }
  @starting-style {
    .l-header-mainmenu {
      opacity: 0;
      visibility: hidden;
    }
  }
  .l-header-mainmenu.-open {
    -webkit-animation: fade-in 0.3s linear forwards;
            animation: fade-in 0.3s linear forwards;
  }
}
@media screen and (min-width: 960px) {
  .l-header-mainmenu {
    zoom: 0.85;
  }
}
@media screen and (min-width: 1280px) {
  .l-header-mainmenu {
    zoom: 1;
  }
}
.l-header-mainmenu__primary::after {
  content: "";
  display: block;
}
@media screen and (max-width: 959px) {
  .l-header-mainmenu__primary {
    margin-bottom: 1rem;
  }
  .l-header-mainmenu__primary::after {
    width: 1.125rem;
    border-top: 1px solid;
  }
}
@media screen and (min-width: 768px) {
  .l-header-mainmenu__primary {
    align-items: center;
    margin-right: 1rem;
  }
  .l-header-mainmenu__primary::after {
    height: 1.125rem;
    border-right: 1px solid;
  }
}
.l-header-nav {
  display: flex;
}
@media screen and (max-width: 959px) {
  .l-header-nav {
    flex-grow: 1;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (min-width: 960px) {
  .l-header__image {
    display: none;
  }
}
.l-header__image img {
  width: 100%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-header-buttons {
  position: fixed;
  top: 15px;
  right: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  -webkit-column-gap: 0.5625rem;
     -moz-column-gap: 0.5625rem;
          column-gap: 0.5625rem;
}
.en .l-header-buttons {
  top: 20px;
}
@media screen and (min-width: 768px) {
  .l-header-buttons {
    top: 23px;
  }
}
.l-header__reserve {
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-header__reserve {
    position: fixed;
    right: 10px;
    bottom: 10px;
  }
}
.l-header__reserve a {
  display: block;
  padding: 0.25rem 0.625rem;
  background: #000000;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
@media screen and (min-width: 960px) {
  .l-header__reserve a:not(.en .l-header__reserve a) {
    width: 40px;
    height: 150px;
    padding: 0;
    background: url(../img/common/button-reserve.png) no-repeat;
    font-size: 0;
  }
}
@media (any-hover: hover) {
  .l-header__reserve a {
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
  }
  .l-header__reserve a:hover {
    opacity: 0.7;
  }
}
.en .l-header__reserve a {
  display: flex;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1818181818;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .en .l-header__reserve a {
    flex-direction: column;
  }
}
@media screen and (min-width: 960px) {
  .en .l-header__reserve a {
    -webkit-column-gap: 0.5em;
       -moz-column-gap: 0.5em;
            column-gap: 0.5em;
    padding: 0.3125rem 0.625rem;
    font-size: 1.0625rem;
    line-height: normal;
  }
}

@media screen and (min-width: 960px) {
  .c-drawer-btn {
    display: none;
  }
}
.c-drawer-btn {
  position: relative;
  z-index: 10;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 1px solid #000000;
  border-radius: 100vmax;
  cursor: pointer;
}
.c-drawer-btn::before, .c-drawer-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 1.125rem;
  height: 1px;
  background: #000000;
}
.c-drawer-btn::before {
  top: 12px;
  -webkit-transition: top 0.2s 0.2s, -webkit-transform 0.2s 0s;
  transition: top 0.2s 0.2s, -webkit-transform 0.2s 0s;
  transition: top 0.2s 0.2s, transform 0.2s 0s;
  transition: top 0.2s 0.2s, transform 0.2s 0s, -webkit-transform 0.2s 0s;
}
.c-drawer-btn::after {
  top: 16px;
  -webkit-transition: top 0.2s 0.2s, -webkit-transform 0.2s 0s;
  transition: top 0.2s 0.2s, -webkit-transform 0.2s 0s;
  transition: top 0.2s 0.2s, transform 0.2s 0s;
  transition: top 0.2s 0.2s, transform 0.2s 0s, -webkit-transform 0.2s 0s;
}
.c-drawer-btn.-open::before {
  top: 14px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transition: top 0.2s 0.2s, -webkit-transform 0.2s 0.5s;
  transition: top 0.2s 0.2s, -webkit-transform 0.2s 0.5s;
  transition: top 0.2s 0.2s, transform 0.2s 0.5s;
  transition: top 0.2s 0.2s, transform 0.2s 0.5s, -webkit-transform 0.2s 0.5s;
}
.c-drawer-btn.-open::after {
  top: 14px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-transition: top 0.2s 0.2s, -webkit-transform 0.2s 0.5s;
  transition: top 0.2s 0.2s, -webkit-transform 0.2s 0.5s;
  transition: top 0.2s 0.2s, transform 0.2s 0.5s;
  transition: top 0.2s 0.2s, transform 0.2s 0.5s, -webkit-transform 0.2s 0.5s;
}

/*
footer
-----------------------------------------------------*/
.l-footer {
  display: -ms-grid;
  display: grid;
  padding: 34px 25px 0;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 37px 54px 0;
  }
}
@media screen and (min-width: 1280px) {
  .l-footer {
    -ms-grid-columns: auto auto 1fr;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
  .en .l-footer {
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
  }
}
.en .l-footer {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .en .l-footer {
    font-size: 1.125rem;
  }
}
.en .l-footer__logo {
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .en .l-footer__logo {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1279px) {
  .l-footer__logo {
    margin-bottom: 1rem;
  }
}
.l-footer__logo img {
  display: block;
}
.l-footer__media .c-link {
  font-size: inherit;
}
@media screen and (max-width: 767px) {
  .l-footer__media .c-link {
    margin-top: 1.1875rem;
    font-size: 0.8125rem;
  }
}
.en .l-footer__address {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1em;
}
@media screen and (min-width: 1280px) {
  .en .l-footer__address {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}
.l-footer__copyright {
  display: block;
  margin-block: 2.5rem;
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    margin-block: 4rem 2rem;
  }
}

/*
 main
-----------------------------------------------------*/
.l-main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: clamp(25px, 6.6666666667vw, 128px) 1fr clamp(25px, 6.6666666667vw, 128px);
  grid-template-columns: clamp(25px, 6.6666666667vw, 128px) 1fr clamp(25px, 6.6666666667vw, 128px);
  overflow-x: clip;
}
@media screen and (min-width: 960px) {
  .l-main {
    -ms-grid-columns: 128px 1fr 128px;
    grid-template-columns: 128px 1fr 128px;
  }
}
.l-main > * {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}

/*
 section
-----------------------------------------------------*/
.l-section {
  padding-top: 60px;
}
.en .l-section {
  padding-top: 42px;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding-top: 173px;
  }
  .en .l-section {
    padding-top: 126px;
  }
}

/*
 container
-----------------------------------------------------*/
.l-container.-primary {
  width: min(100%, 1500px);
  margin-inline: auto;
}
.l-container.-secondary {
  max-width: 1200px;
  margin-inline: auto;
}

/*
spacer
-----------------------------------------------------*/
.l-spacer.-medium {
  padding-top: 100px;
}
.l-spacer.-small {
  padding-top: 3vw;
}
.l-spacer.-em1 {
  margin-top: 1em;
}
.l-spacer.-em2 {
  margin-top: 2em;
}
.l-spacer.-em3 {
  margin-top: 3em;
}

/*
category
-----------------------------------------------------*/
.c-category {
  font-size: 0.8rem;
}
.c-category a {
  margin-right: 1em;
  text-decoration: underline;
}
.c-category span {
  margin-right: 1em;
}

.c-category-list a {
  text-decoration: underline;
  margin-right: 2em;
}

/*
title
-----------------------------------------------------*/
.c-title-page-main {
  background: #DEDEDE;
  text-align: center;
  padding: 50px 0;
}
.c-title-page-main__title {
  font-size: 2rem;
}

.en .c-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .en .c-section-title {
    font-size: 2rem;
  }
}

.c-title-has-img img {
  width: 100%;
}

/*
text
-----------------------------------------------------*/
.c-text-center {
  text-align: center;
}

.c-text-vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

/*
link
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .c-phone-link {
    pointer-events: none;
  }
}

.c-link {
  display: inline-block;
  font-size: 0.8125rem;
}
.c-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
  position: relative;
  top: calc((1em - 1lh) / 2 + 0.25em);
  opacity: 1;
  -webkit-transition: 0.2s ease-out all;
  transition: 0.2s ease-out all;
}
@media (any-hover: hover) {
  .c-link:hover::after {
    opacity: 0;
  }
}
.c-link-pdf {
  padding-right: 1.25rem;
  background: url(../img/common/icon-pdf.svg) no-repeat right center/0.86328125rem 1.015625rem;
}
@media screen and (min-width: 768px) {
  .c-link-pdf {
    padding-right: 1.5rem;
    background-size: 1.0625rem 1.25rem;
  }
}

/*button
-----------------------------------------------------*/
.c-button--more {
  display: inline-block;
  text-align: center;
  padding: 1rem 5rem;
  background: #333;
  color: #FFF;
}

.c-button {
  display: inline-block;
  padding: 1rem 1.5rem;
  background: #000000;
  color: #fff;
  line-height: normal;
  text-align: center;
}
@media (any-hover: hover) {
  .c-button {
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
  }
  .c-button:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c-button {
    width: 100%;
  }
}
.c-button.-reverse {
  background: #fff;
  color: #000000;
}

/*
list
-----------------------------------------------------*/
.c-list--dot__item {
  padding-left: 2em;
  position: relative;
}
.c-list--dot__item::before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
}

.c-list--num {
  counter-reset: listnum;
}
.c-list--num > li {
  counter-increment: listnum;
  padding-left: 2em;
}
.c-list--num > li + li {
  margin-top: 1em;
}
.c-list--num > li::before {
  content: counter(listnum) ".";
  width: 2em;
  margin-left: -2em;
  display: inline-block;
}

/*
gmenu
-----------------------------------------------------*/
.c-gmenu-primary {
  display: flex;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media screen and (max-width: 959px) {
  .c-gmenu-primary {
    flex-direction: column;
    row-gap: 1rem;
    align-items: center;
  }
}
.c-gmenu-primary__item a {
  display: inline-block;
  padding-inline: 0.5em;
  line-height: normal;
}
.c-gmenu-primary__item a:not(.en .c-gmenu-primary__item a) {
  font-size: 1.125rem;
}
.c-gmenu-primary__item a.--disabled {
  pointer-events: none;
  color: #DCDCDC;
}
@media screen and (max-width: 959px) {
  .c-gmenu-primary__item a {
    padding-block: 0.5em;
    line-height: normal;
  }
}
@media screen and (min-width: 768px) {
  .c-gmenu-primary__item a::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    margin-inline: auto;
    background: transparent;
    border-radius: 100vmax;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    -webkit-transition: 0.5s background-color, 0.3s -webkit-transform;
    transition: 0.5s background-color, 0.3s -webkit-transform;
    transition: 0.5s background-color, 0.3s transform;
    transition: 0.5s background-color, 0.3s transform, 0.3s -webkit-transform;
  }
}
@media screen and (min-width: 768px) {
  .c-gmenu-primary__item a.-current::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    background: #000000;
  }
}
@media (any-hover: hover) {
  .c-gmenu-primary__item a:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    background: #000000;
  }
}

/*
 mainvisual
-----------------------------------------------------*/
.c-mainvisual {
  position: relative;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
}
.c-mainvisual > div {
  position: relative;
  width: 85%;
}
@media screen and (min-width: 768px) {
  .c-mainvisual > div {
    width: 75.5102040816vw;
  }
}
.c-mainvisual__copy {
  position: absolute;
  top: 50%;
  right: min(14.1333333333vw, 213px);
  translate: 0 -55%;
  z-index: 3;
}
.c-mainvisual__copy:not(.en .c-mainvisual__copy) {
  width: clamp(16px, 3.3854166667vw, 26px);
}
.en .c-mainvisual__copy {
  right: clamp(1.25rem, 7.7vw - 0.55625rem, 6.375rem);
  color: #fff;
  font-size: clamp(0.875rem, 1.13vw + 0.60625rem, 1.625rem);
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
.c-mainvisual__copy img {
  width: 100%;
}
.c-mainvisual__img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-mainvisual__img {
    width: 100%;
    height: max(560px, 35.7142857143vw);
  }
}
.c-mainvisual__img-sub {
  position: relative;
  z-index: 1;
  display: block;
  width: min(40vw, 352px);
  margin-top: -20px;
  margin-inline: auto 0;
}
@media screen and (min-width: 768px) {
  .c-mainvisual__img-sub:not(.en .c-mainvisual__img-sub) {
    position: absolute;
    top: max(420px, 26.7857142857vw);
    right: 0;
  }
  .c-mainvisual__img-sub {
    width: min(34.375vw, 352px);
  }
}
@media screen and (min-width: 960px) {
  .c-mainvisual__img-sub:not(.en .c-mainvisual__img-sub) {
    right: auto;
    left: 69.387755102vw;
  }
}
@media screen and (min-width: 1280px) {
  .en .c-mainvisual__img-sub {
    position: absolute;
    top: max(420px, 26.7857142857vw);
    left: 69.387755102vw;
  }
}
@media screen and (min-width: 1280px) {
  .c-mainvisual__img-sub {
    width: max(352px, 22.4489795918vw);
  }
}

/*
breadcrumb
-----------------------------------------------------*/
.c-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8rem;
  margin: 1em 0;
}
.c-breadcrumb__item {
  flex-shrink: 0;
}
.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: ">";
  margin: 0 0.5em;
}

/*
title
-----------------------------------------------------*/
.c-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 5em;
  position: relative;
}
.c-pagination .page-numbers {
  width: 2em;
  height: 2em;
  border: 1px solid;
  text-align: center;
  line-height: 2em;
  margin: 5px;
  flex-shrink: 0;
}
.c-pagination .page-numbers.current {
  background: #333;
  color: #FFF;
}
.c-pagination .page-numbers.prev, .c-pagination .page-numbers.next {
  width: auto;
  border: none;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-pagination .page-numbers.prev {
  left: 0;
}
.c-pagination .page-numbers.next {
  right: 0;
}

.c-post-pagination {
  display: flex;
  justify-content: center;
  padding: 0 5em;
  position: relative;
}
.c-post-pagination a[rel=prev],
.c-post-pagination a[rel=next] {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-post-pagination a[rel=prev] {
  left: 0;
}
.c-post-pagination a[rel=next] {
  right: 0;
}

/*
loading
-----------------------------------------------------*/
.c-loading {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  background: #FFF;
  z-index: 9999;
}

/*news
-----------------------------------------------------*/
.p-news-card__thumbnail {
  margin-bottom: 1rem;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-news-card__title {
  font-size: 1.25rem;
}
.p-news-card__date {
  font-size: 0.8rem;
}
.p-news-card__info {
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding: 1em 0;
  margin-top: 1em;
  font-size: 0.8rem;
}
.p-news-card__bottom-link {
  margin: 5em auto 0;
  text-align: center;
  width: 300px;
  display: block;
}

.p-news-list {
  display: -ms-grid;
  display: grid;
  gap: 2rem;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

/*post
-----------------------------------------------------*/
.p-post-head {
  margin-bottom: 1.5em;
}
.p-post-head__title {
  font-size: 2rem;
  font-weight: bold;
}
.p-post-head__date {
  font-size: 0.8rem;
}

.p-post-body h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.p-post-body h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.p-post-body h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.p-post-body h5 {
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.p-post-body img {
  margin-bottom: 2em;
}
.p-post-body a {
  text-decoration: underline;
}

/*form
-----------------------------------------------------*/
.p-form label + label {
  margin-top: 2rem;
}
.p-form input[type=text],
.p-form input[type=email],
.p-form input[type=number],
.p-form input[type=tel],
.p-form select,
.p-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-weight: inherit;
  border: none;
  padding: 1em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  border: 1px solid #DEDEDE;
}
.p-form select {
  background: #FFF url(../img/common/icon-down.svg) no-repeat right 1em top 1.5em/0.8em auto;
  line-height: 1.5;
}
.p-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item,
.p-form .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
  display: block;
}
.p-form .wpcf7-form-control.wpcf7-radio input,
.p-form .wpcf7-form-control.wpcf7-checkbox input {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}
.p-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label,
.p-form .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item-label {
  padding-left: 1.5em;
  display: block;
}
.p-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label::before,
.p-form .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item-label::before {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  border: none;
  background: #FFF;
  vertical-align: middle;
  margin-right: 0.5em;
  margin-left: -1.5em;
}
.p-form .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item-label::before {
  background: url(../img/common/check-off.svg) no-repeat center center/100% 100%;
}
.p-form .wpcf7-form-control.wpcf7-checkbox input:checked + .wpcf7-list-item-label::before {
  background-image: url(../img/common/check-on.svg);
}
.p-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label::before {
  background: url(../img/common/radio-off.svg) no-repeat center center/100% 100%;
}
.p-form .wpcf7-form-control.wpcf7-radio input:checked + .wpcf7-list-item-label::before {
  background-image: url(../img/common/radio-on.svg);
}
.p-form .wpcf7-submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  width: 300px;
  background: #333;
  color: #FFF;
  text-align: center;
  padding: 1em 2em;
  margin: 2em auto 0;
  display: block;
}

/*front-page
-----------------------------------------------------*/
.p-top-intro {
  display: flex;
  flex-direction: row-reverse;
  -webkit-column-gap: min(17.6vw, 66px);
     -moz-column-gap: min(17.6vw, 66px);
          column-gap: min(17.6vw, 66px);
  justify-content: center;
  position: relative;
  max-width: 1050px;
  margin-inline: auto;
}
.p-top-intro:not(.en .p-top-intro) {
  padding-block: 2.75rem 6.5625rem;
}
@media screen and (max-width: 767px) {
  .en .p-top-intro {
    flex-direction: column;
    align-items: end;
    row-gap: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-intro {
    -webkit-column-gap: min(4.8469387755vw, 76px);
       -moz-column-gap: min(4.8469387755vw, 76px);
            column-gap: min(4.8469387755vw, 76px);
    justify-content: flex-end;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-top-intro:not(.en .p-top-intro) {
    padding-top: 94px;
  }
}
.p-top-intro__title {
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-top-intro__title {
    width: 90px;
  }
}
.p-top-intro__text {
  font-size: min(4.2666666667vw, 16px);
}
.p-top-intro__text:not(.en .p-top-intro__text) {
  line-height: 1.875;
  -webkit-transform: scaleX(1.05);
          transform: scaleX(1.05);
  margin-top: 27px;
}
@media screen and (max-width: 767px) {
  .p-top-intro__text:not(.en .p-top-intro__text) {
    -webkit-margin-after: calc((1em - 1lh) / 2);
            margin-block-end: calc((1em - 1lh) / 2);
  }
}
.en .p-top-intro__text {
  font-size: min(4vw, 15px);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .en .p-top-intro__text {
    font-size: clamp(16px, 1.2755102041vw, 20px);
    max-width: 29.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-intro__image:not(.en .p-top-intro__image) {
    position: absolute;
    right: 30px;
    bottom: 0;
  }
}
.p-top-intro__image {
  width: min(22.4vw, 200px);
}
@media screen and (min-width: 768px) {
  .p-top-intro__image {
    margin-top: 134px;
    margin-right: min(2.5510204082vw, 40px);
  }
}

.p-top-arumono:not(.en .p-top-arumono) {
  display: flex;
  -webkit-column-gap: min(11.7333333333vw, 44px);
     -moz-column-gap: min(11.7333333333vw, 44px);
          column-gap: min(11.7333333333vw, 44px);
  justify-content: space-between;
}
.l-section:has(.p-top-arumono) {
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .l-section:has(.p-top-arumono) {
    padding-bottom: 9rem;
  }
}
.p-top-arumono__title {
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-top-arumono__title {
    width: 33px;
  }
}
.p-top-arumono-section {
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-top-arumono-section {
    -ms-grid-rows: auto auto 1fr;
    grid-template-rows: auto auto 1fr;
    -ms-grid-columns: min(28.5714285714vw, 28rem) 1fr;
    grid-template-columns: min(28.5714285714vw, 28rem) 1fr;
    -webkit-column-gap: min(4.0816326531vw, 4rem);
       -moz-column-gap: min(4.0816326531vw, 4rem);
            column-gap: min(4.0816326531vw, 4rem);
  }
}
.p-top-arumono-section__wrap {
  display: -ms-grid;
  display: grid;
  row-gap: 40px;
  width: min(67.4107142857vw, 1057px);
  margin-top: 40px;
}
.en .p-top-arumono-section__wrap {
  margin-top: 30px;
  margin-inline: auto 0;
}
@media screen and (min-width: 768px) {
  .p-top-arumono-section__wrap {
    row-gap: 90px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    padding-right: min(3.9540816327vw, 62px);
  }
}
@media screen and (min-width: 768px) {
  .p-top-arumono-section > *:not(.p-top-arumono-section__image) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
}
.p-top-arumono-section__title {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-top-arumono-section__title {
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-arumono-section__title {
    font-size: 1.5rem;
  }
}
.p-top-arumono-section__text {
  margin-bottom: 1em;
  line-height: 1.8461538462;
}
@media screen and (max-width: 767px) {
  .p-top-arumono-section__text {
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-arumono-section__text {
    line-height: 1.875;
  }
  .en .p-top-arumono-section__text {
    line-height: 1.5;
  }
}
.p-top-arumono-section__image {
  order: -1;
}
@media screen and (min-width: 768px) {
  .p-top-arumono-section__image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/4;
  }
}
.p-top-arumono-section__image img {
  width: 100%;
}

.l-section:has(.p-top-totonou) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: clamp(25px, 6.6666666667vw, 128px) 1fr clamp(25px, 6.6666666667vw, 128px);
  grid-template-columns: clamp(25px, 6.6666666667vw, 128px) 1fr clamp(25px, 6.6666666667vw, 128px);
  padding-bottom: 37px;
  background: url(../img/top/img-totonou_bg.jpg) top 0 right 20%/cover;
}
@media screen and (min-width: 768px) {
  .l-section:has(.p-top-totonou) {
    padding-block: min(10.9375vw, 84px);
  }
}
.p-top-totonou {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  width: min(600px, 100%);
  margin-inline: auto;
}
@media screen and (max-width: 959px) {
  .p-top-totonou {
    overflow-x: auto;
  }
}
@media screen and (min-width: 960px) {
  .p-top-totonou {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: min(38.7755102041vw, 608px) calc(min(71.3647959184vw, 1119px) - min(38.7755102041vw, 608px));
    grid-template-columns: min(38.7755102041vw, 608px) calc(min(71.3647959184vw, 1119px) - min(38.7755102041vw, 608px));
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
    justify-content: center;
    max-width: 100%;
    margin-inline: auto;
  }
}
.p-top-totonou__title {
  margin-bottom: 18px;
}
.p-top-totonou__title:not(.en .p-top-totonou__title) {
  width: 45px;
}
.en .p-top-totonou__title {
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .en .p-top-totonou__title {
    margin-bottom: 3.5rem;
  }
}
@media screen and (max-width: 959px) {
  .p-top-totonou__title {
    margin-inline: auto 0;
  }
}
@media screen and (min-width: 960px) {
  .p-top-totonou__title {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row-align: center;
        align-self: center;
    -ms-grid-column-align: center;
        justify-self: center;
    translate: 15px 0;
  }
  .p-top-totonou__title:not(.en .p-top-totonou__title) {
    width: 53px;
    margin-left: 44px;
  }
}
@media screen and (min-width: 960px) {
  .p-top-totonou-detail {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row-align: end;
        align-self: end;
  }
}
.p-top-totonou-detail__image img {
  width: 100%;
  aspect-ratio: 304/203;
}
.p-top-totonou-detail__title {
  margin-block: 1.25rem 0.875rem;
  font-size: 1.125rem;
  font-weight: 600;
}
.en .p-top-totonou-detail__title {
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-top-totonou-detail__title {
    margin-block: 2rem 1.375rem;
    font-size: 1.5rem;
    line-height: normal;
  }
}
.p-top-totonou-detail__text {
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top-totonou-detail__text {
    font-size: 0.8125rem;
    line-height: 1.8461538462;
  }
}
.p-top-totonou-detail .swiper-pagination {
  bottom: auto;
  bottom: 1rem;
  line-height: 1;
}
.p-top-totonou-detail .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  margin-inline: 0.5rem !important;
  background: none;
  border: 1px solid #fff;
}
.p-top-totonou-detail .swiper-pagination-bullet-active {
  background-color: #D9D9D9;
}
.p-top-totonou__body {
  color: #fff;
}
@media screen and (max-width: 959px) {
  .p-top-totonou__body {
    padding-bottom: 1.25rem;
  }
}
@media screen and (min-width: 960px) {
  .p-top-totonou__body {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
}
@media screen and (min-width: 960px) {
  .p-top-totonou__link {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row-align: center;
        align-self: center;
    -ms-grid-column-align: center;
        justify-self: center;
    margin-left: 44px;
  }
}

.p-top-journal {
  display: -ms-grid;
  display: grid;
}
.l-section:has(.p-top-journal) {
  padding-bottom: 105px;
}
@media screen and (min-width: 768px) {
  .l-section:has(.p-top-journal) {
    padding-bottom: 117px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-journal {
        grid-template-areas: "title img" "articles articles";
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .p-top-journal {
    -ms-grid-columns: auto min(18.3673469388vw, 288px) 1fr;
    grid-template-columns: auto min(18.3673469388vw, 288px) 1fr;
    -webkit-column-gap: min(8.1632653061vw, 128px);
       -moz-column-gap: min(8.1632653061vw, 128px);
            column-gap: min(8.1632653061vw, 128px);
  }
}
@media screen and (max-width: 767px) {
  .p-top-journal__title {
    grid-area: title;
  }
}
@media screen and (min-width: 768px) {
  .p-top-journal__title {
    width: 32px;
  }
}
.p-top-journal__image {
  width: min(41.8666666667vw, 288px);
}
@media screen and (max-width: 767px) {
  .p-top-journal__image {
    grid-area: img;
    -ms-grid-column-align: end;
        justify-self: end;
    margin-right: calc(clamp(25px, 6.6666666667vw, 128px) * -1);
  }
}
@media screen and (min-width: 768px) {
  .p-top-journal__image {
    width: min(18.3673469388vw, 288px);
  }
}
@media screen and (max-width: 767px) {
  .p-top-journal__articles {
    grid-area: articles;
  }
}
@media screen and (max-width: 767px){
  .p-top-journal__title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-top-journal__image {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .p-top-journal__articles {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
}
.p-top-journal-list {
  display: -ms-grid;
  display: grid;
  row-gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-journal-list {
    margin-top: 4.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-journal-list {
    margin-bottom: 5.875rem;
  }
}
.p-top-journal-article__title {
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: underline;
}
.p-top-journal-article__excerpt {
  font-size: 0.8125rem;
  line-height: 1.7692307692;
}
@media screen and (min-width: 768px) {
  .p-top-journal-article__excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
  }
}
@media (any-hover: hover) {
  .p-top-journal-article a {
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
  }
  .p-top-journal-article a:hover {
    opacity: 0.7;
  }
}
.p-top-journal__link {
  text-align: right;
}

.l-section:has(.p-bottom) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  padding-block: 40px;
  padding-inline: clamp(25px, 6.6666666667vw, 128px);
  background: #DEDEDE;
}
@media screen and (min-width: 768px) {
  .l-section:has(.p-bottom) {
    padding-block: 92px;
  }
}
.p-bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
}
@media screen and (min-width: 768px) {
  .p-bottom:not(.en .p-bottom) {
    -ms-grid-columns: 1fr auto 1fr;
    grid-template-columns: 1fr auto 1fr;
    -ms-grid-rows: (1fr)[2];
    grid-template-rows: repeat(2, 1fr);
    -webkit-column-gap: min(7.6530612245vw, 120px);
       -moz-column-gap: min(7.6530612245vw, 120px);
            column-gap: min(7.6530612245vw, 120px);
  }
}
@media screen and (min-width: 768px) {
  .en .p-bottom {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .en .p-bottom {
    -ms-grid-columns: 1fr 340px 1fr;
    grid-template-columns: 1fr 340px 1fr;
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }
}
.p-bottom__copy {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 2/1/3/3;
  -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
  padding-block: 18.1333333333vw 12.5333333333vw;
}
@media screen and (max-width: 767px) {
  .p-bottom__copy {
    width: min(6.6666666667vw, 28px);
  }
}
@media screen and (min-width: 768px) {
  .p-bottom__copy {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/3/3;
    translate: 0 -90px;
  }
}
.p-bottom__en-copy {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 2/1/3/3;
  -ms-grid-column-align: center;
      justify-self: center;
  width: 80%;
  padding-block: 44px;
}
@media screen and (min-width: 1280px) {
  .p-bottom__en-copy {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    width: 100%;
    margin-top: 140px;
    padding-block: 0;
  }
}
.en .p-bottom__title {
  margin-bottom: 1.625rem;
}
@media screen and (min-width: 768px) {
  .en .p-bottom__title {
    font-size: 2rem;
  }
}
.p-bottom__subtitle {
  margin-bottom: 0.375rem;
  font-size: 1.125rem;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-bottom__subtitle {
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
  }
}
.p-bottom__text {
  margin-top: calc((1em - 1lh) / 2);
  font-size: 0.8125rem;
}
.p-bottom__image.--01 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
  width: min(42.6666666667vw, 388px);
}
@media screen and (min-width: 768px) {
  .p-bottom__image.--01:not(.en .p-bottom__image.--01) {
    -ms-grid-row-align: end;
        align-self: end;
    -ms-grid-column-align: center;
        justify-self: center;
    width: min(24.7448979592vw, 388px);
    margin-bottom: 22px;
  }
}
@media screen and (min-width: 1280px) {
  .en .p-bottom__image.--01 {
    -ms-grid-column-align: center;
        justify-self: center;
    width: min(24.7448979592vw, 388px);
    margin-top: 80px;
  }
}
.p-bottom__image.--02 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/3/3;
  -ms-grid-column-align: end;
      justify-self: end;
  width: min(25.3333333333vw, 190px);
  margin-top: 21.3333333333vw;
}
.en .p-bottom__image.--02 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
@media screen and (min-width: 768px) {
  .p-bottom__image.--02 {
    margin-top: 0;
  }
  .p-bottom__image.--02:not(.en .p-bottom__image.--02) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 1/3/2/4;
    width: min(12.1173469388vw, 190px);
    margin-right: 62px;
  }
  .en .p-bottom__image.--02 {
    margin-top: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .en .p-bottom__image.--02 {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    width: min(12.1173469388vw, 190px);
    margin-top: 0;
  }
}
.p-bottom__image.--03 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 3/1/4/2;
  width: min(19.4666666667vw, 125px);
  margin-top: 9.0666666667vw;
}
@media screen and (max-width: 767px) {
  .p-bottom__image.--03 {
    -ms-grid-row-align: end;
        align-self: end;
  }
}
@media screen and (min-width: 768px) {
  .p-bottom__image.--03:not(.en .p-bottom__image.--03) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
    -ms-grid-column-align: end;
        justify-self: end;
    width: min(7.9719387755vw, 125px);
  }
}
@media screen and (min-width: 1280px) {
  .en .p-bottom__image.--03 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-column-align: center;
        justify-self: center;
  }
}
.p-bottom__image.--04 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 3/2/4/3;
  width: min(34.6666666667vw, 296px);
}
.p-bottom__image.--04:not(.en .p-bottom__image.--04) {
  margin-left: 0.8vw;
}
@media screen and (min-width: 768px) {
  .p-bottom__image.--04:not(.en .p-bottom__image.--04) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 2/3/3/4;
    width: min(18.8775510204vw, 296px);
    margin-left: min(6.1862244898vw, 97px);
    margin-top: 28px;
  }
}
@media screen and (min-width: 1280px) {
  .en .p-bottom__image.--04 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
  }
}

.js-fade {
  opacity: 0;
  -webkit-transition: 1s opacity;
  transition: 1s opacity;
}
.js-fade.-delay1 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.js-fade.-delay2 {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}
.js-fade.-delay3 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.js-fade.-delay4 {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.js-fade.inview {
  opacity: 1;
}

/*
  Responsive
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .u-responsive-sp-visible {
    display: none;
  }
}

@media screen and (min-width: 960px) {
  .u-responsive-tab-visible {
    display: none;
  }
}

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

.u-responsive-tab-hidden {
  display: none;
}
@media screen and (min-width: 960px) {
  .u-responsive-tab-hidden {
    display: initial;
  }
}

/*
  Screen Reader Text
-----------------------------------------------------*/
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}
/*# sourceMappingURL=common.css.map */