@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@400;700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
  --default-text-color: #000;
}

/* --------------------------------------------------------------- */
/* reset start */
/* --------------------------------------------------------------- */
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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
}

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

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

blockquote,
q {
  quotes: none;
}

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

a {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: var(--default-text-color);
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
  }
}

del {
  text-decoration: line-through;
}

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

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

*,
*:after,
*:before {
  -webkit-appearance: none;
  word-break: break-all;
  box-sizing: border-box;
}

video {
  filter: contrast(1);
}

/* --------------------------------------------------------------- */
/* reset end */
/* --------------------------------------------------------------- */

/* タブレット(1081px以上)のみ非表示 */
@media print, screen and (min-width: 1080.01px) {
  .tab-off {
    display: none !important;
  }
}
/* PC(768px以上)のみ非表示 */
@media print, screen and (min-width: 767.01px) {
  .pc-off {
    display: none !important;
  }
}
/* スマホのみ非表示 */
@media screen and (max-width: 767px) {
  .sp-off {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    color: var(--default-text-color);
  }
}
@media screen and (min-width: 767.01px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

html {
  font-size: 62.5%;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: none;

  @media screen and (min-width: 1080.01px) and (max-width: 1919.99px) {
    font-size: calc(10 / 1919 * 100 * 1vw);
  }
  @media screen and (min-width: 767.01px) and (max-width: 1080px) {
    font-size: calc(12 / 1920 * 100 * 1vw);
  }
  @media screen and (max-width: 767px) {
    font-size: calc(10 / 375 * 100 * 1vw);
  }
}

body {
  font-size: 1.6rem;
  line-height: 1;
  overflow: auto;

  /* @media screen and (max-width: 767px) {
    font-size: 1.4rem;
  } */
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  @media screen and (max-width: 767px) {
    /* スマホ画像長押し禁止対策 */
    pointer-events: none;
  }
}

/* ------------------------------------------- */
/* 印刷用の設定 */
/* ------------------------------------------- */
@media print {
  html {
    font-size: calc(10 / 1919 * 100 * 14px);
  }
  body {
    -webkit-print-color-adjust: exact;
    position: relative;
    width: 1400px;
    zoom: 70%;
  }
}
@page {
  size: A4;
  margin: 10mm;
}

/* ------------------------------------------- */
/* デバッグ用：スクロールバーを0pxに
/* ------------------------------------------- */
.deve body {
  --sb-track-color: #ddd;
  --sb-thumb-color: #000;
  --sb-size: 0;
  /* scrollbar-color: var(--sb-thumb-color) var(--sb-track-color); */
  overflow-x: hidden;
}
.deve body::-webkit-scrollbar {
  width: var(--sb-size);
}
.deve body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 1px;
}
.deve body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 1px;
}

/* --------------------------------------------------------------- */
/* wrapper */
/* --------------------------------------------------------------- */
#wrapper {
  overflow: clip;
}

.menu-active {
  overflow: hidden;
}

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */
#header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;

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

  /* メニューボタン */
  .menu-btn {
    position: absolute;
    display: none;
    top: 0;
    right: 0;
    z-index: 9999;

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

    &:after {
      /* content: "MENU"; */
      content: "";
      position: absolute;
      left: 50%;
      bottom: 1.1rem;
      color: #e90000;
      font-weight: 500;
      letter-spacing: 0.05em;
      font-size: 1.1rem;
      transform: translateX(-50%);
      white-space: nowrap;
    }

    & a {
      position: relative;
      width: 10rem;
      height: 10rem;
      vertical-align: top;
      transition: ease 0.25s all;

      @media screen and (max-width: 767px) {
        width: 6.2rem;
        height: 6.2rem;
      }

      & span {
        position: absolute;
        left: 50%;
        top: 50%;
        display: block;
        margin-left: -1.8rem;
        width: 3.4rem;
        height: 0.2rem;
        background: #e90000;
        border-radius: 0.3rem;

        @media screen and (max-width: 767px) {
          margin-left: -1.4rem;
          width: 2.8rem;
          height: 0.2rem;
        }

        &:before,
        &:after {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background: #e90000;
          border-radius: 0.3rem;
          transition: ease 0.25s all;
        }

        &:before {
          margin-top: -1.1rem;
        }
        @media screen and (max-width: 767px) {
          &:before {
            margin-top: -0.7rem;
          }
        }
        &:after {
          margin-top: 1.1rem;
        }
        @media screen and (max-width: 767px) {
          &:after {
            margin-top: 0.7rem;
          }
        }
      }
    }
  }
}

@media screen and (max-width: 767px) {
  .nav {
    position: fixed;
    left: 100%;
    z-index: 999;
    width: 100%;
    pointer-events: none;
  }
}

.menu-active {
  #header {
    .menu-btn {
      /* position: fixed; */
      & a {
        background-color: #fff;
        & span {
          background-color: transparent;
          &:before {
            margin-top: 0;
            transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
          }
          &:after {
            margin-top: 0;
            transform: rotate(-45deg);
            -webkit-transform: rotate(-45deg);
          }
        }
      }
    }

    @media screen and (max-width: 767px) {
      .nav {
        left: 0;
        pointer-events: auto;
      }
    }
  }
}

/* --------------------------------------------------------------- */
/* breadcrumbs */
/* --------------------------------------------------------------- */
#breadcrumbs {
  padding: 2.4rem 0;

  @media screen and (max-width: 767px) {
    display: none;
  }
  & ol {
    display: flex;
    flex-wrap: wrap;
  }
  & li {
    position: relative;
    margin-right: 3.7rem;
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.1em;

    &:last-child {
      margin-right: 0;
      &:after {
        display: none;
      }
    }

    &:after {
      content: "";
      position: absolute;
      right: -2.7rem;
      top: 50%;
      z-index: 0;
      display: block;
      width: 1.4rem;
      height: 1px;
      background: #bcbcbc;
      &:last-child:after {
        display: none;
      }
    }
  }
  & a {
    text-decoration: underline;
    color: #7aa3c6;

    @media (hover: hover) and (pointer: fine) {
      &:hover {
        text-decoration: none;
      }
    }
  }
}

/* --------------------------------------------------------------- */
/* container */
/* --------------------------------------------------------------- */
#container {
}

/* --------------------------------------------------------------- */
/* contents */
/* --------------------------------------------------------------- */
#contents {
}

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */
#footer {
}

/* ------------------------------------------- */
/* inner config */
/* ------------------------------------------- */
.inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;

  @media screen and (max-width: 767px) {
    width: calc(100% - 3rem);
  }
}

.w720 {
  max-width: 72rem;
}
.w900 {
  max-width: 90rem;
}
.w960 {
  max-width: 96rem;
}
.w1080 {
  max-width: 108rem;
}
.w1200 {
  max-width: 120rem;
}
.w1440 {
  max-width: 144rem;
}

/* ------------------------------------------- */
/* align */
/* ------------------------------------------- */
.tar {
  text-align: right;
}
.tal {
  text-align: left;
}
.tac {
  text-align: center;
}

/* --------------------------------------------------------------- */
/* common parts */
/* --------------------------------------------------------------- */

/* ------------------------------------------- */
/* common-area */
/* ------------------------------------------- */
.common-area {
}

/* ------------------------------------------- */
/* common-title */
/* ------------------------------------------- */
.common-title {
}
/* type01 */
.common-title.type01 {
  text-align: center;
}

/* ------------------------------------------- */
/* common-btn */
/* ------------------------------------------- */
.common-btn {
}

/* ------------------------------------------- */
/* common-select */
/* ------------------------------------------- */
.common-select {
}

/* ------------------------------------------- */
/* common-list */
/* ------------------------------------------- */
.common-list {
}

/* ------------------------------------------- */
/* common-text */
/* ------------------------------------------- */
.common-text {
}

/* ------------------------------------------- */
/* common-table */
/* ------------------------------------------- */
.common-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;

  & p {
    margin-bottom: 2rem;
    &:last-child {
      margin-bottom: 0;
    }
  }
}
/* table-scroll */
@media screen and (max-width: 767px) {
  .table-scroll {
    position: relative;
    padding-bottom: 2rem;
    overflow-x: scroll;
    &:after {
      content: "←";
      position: absolute;
      right: 0;
      bottom: 0;
      z-index: 1;
      margin-left: -1.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      width: 3rem;
      height: 3rem;
      border-radius: 1.5rem;
      border: 0.1rem solid #000;
      animation: arrowtable 2s infinite forwards;
    }
    .common-table {
      width: 80rem;
    }
  }
}
@keyframes arrowtable {
  50% {
    opacity: 1;
    right: 0;
  }
  100% {
    opacity: 0;
    right: 100%;
  }
}

/* ------------------------------------------- */
/* アニメーション用 */
/* ------------------------------------------- */
/*
.moveFlag {
	position: relative;
	top: -5rem;
	opacity: 0;
	transition: ease 0.5s top, ease 0.5s opacity;
}
.moveFlag.on {
	top: 0;
	opacity: 1;
}
@media print {
	.moveFlag {
		top: 0;
		opacity: 1;
	}
}
*/

/* --------------------------------------------------------------- */
/*  margin padding */
/* --------------------------------------------------------------- */
.mb0 {
  margin-bottom: 0rem !important;
}
.mb10 {
  margin-bottom: 1rem !important;
}
.mb20 {
  margin-bottom: 2rem !important;
}
.mb30 {
  margin-bottom: 3rem !important;
}
.mb40 {
  margin-bottom: 4rem !important;
}
.mb50 {
  margin-bottom: 5rem !important;
}
.mb60 {
  margin-bottom: 6rem !important;
}
.mb70 {
  margin-bottom: 7rem !important;
}
.mb80 {
  margin-bottom: 8rem !important;
}
.mb90 {
  margin-bottom: 9rem !important;
}
.mb100 {
  margin-bottom: 10rem !important;
}

@media screen and (max-width: 767px) {
  .mb10 {
    margin-bottom: 0.5rem !important;
  }
  .mb20 {
    margin-bottom: 1rem !important;
  }
  .mb30 {
    margin-bottom: 1.5rem !important;
  }
  .mb40 {
    margin-bottom: 2rem !important;
  }
  .mb50 {
    margin-bottom: 2.5rem !important;
  }
  .mb60 {
    margin-bottom: 3rem !important;
  }
  .mb70 {
    margin-bottom: 3.5rem !important;
  }
  .mb80 {
    margin-bottom: 4rem !important;
  }
  .mb90 {
    margin-bottom: 4.5rem !important;
  }
  .mb100 {
    margin-bottom: 5rem !important;
  }
}

.mt0 {
  margin-top: 0rem !important;
}
.mt10 {
  margin-top: 1rem !important;
}
.mt20 {
  margin-top: 2rem !important;
}
.mt30 {
  margin-top: 3rem !important;
}
.mt40 {
  margin-top: 4rem !important;
}
.mt50 {
  margin-top: 5rem !important;
}
.mt60 {
  margin-top: 6rem !important;
}
.mt70 {
  margin-top: 7rem !important;
}
.mt80 {
  margin-top: 8rem !important;
}
.mt90 {
  margin-top: 9rem !important;
}

@media screen and (max-width: 767px) {
  .mt10 {
    margin-top: 0.5rem !important;
  }
  .mt20 {
    margin-top: 1rem !important;
  }
  .mt30 {
    margin-top: 1.5rem !important;
  }
  .mt40 {
    margin-top: 2rem !important;
  }
  .mt50 {
    margin-top: 2.5rem !important;
  }
  .mt60 {
    margin-top: 3rem !important;
  }
  .mt70 {
    margin-top: 3.5rem !important;
  }
  .mt80 {
    margin-top: 4rem !important;
  }
  .mt90 {
    margin-top: 4.5rem !important;
  }
  .mt100 {
    margin-top: 5rem !important;
  }
}

.pb0 {
  padding-bottom: 0 !important;
}
.pb10 {
  padding-bottom: 1rem !important;
}
.pb20 {
  padding-bottom: 2rem !important;
}
.pb30 {
  padding-bottom: 3rem !important;
}
.pb40 {
  padding-bottom: 4rem !important;
}
.pb50 {
  padding-bottom: 5rem !important;
}
.pb60 {
  padding-bottom: 6rem !important;
}
.pb70 {
  padding-bottom: 7rem !important;
}
.pb80 {
  padding-bottom: 8rem !important;
}
.pb90 {
  padding-bottom: 9rem !important;
}
.pb100 {
  padding-bottom: 10rem !important;
}
@media screen and (max-width: 767px) {
  .pb10 {
    padding-bottom: 0.5rem !important;
  }
  .pb20 {
    padding-bottom: 1rem !important;
  }
  .pb30 {
    padding-bottom: 1.5rem !important;
  }
  .pb40 {
    padding-bottom: 2rem !important;
  }
  .pb50 {
    padding-bottom: 2.5rem !important;
  }
  .pb60 {
    padding-bottom: 3rem !important;
  }
  .pb70 {
    padding-bottom: 3.5rem !important;
  }
  .pb80 {
    padding-bottom: 4rem !important;
  }
  .pb90 {
    padding-bottom: 4.5rem !important;
  }
  .pb100 {
    padding-bottom: 5rem !important;
  }
}

.pt0 {
  padding-top: 0 !important;
}
.pt10 {
  padding-top: 1rem !important;
}
.pt20 {
  padding-top: 2rem !important;
}
.pt30 {
  padding-top: 3rem !important;
}
.pt40 {
  padding-top: 4rem !important;
}
.pt50 {
  padding-top: 5rem !important;
}
.pt60 {
  padding-top: 6rem !important;
}
.pt70 {
  padding-top: 7rem !important;
}
.pt80 {
  padding-top: 8rem !important;
}
.pt90 {
  padding-top: 9rem !important;
}
.pt100 {
  padding-top: 10rem !important;
}
@media screen and (max-width: 767px) {
  .pt10 {
    padding-top: 0.5rem !important;
  }
  .pt20 {
    padding-top: 1rem !important;
  }
  .pt30 {
    padding-top: 1.5rem !important;
  }
  .pt40 {
    padding-top: 2rem !important;
  }
  .pt50 {
    padding-top: 2.5rem !important;
  }
  .pt60 {
    padding-top: 3rem !important;
  }
  .pt70 {
    padding-top: 3.5rem !important;
  }
  .pt80 {
    padding-top: 4rem !important;
  }
  .pt90 {
    padding-top: 4.5rem !important;
  }
  .pt100 {
    padding-top: 5rem !important;
  }
}

/* ------------------------------------------- */
/* pagination */
/* ------------------------------------------- */
.single-post-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 7rem;

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

  .back {
    margin: 0 8.3rem;
    @media screen and (max-width: 767px) {
      margin: 0 1rem;
    }
  }

  .prev,
  .next {
    width: 14rem;
    @media screen and (max-width: 767px) {
      width: 4.6rem;
    }
    & a {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      width: 100%;
      height: 4.6rem;
      font-weight: 500;
      text-decoration: underline;
      letter-spacing: 0.08rem;
      color: #000;
      box-sizing: border-box;

      @media screen and (max-width: 767px) {
        padding: 0;
        font-size: 0;
        color: transparent;
      }

      @media (hover: hover) and (pointer: fine) {
        &:hover {
          text-decoration: none;
        }
      }

      &:after {
        content: "";
        position: absolute;
        top: 50%;
        margin-top: -2.3rem;
        display: block;
        width: 4.6rem;
        height: 4.6rem;
        border-radius: 2.3rem;
        background-color: #2987d9;
      }
      @media (hover: hover) and (pointer: fine) {
        &:hover:after {
          background-color: #2987d9;
        }
      }
      @media screen and (max-width: 767px) {
        &:after {
          width: 4.8rem;
          height: 4.8rem;
          margin-top: -2.4rem;
          border-radius: 0;
        }
      }

      &:before {
        content: "";
        position: absolute;
        top: 50%;
        z-index: 1;
        margin-top: -0.4rem;
        display: block;
        width: 0.8rem;
        height: 0.8rem;
        border-top: 0.2rem solid #fff;
        box-sizing: border-box;
        transition: ease 0.25s border;
      }
    }
  }

  .prev {
    & a {
      padding-left: 7.3rem;
      &:after {
        left: 0;
      }
      &:before {
        left: 2.2rem;
        border-left: 0.2rem solid #fff;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
      }
      @media (hover: hover) and (pointer: fine) {
        &:hover:before {
          border-left-color: #fff;
        }
      }
    }
  }
  .next {
    & a {
      padding-right: 7.3rem;
      &:after {
        right: 0;
      }
      &:before {
        right: 2.2rem;
        border-right: 0.2rem solid #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
      }
    }
  }
}

/* navigation pagination */
.navigation.pagination {
  margin: 7rem 0 0;

  @media screen and (max-width: 767px) {
    margin: 3rem 0 0;
  }

  .disable {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    @media screen and (max-width: 767px) {
      position: relative;
      padding-bottom: 5rem;
    }
  }

  .pager {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 0.8rem;
    width: 4.4rem;
    height: 5rem;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    letter-spacing: 0.08em;
    color: #2987d9;
    background: #fff;
    text-decoration: none;
    transition: ease 0.25s all;
    /* border-radius: 0.4em; */
    border: 0.1rem solid #2987d9;

    @media screen and (max-width: 767px) {
      width: 3rem;
      height: 3rem;
    }

    @media (hover: hover) and (pointer: fine) {
      &:hover {
        color: #fff;
        background: #2987d9;
        border-color: #2987d9;
      }
    }
  }

  .pager.current {
    color: #fff;
    font-weight: bold;
    background: #2987d9;
    border-color: #2987d9;
  }

  .next,
  .prev {
    @media screen and (max-width: 767px) {
      /*position: absolute;*/
      /*bottom: 0;*/
      /*width: 48%;*/
      /*height: 4rem;*/
    }

    & a {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      width: 4.4rem;
      height: 5rem;
      font-size: 0;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      letter-spacing: 0.08em;
      text-decoration: none;
      color: #000;
      background: #fff;
      border: 0.1rem solid #2987d9;
      transition: ease 0.25s background, ease 0.25s color;

      @media screen and (max-width: 767px) {
        width: 2.8rem;
        height: 2.8rem;
      }

      @media (hover: hover) and (pointer: fine) {
        &:hover {
          color: #fff;
          background-color: #2987d9;
          &:after {
            border-top-color: #fff;
          }
        }
      }

      &:after {
        content: "";
        position: absolute;
        top: 50%;
        margin-top: -0.4rem;
        display: block;
        width: 0.8rem;
        height: 0.8rem;
        border-top: 0.1rem solid #2987d9;
        box-sizing: border-box;
        transition: ease 0.25s border;
      }
    }
  }

  .prev {
    @media screen and (min-width: 767.01px) {
      margin-right: 0.8rem;
    }
    @media screen and (max-width: 767px) {
      margin-right: 1rem;
    }
    & a {
      &:after {
        left: 50%;
        margin-left: -0.2rem;
        border-left: 0.1rem solid #2987d9;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
      }
      @media (hover: hover) and (pointer: fine) {
        &:hover:after {
          border-left-color: #fff;
        }
      }
    }
  }
  .next {
    @media screen and (min-width: 767.01px) {
      margin-left: 0.8rem;
    }
    @media screen and (max-width: 767px) {
      margin-left: 1rem;
      /*right: 0;*/
    }
    & a {
      &:after {
        right: 50%;
        margin-right: -0.2rem;
        border-right: 0.1rem solid #2987d9;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
      }
      @media (hover: hover) and (pointer: fine) {
        &:hover:after {
          border-right-color: #fff;
        }
      }
    }
  }
}

/* ------------------------------------------- */
/* wordpress パスワードフォーム調整用 */
/* ------------------------------------------- */

.post-password-form {
  padding: 100px 30px;
  line-height: 1.8;
  text-align: center;
}

/* --------------------------------------------------------------- */
/*  設定 */
/* --------------------------------------------------------------- */
:root {
  --color-black: #000;
  --color-white: #fff;

  --color-no1: #e4bf1d;
  --color-no2: #1f8a2f;
  --color-no3: #e4007f;
  --color-no4: #f39806;
  --color-no5: #940d83;
  --color-no6: #0fa599;
  --color-no7: #076ab6;
  --color-no8: #e40027;

  --font-body: "Noto Sans JP", sans-serif;
  --font-mincho: "Noto Serif JP", serif;
  --font-gothic: "BIZ UDGothic", sans-serif;

  --main-width: 100%;
  @media screen and (min-width: 768px) {
    --main-width: calc(740 / 1920 * 100vw);
  }
}

/* スクロール禁止 */
.is-locked {
  overflow: hidden !important;
  touch-action: none;
}

body {
  height: 100dvh;
  font-family: var(--font-body);
  color: var(--color-black);
  background-image: url(../img/bg-pc.jpg);
  background-size: auto 105%;
  background-repeat: no-repeat;
  background-position: center center;
  @media screen and (min-width: 768px) {
    display: grid;
    grid-template-rows: 100dvh auto;
    grid-template-columns: minmax(0, 1fr) var(--main-width) minmax(0, 1fr);
    grid-template-areas:
    "header main side"
    "footer footer footer";
    background-position: 50% center;
  }
}

img {
  width: 100%;
  height: 100%;
}

#header,
#aside {
  pointer-events: none;
  align-items: center;
  display: none;
  @media screen and (min-width: 768px) {
    display: flex;
    height: 100dvh;
  }
}

#header {
  position: relative;
  @media screen and (min-width: 768px) {
    grid-area: header;
  }
}

#aside {
  flex-direction: column;
  justify-content: center;
  @media screen and (min-width: 768px) {
    grid-area: side;
  }
  & .sinsotsu {
    margin-bottom: 1em;
    padding-bottom: 0;
    max-width: 95%;
    & .fukidashi {
      position: relative;
      z-index: -1;
      width: 43.2rem;
      padding-top: 4.2rem;
      translate: 1rem 0;
      & .text {
        font-size: 2.6rem;
      }
    }
    & .img-area {
      width: 45.6rem;
      margin: -6rem auto 0;
    }
    & .name-area {
      margin-top: -5.4rem;
      & .item {
        width: 18rem;
        & .item-inner {
          column-gap: 0.5rem;
          & .role {
            font-size: 1.7rem;
          }
          & .name-right {
            @media screen and (min-width: 768px) and (max-width: 1080px) {
              row-gap: 0.2em;
            }
            & .kana {
              font-size: 1rem;
            }
            & .name {
              font-size: 2.1rem;
            }
          }
        }
      }
    }
  }
  & .btn-intro {
    pointer-events: auto;
    width: 50rem;
    max-width: 88%;
  }
}

.main-wrapper {
  position: relative;
  z-index: 999;
  margin: 0 auto;
  width: var(--main-width);
  container-type: inline-size;
  container-name: sp-container;
  @media screen and (min-width: 768px) {
    overflow-y: auto;
    grid-area: main;
    scroll-behavior: smooth;
  }
}

#main {
  font-size: calc(10 / 375 * 100cqw);
  position: relative;
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
  }
  & .fix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    pointer-events: none;
    @media print {
      position: absolute;
    }
    & .icon-link {
      pointer-events: auto;
      width: 9em;
      aspect-ratio: 9/8;
    }
  }
}

/* --------------------------------------------------------------- */
/* btn  */
/* --------------------------------------------------------------- */
.btn-intro,
.btn-share,
.btn-sofcom {
  position: relative;
  display: block;
  margin-top: 2.4em;
  margin-inline: auto;
  width: 33.1em;
  aspect-ratio: 331/137;
  &::before {
    content: "";
    position: absolute;
    top: 0.3em;
    left: 0.3em;
    width: 100%;
    height: 100%;
    background: url(../img/intro-shadow.png) no-repeat center center/contain;
    transition: translate 0.25s ease;
  }
  & .btn-img {
    position: relative;
    z-index: 1;
    transition: translate 0.25s ease;
  }
  @media (hover: hover) and (pointer: fine) {
    &:hover {
      cursor: pointer;
      &::before {
        translate: 0.3em 0.3em;
      }
      & .btn-img {
        translate: -0.3em -0.3em;
      }
    }
  }
}

.btn-sofcom {
  pointer-events: auto;
  width: 40.9rem;
  &::before {
    background: url(../img/left-shadow.png) no-repeat center center/contain;
  }
}

.btn-share {
  &::before {
    background: url(../img/share-shadow.png) no-repeat center center/contain;
  }
}

.btn-start {
  position: relative;
  padding-bottom: 1.6em;
  aspect-ratio: 375/146;
  @media (hover: hover) and (pointer: fine) {
    &:hover {
      cursor: pointer;
    }
  }
  & .start-grad {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    & svg {
      width: 100%;
      height: 100%;
    }
  }
  & .start-box {
    position: relative;
    z-index: 1;
    width: 36.4em;
    aspect-ratio: 364/128;
    margin-left: auto;
    translate: 0.2em 0;
    & .hand {
      position: absolute;
      top: 6.3em;
      left: 13.3em;
      width: 8em;
      animation: hand-scale forwards 1s infinite ease-in-out 0s alternate;
    }
  }
}

@keyframes hand-scale {
  0% {
    scale: 0.8;
  }
  100% {
    scale: 1;
  }
}

.start-grad {
  background: linear-gradient(90deg, #fff955 5%, #ff3300 50%, #fff955 95%);
  background-size: 200% 100%;
  clip-path: polygon(0 5.9em, 100% 0, 100% 100%, 0 calc(100% - 1.4em));
  animation: flow-grad 5s linear infinite;
}

@keyframes flow-grad {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: -200% 0%;
  }
}

.fukidashi {
  width: 32.7em;
  aspect-ratio: 308/112;
  background: url(../img/fukidashi.svg) no-repeat center center/contain;
  & .text {
    font-size: 2em;
    letter-spacing: 0.05em;
    line-height: 1.2;
    font-weight: 900;
    text-align: center;
  }
}

.sinsotsu {
  & .fukidashi {
    margin-inline: auto;
    padding-top: 2em;
  }
  & .img-area {
    margin-top: -5em;
    margin-left: 1.3em;
    width: 33.6em;
  }
  & .name-area {
    margin-top: -4em;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    & .item {
      display: flex;
      justify-content: center;
      width: 12.8em;
      aspect-ratio: 124/42;
      background: url(../img/sinsotsu-img.svg) no-repeat center center/contain;
      &:nth-child(2) {
        margin-inline: -0.7em;
      }
      & .item-inner {
        display: flex;
        align-items: flex-end;
        column-gap: 0.5em;
        font-family: var(--font-gothic);
        letter-spacing: 0.05em;
        font-weight: 700;
        translate: 0 -0.7em;
        & .role {
          font-size: 1.3em;
          color: #faed00;
        }
        & .name-right {
          display: inline-flex;
          flex-direction: column;
          align-items: center;
          row-gap: 0.4em;
          text-align: center;
          color: #fff;
          & .kana {
            font-size: 1em;
          }
          & .name {
            font-size: 1.6em;
          }
        }
      }
    }
  }
}

/* --------------------------------------------------------------- */
/*  footer */
/* --------------------------------------------------------------- */
/* タブレット(1081px以上)のみ非表示 */
@media screen and (min-width: 1081px) {
  .tab-off {
    display: none !important;
  }
}

/* PC(768px以上)のみ非表示 */
@media screen and (min-width: 768px) {
  .pc-off {
    display: none !important;
  }
}

/* スマホのみ非表示 */
@media screen and (max-width: 767px) {
  .sp-off {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    color: var(--default-text-color);
  }
}

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

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

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

@media screen and (min-width: 1081px), print {
  .sp-tab-mode {
    display: none !important;
  }
}

@media screen and (max-width: 1080px) {
  .pc-mode {
    display: none !important;
  }
}
#footer {
  grid-area: footer;
  & a,
  & p {
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: opacity 0.25s ease;
  }
  & a {
    &:hover {
      opacity: 0.7;
    }
  }
  & .sitemap {
    background-color: #333333;
    border-radius: 15rem 15rem 0 0;
    padding: 7.3rem 0 1.6rem;

    @media screen and (max-width: 767px) {
      height: auto;
      border-radius: 30px 30px 0 0;
      padding: 52px 0 20px;
    }

    & .vessel {
      display: flex;
      justify-content: space-between;

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

      & .left-area {
        .footer-logo {
          width: 21.8rem;

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

        & .name {
          margin-top: 4.2rem;
          font-weight: 700;
          font-size: 1.4rem;
          color: #ffffff;

          @media screen and (max-width: 767px) {
            margin-top: 24px;
            font-size: 12px;
          }
        }

        & .address {
          font-size: 1.2rem;
          color: #ffffff;

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

      & .right-area {
        .navigation {
          display: flex;
          justify-content: space-between;
          gap: 6.6rem;

          @media screen and (max-width: 767px) {
            margin-top: 10px;
            flex-direction: column;
            gap: 15px;
          }

          & .column {
            @media screen and (max-width: 767px) {
              padding-top: 20px;
              border-top: 1px solid #fff;
            }

            & .link {
              display: block;
              width: fit-content;
              color: #ffffff;
              margin-bottom: 1rem;

              @media screen and (max-width: 767px) {
                width: 100%;
                margin-bottom: 8px;
              }
            }

            & .link.parent {
              font-weight: 800;
              font-size: 1.6rem;
              text-transform: uppercase;

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

            & .link.child {
              font-size: 1.2rem;
            }

            & .link.special {
              @media screen and (max-width: 767px) {
                border-top: 1px solid #fff;
                padding-top: 18px;
                margin-top: 22px;
              }
            }

            & .external {
              position: relative;

              &::after {
                content: "";
                /* background-image: url(../img/external_light.svg); */
                background-size: contain;
                background-repeat: no-repeat;
                width: 1rem;
                height: 1rem;
                position: absolute;
                right: -1.5rem;
                top: 50%;
                transform: translateY(-50%);
              }

              @media screen and (max-width: 767px) {
                &::after {
                  width: 10px;
                  height: 10px;
                  right: initial;
                  left: 74px;
                }
              }
            }
          }

          & .column:first-child {
            border-top: initial;
          }
        }
      }
    }

    .sns {
      width: 100%;
      margin-top: 1rem;
      display: flex;
      gap: 3rem;
      justify-content: flex-end;
      align-items: center;
      padding: 4rem 0;

      @media screen and (max-width: 767px) {
        margin-top: 10px;
        justify-content: flex-start;
        flex-wrap: wrap;
        column-gap: 32px;
        row-gap: 3px;
        padding: 20px 0 40px;
      }

      & .url {
        font-size: 1.2rem;
        color: #ffffff;
      }
    }

    & .banners {
      border-top: 1px solid #fff;
      padding-top: 2.7rem;
      position: relative;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.6rem;

      @media screen and (max-width: 767px) {
        padding-top: 20px;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      & .familia {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translate(-50%, -50%);
        background-color: #333333;
        padding: 0 2.5em;
        font-size: 1.4rem;
        font-weight: bold;
        color: #fff;
        white-space: nowrap;

        @media screen and (max-width: 767px) {
          padding: 0 1.5em;
          font-size: 12px;
        }
      }

      & .banner {
        & img {
          width: 100%;
        }
      }
    }

    & .copyright {
      margin: 3rem auto 0;
      font-weight: 300;
      font-size: 1.2rem;
      text-align: center;
      color: #ffffff;

      @media screen and (max-width: 767px) {
        margin: 20px auto 0;
        font-size: 10px;
      }
    }
  }
}
