@charset "UTF-8";

*,
*::before,
*::after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

html {
  line-height: 1.15;
  box-sizing: border-box;
  font-family: sans-serif;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

p+p {
  margin-top: 1rem;
}

a {
  background-color: transparent;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

code,
kbd,
samp,
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
  line-height: inherit;
  border: 1px solid currentColor;
}

button {
  overflow: visible;
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  padding: 1px 6px;
}

input {
  overflow: visible;
}

input,
textarea {
  padding: 1px;
}

fieldset {
  border: 1px solid currentColor;
  margin: 0 2px;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

select {
  text-transform: none;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=color] {
  background: inherit;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

::-webkit-search-decoration,
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

::-moz-focus-inner {
  border: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

hr {
  box-sizing: content-box;
  height: 0;
  color: inherit;
  overflow: visible;
}

dl,
ol,
ul {
  margin: 1em 0;
}

ol ol,
ol ul,
ol dl,
ul ol,
ul ul,
ul dl,
dl ol,
dl ul,
dl dl {
  margin: 0;
}

b,
strong {
  font-weight: bolder;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  text-indent: 0;
  border-color: inherit;
}

details {
  display: block;
}

dialog {
  background-color: inherit;
  border: solid;
  color: inherit;
  display: block;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/*----------------------------------------
変数
----------------------------------------*/
/**
* ボタン
*
* @param $width       ボタンの幅
* @param $height      ボタンの高さ
* @param $textcolor   文字の色
* @param $bgcolor     背景色
* @param $bordercolor 線の色
*/
/**
* 画面の高さを基準としたフォントサイズのclamp関数を返す
* 最小フォントサイズと最大フォントサイズ、可変にする画面の高さの範囲を指定
* 例）m-fontsize__h(12, 24, 480, 768) とした場合、
* 　　高さ480px以下は12px、768px以上は24px、480～768pxの間は可変となる。
* 　　font-size: clamp(12px, -8px + 0.0417 * 100vw, 24px);
*
* @param  $minSize    最小フォントサイズ
* @param  $maxSize    最大フォントサイズ
* @param  $minHeight  フォントサイズを可変にする画面サイズの範囲（開始）
* @param  $maxHeight  フォントサイズを可変にする画面サイズの範囲（終了）
* @return clamp(最小値, 基準値, 最大値)　
*/
/**
* 画面の幅を基準としたフォントサイズのclamp関数を返す
* 最小フォントサイズと最大フォントサイズ、可変にする画面幅の範囲を指定
* 例）m-fontsize__w(12, 24, 480, 768) とした場合、
* 　　幅480px以下は12px、768px以上は24px、480～768pxの間は可変となる。
* 　　font-size: clamp(12px, -8px + 0.0417 * 100vw, 24px);
*
* @param  $minSize    最小フォントサイズ
* @param  $maxSize    最大フォントサイズ
* @param  $minWidth   フォントサイズを可変にする画面サイズの範囲（開始）
* @param  $maxWidth   フォントサイズを可変にする画面サイズの範囲（終了）
* @return clamp(最小値, 基準値, 最大値)　
*/
/**
* 2つの数値からパーセンテージを求める（小数点第一位以下四捨五入）
*
* @param  $num  数値1
* @param  $max  数値2
* @return 数値2を100%とした場合の数値1の割合
*/
/**
* 値から単位を取り除く
*
* @param  $num  値
* @return 数値
*/
/*----------------------------------------
base
----------------------------------------*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
em,
a {
  font-weight: 400;
  font-size: 16px;
  font-family: "Corporate-Logo-Bold", sans-serif;
  color: #1C1C1C;
  letter-spacing: 0;
  line-height: 160%;
  position: relative;
  word-wrap: break-word;
}

ul,
ol {
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
}

em {
  font-style: normal;
}

/*----------------------------------------
共通
----------------------------------------*/
#l-wrapper {
  width: 100%;
  background-color: #F4810E;
}

#l-wrapper article section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}

@media screen and (max-width: 1280px) {
  #l-wrapper article section {
    width: 96%;
    margin-left: 2%;
    margin-right: 2%;
    padding-left: 4%;
    padding-right: 4%;
  }
}

@media screen and (max-width: 768px) {
  #l-wrapper article section {
    width: calc(100% - 20px) !important;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 10px;
    margin-right: 10px;
    box-sizing: border-box;
  }
}

#l-wrapper #l-totop {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 0px;
  right: 0px;
  z-index: 99;
  cursor: pointer;
  display: none;
}

#l-wrapper #l-totop svg {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 960px) {
  #l-wrapper #l-totop {
    bottom: 52px;
  }
}

@media screen and (max-width: 768px) {
  #l-wrapper #l-totop {
    width: 45px;
    height: 45px;
  }
}

/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeUpTrigger {
  opacity: 0;
}

/*----------------------------------------
header
----------------------------------------*/
header {
  height: 80px;
  width: 270px;
  padding: 0 2.5%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}

@media screen and (max-width: 960px) {
  header {
    height: 50px;
    width: 100%;
    padding: 2% 1em;
  }
}

@media screen and (max-width: 960px) and (max-height: 440px) {
  header {
    height: 40px;
  }
}

header a {
  display: block;
  transition: all 0.2s ease-in-out;
}

header a:hover {
  opacity: 0.7;
  filter: brightness(110%);
}

header a svg,
header a img {
  width: 100%;
  max-width: 230px;
  height: auto;
}

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

  header a svg,
  header a img {
    max-width: 125px;
  }
}

/*----------------------------------------
footer
----------------------------------------*/
footer {
  width: 100%;
  height: auto;
  background-color: #F4810E;
  overflow: hidden;
  position: relative;
  padding-top: 8px;
  margin-top: 100px;
}

@media screen and (max-width: 960px) {
  footer {
    margin-top: 80px;
  }
}

footer div {
  display: block;
  position: relative;
  height: 190px;
  background-image: url(../img/common/img_ft_background_pc.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -2px;
}

@media screen and (max-width: 960px) {
  footer div {
    height: 100px;
  }
}

@media screen and (max-width: 768px) {
  footer div {
    height: 120px;
    background-image: url(../img/common/img_ft_background_sp.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
  }
}

footer div .l-ft__logo {
  padding: 0 20px;
}

footer div .l-ft__logo img {
  width: 100%;
  max-width: 350px;
}

@media screen and (max-width: 768px) {
  footer div .l-ft__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 10px;
  }

  footer div .l-ft__logo img {
    width: 50%;
    max-width: 380px;
  }
}

footer div .l-ft__logo svg {
  width: 100%;
  max-width: 340px;
  height: auto;
}

@media screen and (max-width: 960px) {
  footer div .l-ft__logo svg {
    max-width: 230px;
  }
}

@media screen and (max-width: 768px) {
  footer div .l-ft__logo svg {
    max-width: 152px;
  }
}

footer div .l-ft__logo::after {
  content: "";
  background-image: url(../img/common/img_ft_yorizou_pc.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 254px;
  height: 157px;
  position: absolute;
  right: -254px;
  bottom: -40px;
  display: block;
}

@media screen and (max-width: 1024px) {
  footer div .l-ft__logo::after {
    width: 214px;
    height: 117px;
    right: -214px;
    bottom: -7px;
  }
}

@media screen and (max-width: 960px) {
  footer div .l-ft__logo::after {
    width: 174px;
    height: 77px;
    right: -174px;
    bottom: -3px;
  }
}

@media screen and (max-width: 768px) {
  footer div .l-ft__logo::after {
    background-image: url(../img/common/img_ft_yorizou_sp.svg);
    width: 158px;
    height: 97px;
    right: initial;
    bottom: 10px;
    margin-left: 8px;
    position: relative;
  }
}

@media screen and (max-width: 350px) {
  footer div .l-ft__logo::after {
    margin-left: 4px;
  }
}

footer small {
  z-index: 2;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  min-height: 28px;
  line-height: 1;
  word-wrap: break-word;
  background-color: #F8EF1E;
  padding-top: 2px;
  color: #434343;
}

@media screen and (max-width: 960px) {
  footer small {
    font-size: 14px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  footer small {
    font-size: 12px;
  }
}

/**
* button
*/
.c-br__u768 {
  display: none;
}

@media (max-width: 1280px) {
  .c-br__u768 {
    display: inline;
  }
}

.c-br__u900 {
  display: none;
}

@media (max-width: 1240px) and (max-width: 1680px) {
  .c-br__u900 {
    display: inline;
  }
}

.c-br__u1300 {
  display: none;
}

@media (max-width: 1480px) and (max-width: 1300px) {
  .c-br__u1300 {
    display: inline;
  }
}

.c-br__o900 {
  display: inline;
}

@media (max-width: 1240px) and (max-width: 1680px) {
  .c-br__o900 {
    display: none;
  }
}

.c-br__o1300 {
  display: inline;
}

@media (max-width: 1480px) and (max-width: 1300px) {
  .c-br__o1300 {
    display: none;
  }
}

/**
* button
*/
.c-btn1 {
  width: 100%;
  max-width: 575px;
  height: 120px;
  border-radius: 69px;
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 60px;
  box-sizing: border-box;
  box-shadow: 0px 7px 0 #F8EF1E;
  transition: 0.3s;
}

@media screen and (max-width: 960px) {
  .c-btn1 {
    padding: 0 35px;
  }
}

@media screen and (max-width: 768px) {
  .c-btn1 {
    height: 65px;
    border-radius: 32px;
  }
}

@media screen and (max-width: 375px) {
  .c-btn1 {
    max-width: 100%;
    padding: 0 25px;
  }
}

.c-btn1:hover {
  transform: translate3d(0, 7px, 0);
  box-shadow: none;
}

.c-btn1 em {
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  color: #F4810E;
}

.c-btn1 em i {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: inherit;
  font-style: normal;
}

@media screen and (max-width: 768px) {
  .c-btn1 em i {
    font-size: 9px;
  }
}

.c-btn1 em span {
  font-family: inherit;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: inherit;
}

@media screen and (max-width: 768px) {
  .c-btn1 em span {
    font-size: 29px;
  }
}

.c-btn1 p {
  width: calc(100% - 60px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Corporate-Logo-Bold", sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 0;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .c-btn1 p {
    font-size: 25px;
  }
}

.c-btn2 {
  width: 100%;
  max-width: 575px;
  height: 120px;
  border-radius: 69px;
  border: 3px solid #434343;
  background-color: #F8EF1E;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 55px;
  box-sizing: border-box;
  box-shadow: 0px 7px 0 #434343;
  transition: 0.3s;
}

@media screen and (max-width: 580px) {
  .c-btn2 {
    height: 64px;
    border-radius: 32px;
    padding: 0 30px;
  }
}

@media screen and (max-width: 420px) {
  .c-btn2 {
    padding: 0 20px;
  }
}

.c-btn2:hover {
  transform: translate3d(0, 7px, 0);
  box-shadow: none;
}

.c-btn2 span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 60px;
}

@media screen and (max-width: 680px) {
  .c-btn2 span {
    width: 50px;
  }
}

@media screen and (max-width: 580px) {
  .c-btn2 span {
    width: 40px;
  }
}

@media screen and (max-width: 420px) {
  .c-btn2 span {
    width: 30px;
  }
}

.c-btn2 span svg {
  width: 100%;
  max-width: 42px;
  height: auto;
}

@media screen and (max-width: 680px) {
  .c-btn2 span svg {
    max-width: 30px;
  }
}

@media screen and (max-width: 580px) {
  .c-btn2 span svg {
    max-width: 20px;
  }
}

.c-btn2 p {
  width: calc(100% - 60px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Corporate-Logo-Bold", sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 0;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .c-btn2 p {
    font-size: clamp(20px, -26.2765957447px + 0.0798 * 100vw, 35px);
  }
}

@media screen and (max-width: 680px) {
  .c-btn2 p {
    width: calc(100% - 50px);
  }
}

@media screen and (max-width: 580px) {
  .c-btn2 p {
    width: calc(100% - 40px);
  }
}

@media screen and (max-width: 420px) {
  .c-btn2 p {
    width: calc(100% - 30px);
    letter-spacing: 0;
  }
}

@media screen and (max-width: 370px) {
  .c-btn2 p {
    font-size: 18px;
  }
}

@media screen and (max-width: 350px) {
  .c-btn2 p {
    font-size: 16px;
    letter-spacing: -1px;
  }
}

/**
* h1～6
*/
.c-hd__label {
  font-family: "Montserrat", sans-serif;
  color: #F4810E;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-hd__label i {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: inherit;
  font-style: normal;
  margin-right: 10px;
}

@media screen and (max-width: 580px) {
  .c-hd__label i {
    font-size: 13px;
  }
}

.c-hd__label span {
  font-family: inherit;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: inherit;
}

@media screen and (max-width: 580px) {
  .c-hd__label span {
    font-size: 30px;
  }
}

.c-hd__title {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  color: #1C1C1C;
}

@media screen and (max-width: 768px) {
  .c-hd__title {
    font-size: clamp(22px, -33.5319148936px + 0.0957 * 100vw, 40px);
  }
}

.c-hd__title span {
  font-size: 53px;
  background: linear-gradient(180deg, rgb(255, 255, 255) 10%, rgb(248, 239, 30) 10%, rgb(248, 239, 30) 90%, rgb(255, 255, 255) 90%);
}

@media screen and (max-width: 768px) {
  .c-hd__title span {
    font-size: clamp(27px, -53.2127659574px + 0.1383 * 100vw, 53px);
  }
}

/**
* span
*/
.c-spn__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 30px;
  color: #fff;
}

/**
* svg
*/
/**
* ul, ol
*/
/*----------------------------------------
トップページ
----------------------------------------*/
#l-wrapper article #p-home__mainvisual {
  height: auto;
  width: 100%;
  padding-bottom: 60px;
  padding-right: 0;
  padding-left: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
  max-width: 100% !important;
  display: flex;
}

@media screen and (max-width: 1280px) {
  #l-wrapper article #p-home__mainvisual {
    width: 100% !important;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual {
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 960px) and (max-height: 590px) {
  #l-wrapper article #p-home__mainvisual {
    padding-bottom: 85px;
  }
}

@media screen and (max-width: 960px) and (max-height: 440px) {
  #l-wrapper article #p-home__mainvisual {
    padding-bottom: 70px;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  background: linear-gradient(-49deg, transparent 25%, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.1) 50%, transparent 50%, transparent 75%, rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0.1));
  background-size: 52px 60px;
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__maintitle {
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 0 12.7%;
  z-index: 3;
}

@media only screen and (orientation: portrait) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__maintitle {
    padding: 0 20%;
  }
}

@media (max-width: 960px) and (max-height: 580px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__maintitle {
    padding: 0 20%;
  }
}

@media (max-width: 960px) and (max-height: 440px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__maintitle {
    padding: 0 25%;
  }
}

@media (max-width: 768px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__maintitle {
    padding: 0 15%;
  }
}

@media (max-width: 768px) and (max-height: 900px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__maintitle {
    padding: 0 20%;
  }
}

@media (max-width: 768px) and (max-height: 440px) and (orientation: portrait) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__maintitle {
    padding: 0 25%;
  }
}

@media (max-width: 768px) and (max-height: 780px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__maintitle {
    top: 20px;
  }
}

@media (max-width: 400px) and (max-height: 780px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__maintitle {
    top: 10px;
  }
}

@media (max-width: 580px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__maintitle {
    padding-left: 10px;
    padding-right: 10px;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__maintitle>picture:nth-of-type(1) {
  width: 100%;
  height: auto;
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__maintitle>picture:nth-of-type(1) img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) and (max-height: 780px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__maintitle>picture:nth-of-type(1) img {
    max-height: 70vh;
  }
}

@media (max-width: 580px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__maintitle>picture:nth-of-type(1) img {
    max-width: 357px;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape>picture {
  display: block;
  position: absolute;
  left: 3.3%;
  bottom: -30%;
  z-index: 4;
  display: inherit;
  transform-origin: center center;
  animation: bounce 3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation-iteration-count: infinite;
}

@media screen and (max-width: 768px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape>picture {
    bottom: -60%;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape>picture img {
  width: 100%;
  height: auto;
  max-width: 394px;
}

@media screen and (max-width: 1600px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape>picture img {
    max-width: 364px;
  }
}

@media screen and (max-width: 1480px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape>picture img {
    max-width: 344px;
  }
}

@media screen and (max-width: 1380px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape>picture img {
    max-width: 324px;
  }
}

@media screen and (max-width: 1280px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape>picture img {
    max-width: 314px;
  }
}

@media screen and (max-width: 1180px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape>picture img {
    max-width: 304px;
  }
}

@media screen and (max-width: 1080px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape>picture img {
    max-width: 284px;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape>picture img {
    max-width: 264px;
  }
}

@media screen and (max-width: 960px) and (max-height: 590px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape>picture img {
    max-width: 140px;
  }
}

@media screen and (max-width: 768px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape>picture img {
    max-width: 164px;
  }
}

@media screen and (max-width: 768px) and (max-height: 590px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape>picture img {
    max-width: 140px;
  }
}

@media (max-width: 360px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape>picture img {
    max-width: 140px;
  }
}

@keyframes bounce {
  0% {
    transform: translate3d(0, 0, 0);
  }

  5% {
    transform: translate3d(0, 0, 0);
  }

  10% {
    transform: translate3d(0, -1.5vh, 0);
  }

  11.5% {
    transform: translate3d(0, -1.5vh, 0);
  }

  14% {
    transform: translate3d(0, 0, 0);
  }

  17.5% {
    transform: translate3d(0, -1vh, 0);
  }

  20% {
    transform: translate3d(0, 0, 0);
  }

  22.5% {
    transform: translate3d(0, -0.5vh, 0);
  }

  25% {
    transform: translate3d(0, 0, 0);
  }

  30% {
    transform: translate3d(0, -0.1vh, 0);
  }

  31.5% {
    transform: translate3d(0, 0, 0);
  }

  40% {
    transform: translate3d(0, -0.1vh, 0);
  }

  41.5% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -0.1vh, 0);
  }

  51.5% {
    transform: translate3d(0, 0, 0);
  }

  60% {
    transform: translate3d(0, -0.1vh, 0);
  }

  61.5% {
    transform: translate3d(0, 0, 0);
  }

  70% {
    transform: translate3d(0, -0.1vh, 0);
  }

  71.5% {
    transform: translate3d(0, 0, 0);
  }

  80% {
    transform: translate3d(0, -0.1vh, 0);
  }

  81.5% {
    transform: translate3d(0, 0, 0);
  }

  90% {
    transform: translate3d(0, -0.1vh, 0);
  }

  91.5% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -0.1vh, 0);
  }
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape div {
  width: 100%;
  overflow: hidden;
  height: 101px;
  background-image: url(../img/home/img_main_town.png);
  background-size: auto 100%;
  animation: scroll-anim 20s linear infinite;
  z-index: 3;
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape div {
    height: 85px;
  }
}

@media screen and (max-width: 960px) and (max-height: 590px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape div {
    height: 65px;
  }
}

@media screen and (max-width: 960px) and (max-height: 440px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape div {
    height: 45px;
  }
}

@media screen and (max-width: 768px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape div {
    height: 65px;
  }
}

@media screen and (max-width: 768px) and (max-height: 590px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__cityscape div {
    height: 45px;
  }
}

@keyframes scroll-anim {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -1680px 0;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L1 {
  animation: blinking_1 0.5s ease 0s infinite alternate;
  animation-delay: 0.3s;
  transform-origin: center;
  position: absolute;
  top: 6.3%;
  left: 20.7%;
  text-align: center;
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L1 svg {
  width: 100%;
  max-width: 16.22px;
  height: auto;
}

@media screen and (max-width: 580px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L1 svg {
    width: 80%;
  }
}

@media screen and (max-width: 1480px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L1 {
    left: 24.7%;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L1 {
    top: 10.4%;
    left: 20.7%;
  }
}

@media screen and (max-width: 820px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L1 {
    left: 15.7%;
  }
}

@media screen and (max-width: 430px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L1 {
    top: 21.3%;
    left: 1.1%;
  }

  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L1 svg {
    width: 52%;
    height: auto;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L2 {
  animation: blinking_2 0.6s ease 0s infinite alternate;
  transform-origin: center;
  position: absolute;
  top: 20%;
  left: 2.7%;
  text-align: center;
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L2 svg {
  width: 100%;
  max-width: 30.55px;
  height: auto;
}

@media screen and (max-width: 580px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L2 svg {
    width: 80%;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L2 {
    top: 14%;
  }
}

@media screen and (max-width: 430px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L2 {
    top: 61.1%;
    left: 0%;
  }

  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L2 svg {
    width: 37%;
    height: auto;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L3 {
  animation: blinking_1 0.5s ease 0s infinite alternate;
  animation-delay: 0.3s;
  transform-origin: center;
  position: absolute;
  top: 29.2%;
  left: 7.5%;
  text-align: center;
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L3 svg {
  width: 100%;
  max-width: 18.49px;
  height: auto;
}

@media screen and (max-width: 580px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L3 svg {
    width: 80%;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L3 {
    top: 23.2%;
  }
}

@media screen and (max-width: 880px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L3 {
    top: 21.2%;
  }
}

@media screen and (max-width: 500px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L3 {
    left: 5.5%;
  }
}

@media screen and (max-width: 430px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L3 {
    top: 87.7%;
    left: 1.8%;
  }

  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L3 svg {
    width: 45%;
    height: auto;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L4 {
  animation: blinking_2 0.5s ease 0s infinite alternate;
  animation-delay: 0.1s;
  transform-origin: center;
  position: absolute;
  top: 56%;
  left: 2.7%;
  text-align: center;
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L4 svg {
  width: 100%;
  max-width: 16.22px;
  height: auto;
}

@media screen and (max-width: 580px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L4 svg {
    width: 80%;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L4 {
    top: 59%;
  }
}

@media screen and (max-width: 430px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L4 {
    display: none;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L5 {
  animation: blinking_2 0.6s ease 0s infinite alternate;
  transform-origin: center;
  position: absolute;
  top: 66.1%;
  left: 5.5%;
  text-align: center;
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L5 svg {
  width: 100%;
  max-width: 34.15px;
  height: auto;
}

@media screen and (max-width: 580px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L5 svg {
    width: 80%;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L5 {
    top: 72.1%;
  }
}

@media (max-width: 880px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L5 {
    left: 3.5%;
  }
}

@media screen and (max-width: 430px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L5 {
    display: none;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L6 {
  animation: blinking_2 0.5s ease 0s infinite alternate;
  animation-delay: 0.1s;
  transform-origin: center;
  position: absolute;
  top: 72%;
  left: 2.7%;
  text-align: center;
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L6 svg {
  width: 100%;
  max-width: 12.89px;
  height: auto;
}

@media screen and (max-width: 580px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L6 svg {
    width: 80%;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L6 {
    top: 80%;
  }
}

@media screen and (max-width: 430px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L6 {
    display: none;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L7 {
  animation: blinking_1 0.5s ease 0s infinite alternate;
  animation-delay: 0.3s;
  transform-origin: center;
  position: absolute;
  top: 80.7%;
  left: 19.8%;
  text-align: center;
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L7 svg {
  width: 100%;
  max-width: 20.62px;
  height: auto;
}

@media screen and (max-width: 580px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L7 svg {
    width: 80%;
  }
}

@media screen and (max-width: 1480px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L7 {
    left: 23.8%;
  }
}

@media screen and (max-width: 430px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--L7 {
    display: none;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R1 {
  animation: blinking_1 0.5s ease 0s infinite alternate;
  animation-delay: 0.3s;
  transform-origin: center;
  position: absolute;
  top: 6.4%;
  right: 8.6%;
  text-align: center;
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R1 svg {
  width: 100%;
  max-width: 33.63px;
  height: auto;
}

@media screen and (max-width: 580px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R1 svg {
    width: 80%;
  }
}

@media screen and (max-width: 1480px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R1 {
    right: 11.6%;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R1 {
    top: 9.7%;
    right: 7.6%;
  }
}

@media screen and (max-width: 430px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R1 {
    top: 10.7%;
    right: -2.4%;
  }

  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R1 svg {
    width: 26%;
    height: auto;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R2 {
  animation: blinking_2 0.6s ease 0s infinite alternate;
  transform-origin: center;
  position: absolute;
  top: 8.3%;
  right: 14.2%;
  text-align: center;
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R2 svg {
  width: 100%;
  max-width: 16.22px;
  height: auto;
}

@media screen and (max-width: 580px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R2 svg {
    width: 80%;
  }
}

@media screen and (max-width: 1480px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R2 {
    right: 19.2%;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R2 {
    top: 14.1%;
    right: 16.2%;
  }
}

@media screen and (max-width: 430px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R2 {
    top: 86.3%;
    right: -0.3%;
  }

  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R2 svg {
    width: 50%;
    height: auto;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R3 {
  animation: blinking_2 0.6s ease 0s infinite alternate;
  transform-origin: center;
  position: absolute;
  top: 25.5%;
  right: 6.2%;
  text-align: center;
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R3 svg {
  width: 100%;
  max-width: 16.79px;
  height: auto;
}

@media screen and (max-width: 580px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R3 svg {
    width: 80%;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R3 {
    right: 4.2%;
  }
}

@media screen and (max-width: 430px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R3 {
    top: 91.3%;
    right: -0.5%;
  }

  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R3 svg {
    width: 70%;
    height: auto;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R4 {
  animation: blinking_1 0.5s ease 0s infinite alternate;
  animation-delay: 0.5s;
  transform-origin: center;
  position: absolute;
  top: 69.2%;
  right: 8.8%;
  text-align: center;
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R4 svg {
  width: 100%;
  max-width: 20.62px;
  height: auto;
}

@media screen and (max-width: 580px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R4 svg {
    width: 80%;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R4 {
    top: 73.2%;
    right: 7.8%;
  }
}

@media (max-width: 880px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R4 {
    right: 5.8%;
  }
}

@media screen and (max-width: 430px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R4 {
    display: none;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R5 {
  animation: blinking_1 0.5s ease 0s infinite alternate;
  animation-delay: 0.3s;
  transform-origin: center;
  position: absolute;
  top: 76.8%;
  right: 4.5%;
  text-align: center;
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R5 svg {
  width: 100%;
  max-width: 29.07px;
  height: auto;
}

@media screen and (max-width: 580px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R5 svg {
    width: 80%;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R5 {
    top: 80.8%;
    right: 3.5%;
  }
}

@media screen and (max-width: 430px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R5 {
    display: none;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R6 {
  animation: blinking_2 0.6s ease 0s infinite alternate;
  transform-origin: center;
  position: absolute;
  top: 83.3%;
  right: 20%;
  text-align: center;
}

#l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R6 svg {
  width: 100%;
  max-width: 14.63px;
  height: auto;
}

@media screen and (max-width: 580px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R6 svg {
    width: 80%;
  }
}

@media screen and (max-width: 820px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R6 {
    right: 15%;
  }
}

@media screen and (max-width: 430px) {
  #l-wrapper article #p-home__mainvisual .p-home__mainvisual__inner .p-home__stars--R6 {
    display: none;
  }
}

@keyframes blinking_1 {
  from {
    transform: scale(1, 1);
    transform-origin: 50% 50%;
  }

  to {
    transform: scale(1.2, 1.2);
    transform-origin: 50% 50%;
  }
}

@keyframes blinking_2 {
  from {
    transform: scale(0.9, 0.9);
    transform-origin: 50% 50%;
  }

  to {
    transform: scale(1.1, 1.1);
    transform-origin: 50% 50%;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__link {
  position: fixed;
  right: 0;
  top: 50px;
  z-index: 5;
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual .p-home__link {
    position: fixed;
    right: initial;
    top: initial;
    display: flex;
    bottom: 0;
    width: 100%;
    overflow: hidden;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__link a {
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 85px;
  height: 265px;
  border: solid 4px #fff;
  border-right: none;
  border-radius: 20px 0 0 20px;
}

@media screen and (max-width: 1280px) {
  #l-wrapper article #p-home__mainvisual .p-home__link a {
    width: 55px;
    height: 240px;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual .p-home__link a {
    height: 52px;
    width: calc(50% + 2px);
    border-radius: 10px 10px 0 0;
    flex-direction: initial;
    justify-content: center;
    border: solid 4px #fff;
    border-bottom: none;
    padding: 0 15px;
    writing-mode: initial;
  }
}

@media screen and (max-width: 960px) and (max-height: 440px) {
  #l-wrapper article #p-home__mainvisual .p-home__link a {
    height: 40px;
  }
}

@media screen and (max-width: 420px) {
  #l-wrapper article #p-home__mainvisual .p-home__link a {
    padding: 0 10px;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__link a svg {
  height: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual .p-home__link a svg {
    transform: rotate(-90deg);
    margin-bottom: 0;
    margin-left: 20px;
  }
}

@media screen and (max-width: 420px) {
  #l-wrapper article #p-home__mainvisual .p-home__link a svg {
    margin-left: 10px;
  }
}

@media screen and (max-width: 400px) {
  #l-wrapper article #p-home__mainvisual .p-home__link a svg {
    margin-left: 5px;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__link a:hover svg {
  transform: translateY(6px);
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual .p-home__link a:hover svg {
    transform: translatex(5px) rotate(-90deg);
  }
}

@media screen and (max-width: 400px) {
  #l-wrapper article #p-home__mainvisual .p-home__link a:hover svg {
    transform: translatex(3px) rotate(-90deg);
  }
}

#l-wrapper article #p-home__mainvisual .p-home__link a span {
  height: calc(100% - 40px);
  writing-mode: vertical-rl;
  font-size: 25px;
  font-weight: normal;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 1280px) {
  #l-wrapper article #p-home__mainvisual .p-home__link a span {
    font-size: 20px;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual .p-home__link a span {
    writing-mode: initial;
    height: auto;
    width: calc(100% - 40px);
  }
}

@media screen and (max-width: 400px) {
  #l-wrapper article #p-home__mainvisual .p-home__link a span {
    width: calc(100% - 20px);
  }
}

@media screen and (max-width: 355px) {
  #l-wrapper article #p-home__mainvisual .p-home__link a span {
    font-size: 17px;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__link a:nth-of-type(1) {
  margin-right: -2px;
  background-color: #067DE6;
}

#l-wrapper article #p-home__mainvisual .p-home__link a:nth-of-type(1) span {
  color: #fff;
}

#l-wrapper article #p-home__mainvisual .p-home__link a:nth-of-type(1) svg {
  fill: #fff;
}

#l-wrapper article #p-home__mainvisual .p-home__link a:nth-of-type(2) {
  margin-left: -2px;
  margin-top: 10px;
  background-color: #F8EF1E;
  color: #1C1C1C;
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__mainvisual .p-home__link a:nth-of-type(2) {
    margin-top: 0;
  }
}

#l-wrapper article #p-home__mainvisual .p-home__link a:nth-of-type(2) span {
  color: #434343;
}

#l-wrapper article #p-home__mainvisual .p-home__link a:nth-of-type(2) svg {
  fill: #434343;
}

#l-wrapper article #p-home__index {
  padding-top: 30px;
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__index {
    padding-top: 0;
  }
}

#l-wrapper article #p-home__index h1 {
  width: 455px;
  margin: 0 auto;
}

@media screen and (max-width: 580px) {
  #l-wrapper article #p-home__index h1 {
    width: 300px;
  }
}

@media screen and (max-width: 340px) {
  #l-wrapper article #p-home__index h1 {
    width: 280px;
  }
}

#l-wrapper article #p-home__index h1 img {
  width: 100%;
  height: auto;
}

#l-wrapper article #p-home__index>p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  margin-top: 45px;
}

@media screen and (max-width: 768px) {
  #l-wrapper article #p-home__index>p {
    margin-top: 30px;
  }
}

@media screen and (max-width: 580px) {
  #l-wrapper article #p-home__index>p {
    font-size: 25px;
  }
}

#l-wrapper article #p-home__index>p::before {
  content: "";
  background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="25.201" height="40.001" viewBox="0 0 25.201 40.001"><path d="M508.641,5229.185a1.5,1.5,0,0,1-1.288-.728l-22.2-37a1.5,1.5,0,0,1,2.572-1.544l22.2,37a1.5,1.5,0,0,1-1.285,2.272Z" transform="translate(-484.939 -5189.184)" fill="%23fff"/></svg>');
  background-size: cover;
  width: 25px;
  height: 40px;
  display: block;
  margin-right: 15px;
  margin-top: 7px;
}

@media screen and (max-width: 580px) {
  #l-wrapper article #p-home__index>p::before {
    content: "";
    background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="28" viewBox="0 0 18 28"><path d="M501.441,5217.184a1.5,1.5,0,0,1-1.288-.728l-15-25a1.5,1.5,0,0,1,2.572-1.544l15,25a1.5,1.5,0,0,1-1.285,2.272Z" transform="translate(-484.939 -5189.184)" fill="%23fff"/></svg>');
    background-size: cover;
    width: 17px;
    height: 27px;
  }
}

#l-wrapper article #p-home__index>p::after {
  content: "";
  background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="25.201" height="40.001" viewBox="0 0 25.201 40.001"><path d="M486.438,5229.185a1.5,1.5,0,0,1-1.285-2.272l22.2-37a1.5,1.5,0,0,1,2.572,1.544l-22.2,37A1.5,1.5,0,0,1,486.438,5229.185Z" transform="translate(-484.939 -5189.184)" fill="%23fff"/></svg>');
  background-size: cover;
  width: 25px;
  height: 40px;
  display: block;
  margin-left: 15px;
  margin-top: 7px;
}

@media screen and (max-width: 580px) {
  #l-wrapper article #p-home__index>p::after {
    content: "";
    background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="28" viewBox="0 0 18 28"><path d="M486.438,5217.184a1.5,1.5,0,0,1-1.285-2.272l15-25a1.5,1.5,0,0,1,2.573,1.544l-15,25A1.5,1.5,0,0,1,486.438,5217.184Z" transform="translate(-484.939 -5189.184)" fill="%23fff"/></svg>');
    background-size: cover;
    width: 17px;
    height: 27px;
  }
}

#l-wrapper article #p-home__index div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  #l-wrapper article #p-home__index div {
    flex-direction: column;
    margin-top: 15px;
    padding: 0 10px;
  }
}

#l-wrapper article #p-home__index div a:first-of-type {
  margin-right: 4%;
}

@media screen and (max-width: 960px) {
  #l-wrapper article #p-home__index div a:first-of-type {
    margin-right: 2%;
  }
}

@media screen and (max-width: 768px) {
  #l-wrapper article #p-home__index div a:first-of-type {
    margin-right: 0;
    margin-bottom: 25px;
  }
}

#l-wrapper article .p-home__point--01 {
  margin-top: 100px;
  margin-bottom: 0;
  background-color: #fff;
  border-radius: 30px;
  padding-top: 60px;
  padding-bottom: 100px;
  box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, 0.16);
  text-align: center;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__point--01 {
    margin-top: 40px;
  }
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__point--01 {
    padding-top: 25px;
    padding-bottom: 40px;
    border-radius: 10px;
  }
}

#l-wrapper article .p-home__point--01 h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  color: #1C1C1C;
}

#l-wrapper article .p-home__point--01 h2 br {
  display: none;
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__point--01 h2 br {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__point--01 h2 {
    font-size: clamp(25px, -21.2765957447px + 0.0798 * 100vw, 40px);
  }
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__point--01 h2 {
    line-height: 1.25;
    margin-top: 15px;
  }
}

#l-wrapper article .p-home__point--01 h3 {
  margin-top: 65px;
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__point--01 h3 {
    margin-top: 40px;
  }
}

#l-wrapper article .p-home__point--01 h3:nth-of-type(2) span {
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__point--01 h3:nth-of-type(2) span {
    font-size: clamp(27px, -13.1063829787px + 0.0691 * 100vw, 40px);
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1.1;
  }
}

#l-wrapper article .p-home__point--01 h3:nth-of-type(2) span br {
  display: none;
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__point--01 h3:nth-of-type(2) span br {
    display: block;
  }
}

@media screen and (max-width: 360px) {
  #l-wrapper article .p-home__point--01 h3:nth-of-type(2) span br {
    display: none;
  }
}

#l-wrapper article .p-home__point--01 h3:nth-of-type(3) {
  margin-top: 80px;
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__point--01 h3:nth-of-type(3) {
    margin-top: 80px;
  }
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--1 {
  max-width: 880px;
  width: 100%;
  margin: 23px auto 0 auto !important;
  background-color: rgba(248, 239, 30, 0.2);
  border-radius: 30px;
  padding: 50px 20px;
  box-sizing: border-box;
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__point--01 .p-home__point__detail--1 {
    border-radius: 10px;
  }
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--1 picture {
  display: block;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--1 picture img {
  width: 100%;
  height: auto;
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--1 p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #1C1C1C;
  text-align: center;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__point--01 .p-home__point__detail--1 p {
    text-align: left;
  }
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--2 {
  margin-top: 25px;
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--2 picture {
  display: block;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--2 picture img {
  width: 100%;
  height: auto;
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--notes {
  width: 100%;
  max-width: 980px;
  margin: 30px auto 0 auto;
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__point--01 .p-home__point__detail--notes {
    margin: 20px auto 0 auto;
  }
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--notes li {
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #1C1C1C;
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__point--01 .p-home__point__detail--notes li {
    font-size: clamp(13px, -2.4255319149px + 0.0266 * 100vw, 18px);
  }
}

#l-wrapper article .p-home__point--01>a {
  margin: 90px auto 0 auto;
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__point--01>a {
    margin: 73px auto 0 auto;
  }
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--procedure {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 980px;
  margin: 30px auto 0 auto;
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__point--01 .p-home__point__detail--procedure {
    flex-wrap: wrap;
  }
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li {
  width: calc((100% - 60px) / 4);
  max-width: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 2px solid #F4810E;
  border-radius: 20px;
  padding-bottom: 55px;
  margin-right: 20px;
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li {
    width: calc((100% - 20px) / 2);
    max-width: initial;
    padding-bottom: 25px;
  }
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li {
    width: 100%;
  }
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li b {
  display: block;
  width: 100%;
  min-height: 95px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.4;
  padding: 0 20px;
  border-radius: 17px 17px 0 0;
  text-align: center;
  color: #1C1C1C;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #F4810E;
}

@media screen and (max-width: 1120px) {
  #l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li b {
    min-height: 110px;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li b {
    min-height: 78px;
  }
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li b {
    font-size: clamp(22px, 12.7446808511px + 0.016 * 100vw, 25px);
  }
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li b {
    min-height: 52px;
  }
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li picture {
  margin: 0 auto;
  height: 135px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li picture img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li:nth-of-type(1) {
    margin-bottom: 20px;
    margin-right: 0;
  }
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li:nth-of-type(1) picture img {
  max-width: 144px;
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li:nth-of-type(2) br {
  display: block;
}

@media screen and (max-width: 1050px) {
  #l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li:nth-of-type(2) br {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li:nth-of-type(2) br {
    display: block;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li:nth-of-type(2) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li:nth-of-type(2) picture img {
  max-width: 104px;
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li:nth-of-type(3) {
    margin-bottom: 20px;
    margin-right: 0;
  }
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li:nth-of-type(3) picture img {
  max-width: 89px;
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li:nth-of-type(4) {
  margin-right: 0;
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li:nth-of-type(4) picture img {
  max-width: 76px;
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li p {
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #1C1C1C;
  text-align: left;
  flex-grow: 1;
  margin-bottom: 1em;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li p {
    font-size: clamp(16px, 9.829787234px + 0.0106 * 100vw, 18px);
  }
}

#l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li span {
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #1C1C1C;
  text-align: left;
  min-height: 55px;
  padding: 0 20px;
  padding-left: calc(20px + 1em);
  text-indent: -1em;
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__point--01 .p-home__point__detail--procedure li span {
    min-height: initial;
  }
}

#l-wrapper article .p-home__point--02 {
  margin-top: 100px;
  margin-bottom: 0;
  background-color: #fff;
  border-radius: 30px;
  padding-top: 50px;
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__point--02 {
    border-radius: 10px;
    margin-top: 40px;
  }
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__point--02 {
    padding-top: 25px;
    padding-bottom: 40px;
    border-radius: 10px;
  }
}

#l-wrapper article .p-home__point--02 h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  color: #1C1C1C;
}

#l-wrapper article .p-home__point--02 h2 br {
  display: none;
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__point--02 h2 br {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__point--02 h2 {
    font-size: clamp(25px, -21.2765957447px + 0.0798 * 100vw, 40px);
  }
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__point--02 h2 {
    line-height: 1.25;
    margin-top: 15px;
  }
}

#l-wrapper article .p-home__point--02 h3 {
  margin-top: 65px;
}

#l-wrapper article .p-home__point--02 h3 br {
  display: none;
}

@media screen and (max-width: 1024px) {
  #l-wrapper article .p-home__point--02 h3 br {
    display: block;
  }
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__point--02 h3 {
    margin-top: 40px;
  }
}

#l-wrapper article .p-home__point--02 div {
  margin-top: 25px;
}

#l-wrapper article .p-home__point--02 div picture {
  display: block;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

#l-wrapper article .p-home__point--02 div picture img {
  width: 100%;
  height: auto;
}

#l-wrapper article .p-home__other {
  margin-top: 100px;
  margin-bottom: 0;
  background-color: #fff;
  border-radius: 30px;
  padding-top: 95px;
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__other {
    border-radius: 10px;
    margin-top: 40px;
  }
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__other {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}

#l-wrapper article .p-home__other>h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  color: #1C1C1C;
}

@media screen and (max-width: 1080px) {
  #l-wrapper article .p-home__other>h2 {
    align-items: flex-end;
  }
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__other>h2 {
    font-size: clamp(20px, -41.7021276596px + 0.1064 * 100vw, 40px);
  }
}

#l-wrapper article .p-home__other>h2:nth-of-type(1) {
  margin-top: 20px;
}

#l-wrapper article .p-home__other>h2:nth-of-type(1)::before {
  content: "";
  background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="25.201" height="40.001" viewBox="0 0 25.201 40.001"><path d="M508.641,5229.185a1.5,1.5,0,0,1-1.288-.728l-22.2-37a1.5,1.5,0,0,1,2.572-1.544l22.2,37a1.5,1.5,0,0,1-1.285,2.272Z" transform="translate(-484.939 -5189.184)" fill="%231C1C1C"/></svg>');
  width: 25px;
  height: 40px;
  display: block;
  margin-right: 15px;
  margin-top: 2px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 1080px) {
  #l-wrapper article .p-home__other>h2:nth-of-type(1)::before {
    bottom: 8px;
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__other>h2:nth-of-type(1)::before {
    background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="15.001" height="50.001" viewBox="0 0 15.001 50.001"><path d="M498.438,5239.185a1.5,1.5,0,0,1-1.452-1.129l-12-47a1.5,1.5,0,1,1,2.907-.742l12,47a1.5,1.5,0,0,1-1.454,1.872Z" transform="translate(-484.939 -5189.184)" fill="%231c1c1c"/></svg>');
    width: 14px;
    height: 47px;
    bottom: initial;
    margin-right: 5px;
  }
}

#l-wrapper article .p-home__other>h2:nth-of-type(1)::after {
  content: "";
  background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="25.201" height="40.001" viewBox="0 0 25.201 40.001"><path d="M486.438,5229.185a1.5,1.5,0,0,1-1.285-2.272l22.2-37a1.5,1.5,0,0,1,2.572,1.544l-22.2,37A1.5,1.5,0,0,1,486.438,5229.185Z" transform="translate(-484.939 -5189.184)" fill="%231C1C1C"/></svg>');
  width: 25px;
  height: 40px;
  display: block;
  margin-left: 15px;
  margin-top: 2px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 1080px) {
  #l-wrapper article .p-home__other>h2:nth-of-type(1)::after {
    bottom: 8px;
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__other>h2:nth-of-type(1)::after {
    background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="15.001" height="50.001" viewBox="0 0 15.001 50.001"><path d="M486.441,5239.185a1.5,1.5,0,0,1-1.454-1.872l12-47a1.5,1.5,0,1,1,2.907.742l-12,47A1.5,1.5,0,0,1,486.441,5239.185Z" transform="translate(-484.939 -5189.184)" fill="%231c1c1c"/></svg>');
    width: 14px;
    height: 47px;
    bottom: initial;
    margin-left: 5px;
  }
}

#l-wrapper article .p-home__other>h2:nth-of-type(1) span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

@media screen and (max-width: 1080px) {
  #l-wrapper article .p-home__other>h2:nth-of-type(1) span {
    text-align: center;
    line-height: 1.4;
  }
}

@media screen and (max-width: 380px) {
  #l-wrapper article .p-home__other>h2:nth-of-type(1) span {
    letter-spacing: -0.5px;
  }
}

#l-wrapper article .p-home__other>h2:nth-of-type(1) span br {
  display: none;
}

@media screen and (max-width: 1080px) {
  #l-wrapper article .p-home__other>h2:nth-of-type(1) span br {
    display: block;
  }
}

#l-wrapper article .p-home__other>h2:nth-of-type(1) span b {
  font-weight: inherit;
  color: inherit;
  font-size: 40px;
  background: linear-gradient(180deg, rgb(255, 255, 255) 10%, rgb(248, 239, 30) 10%, rgb(248, 239, 30) 90%, rgb(255, 255, 255) 90%);
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__other>h2:nth-of-type(1) span b {
    font-size: clamp(20px, -41.7021276596px + 0.1064 * 100vw, 40px);
  }
}

#l-wrapper article .p-home__other>div {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 980px;
  margin: 45px auto 0 auto;
  border-radius: 30px;
  border: 3px solid #434343;
  box-sizing: border-box;
  position: relative;
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__other>div {
    border-radius: 10px;
  }
}

#l-wrapper article .p-home__other>div h4 {
  width: 100%;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  color: #fff;
  background-color: #434343;
  min-height: 90px;
  border-radius: 22px 22px 0 0;
  border: #434343 solid 3px;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__other>div h4 {
    font-size: clamp(20px, -29.3617021277px + 0.0851 * 100vw, 36px);
  }
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__other>div h4 {
    padding: 13px 7px;
    border-radius: 5px 5px 0 0;
  }
}

#l-wrapper article .p-home__other>div h4 span {
  font-size: inherit;
  font-weight: inherit;
  display: inline-block;
  color: inherit;
  border-bottom: 5px solid #F8EF1E;
  line-height: 1.3;
}

#l-wrapper article .p-home__other>div h4 b {
  font-size: inherit;
  font-weight: inherit;
  color: #F8EF1E;
}

#l-wrapper article .p-home__other>div h4 br {
  display: none;
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__other>div h4 br {
    display: block;
  }
}

#l-wrapper article .p-home__other>div h4 br.p-home__other__br {
  display: none;
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__other>div h4 br.p-home__other__br {
    display: none;
  }
}

@media screen and (max-width: 360px) {
  #l-wrapper article .p-home__other>div h4 br.p-home__other__br {
    display: block;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--01 {
  padding-bottom: 50px;
  padding-right: 20px;
  padding-left: 20px;
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--01 {
    padding-bottom: 15px;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--01>p {
  margin-top: 30px;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--01>p {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--01>p {
    font-size: clamp(16px, 9.829787234px + 0.0106 * 100vw, 18px);
  }
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--01>p {
    margin-top: 20px;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--01>div {
  margin-top: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--01>div {
    margin-top: 60px;
    flex-direction: column;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--01>div picture {
  margin-right: 15px;
}

#l-wrapper article .p-home__other>div .p-home__other__detail--01>div picture img {
  width: 100%;
  max-width: 296px;
  height: auto;
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--01>div picture {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--01>div div {
  width: 100%;
  max-width: 430px;
}

#l-wrapper article .p-home__other>div .p-home__other__detail--01>div div p {
  display: block;
  background-color: rgba(248, 239, 30, 0.15);
  border-radius: 20px;
  padding: 20px;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--01>div div p {
    font-size: clamp(16px, 9.829787234px + 0.0106 * 100vw, 18px);
  }
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--01>div div p {
    padding: 20px 20px 32px 20px;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--01>div div em {
  font-family: "Corporate-Logo-Medium", sans-serif;
  margin-top: 14px;
  display: block;
  font-style: normal;
  font-size: 22px;
  line-height: 1.4;
  text-align: left;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--01>div div em {
    font-size: clamp(16px, -2.5106382979px + 0.0319 * 100vw, 22px);
  }
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--01>div div em {
    margin-top: 20px;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--02 {
  padding-right: 20px;
  padding-left: 20px;
}

#l-wrapper article .p-home__other>div .p-home__other__detail--02>p {
  margin-top: 30px;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--02>p {
    font-size: clamp(16px, 9.829787234px + 0.0106 * 100vw, 18px);
    text-align: left;
  }
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--02>p {
    margin-top: 20px;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--02>div {
  margin-top: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--02>div {
    flex-direction: column;
    margin-top: 30px;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--02>div picture {
  margin-right: 33px;
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--02>div picture {
    order: 2;
    margin-right: 0;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--02>div picture img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

#l-wrapper article .p-home__other>div .p-home__other__detail--02>div div {
  width: 100%;
  max-width: 430px;
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--02>div div {
    order: 1;
    margin-bottom: 24px;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--02>div div p {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--02>div div p {
    font-size: clamp(20px, -26.2765957447px + 0.0798 * 100vw, 35px);
  }
}

@media screen and (max-width: 390px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--02>div div p {
    letter-spacing: -1px;
  }
}

@media screen and (max-width: 373px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--02>div div p {
    font-size: 18px;
  }
}

@media screen and (max-width: 340px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--02>div div p {
    font-size: 16px;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--02>div div p b {
  font-style: normal;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.4;
  color: #F4810E;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--02>div div p b {
    font-size: clamp(30px, -16.2765957447px + 0.0798 * 100vw, 45px);
  }
}

@media screen and (max-width: 390px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--02>div div p b {
    letter-spacing: -2px;
  }
}

@media screen and (max-width: 373px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--02>div div p b {
    font-size: 26px;
  }
}

@media screen and (max-width: 340px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--02>div div p b {
    font-size: 24px;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--02>div div span {
  font-family: "Corporate-Logo-Medium", sans-serif;
  color: #F4810E;
  font-style: normal;
  font-size: 18px;
  line-height: 1.4;
  display: block;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--02>div div span {
    font-size: clamp(14px, 1.6595744681px + 0.0213 * 100vw, 18px);
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--02>div div span i {
  font-style: normal;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  font-family: "Noto Sans JP", sans-serif;
}

#l-wrapper article .p-home__other>div .p-home__other__detail--02>div div em {
  font-family: "Corporate-Logo-Medium", sans-serif;
  margin-top: 14px;
  display: block;
  font-style: normal;
  font-size: 22px;
  line-height: 1.4;
  text-align: left;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--02>div div em {
    font-size: clamp(16px, -2.5106382979px + 0.0319 * 100vw, 22px);
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--03 {
  padding-left: 11.5%;
  padding-right: 11.5%;
}

@media screen and (max-width: 980px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03 {
    padding-left: 8.5%;
    padding-right: 0;
  }
}

@media screen and (max-width: 850px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03 {
    padding-left: 20px;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--03>p {
  margin-top: 30px;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}

@media screen and (max-width: 980px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>p {
    padding-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>p {
    font-size: clamp(16px, 9.829787234px + 0.0106 * 100vw, 18px);
  }
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>p {
    margin-top: 20px;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--03>p span {
  font-size: 16px;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: block;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>p span {
    font-size: clamp(14px, 7.829787234px + 0.0106 * 100vw, 16px);
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--03>div {
  margin-top: 34px;
  padding-right: 20px;
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div {
    margin-top: 45px;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 470px;
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-self: flex-start;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li {
    font-size: clamp(18px, 11.829787234px + 0.0106 * 100vw, 20px);
  }
}

@media screen and (max-width: 390px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li {
    letter-spacing: -1px;
  }
}

@media screen and (max-width: 373px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li {
    font-size: 16px;
  }
}

@media screen and (max-width: 350px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li {
    font-size: 14px;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li::before {
  content: "";
  background-image: url(../img/home/img_pointother_04.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 24.5px;
  height: 20.73px;
  margin-right: 10px;
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li::before {
    width: 20.5px;
    height: 16.73px;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li i {
  font-style: normal;
  font-size: 12px;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  display: inline-block;
  margin-left: 8px;
}

@media screen and (max-width: 373px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li i {
    margin-left: 4px;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(1) {
  order: 1;
  width: 65%;
  max-width: 300px;
  margin-right: 30px;
}

@media screen and (max-width: 1024px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(1) {
    margin-right: 5px;
  }
}

@media screen and (max-width: 730px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(1) {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(2) {
  order: 3;
  width: 65%;
  max-width: 300px;
  margin-right: 30px;
}

@media screen and (max-width: 1024px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(2) {
    margin-right: 5px;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(2) {
    order: 2;
  }
}

@media screen and (max-width: 730px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(2) {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(3) {
  order: 5;
  width: 65%;
  max-width: 300px;
  margin-right: 30px;
}

@media screen and (max-width: 1024px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(3) {
    margin-right: 5px;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(3) {
    order: 3;
  }
}

@media screen and (max-width: 730px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(3) {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(4) {
  order: 7;
  width: 65%;
  max-width: 300px;
  margin-right: 30px;
}

@media screen and (max-width: 1024px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(4) {
    margin-right: 5px;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(4) {
    order: 4;
  }
}

@media screen and (max-width: 730px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(4) {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(5) {
  order: 2;
  width: 35%;
  max-width: 140px;
}

@media screen and (max-width: 1100px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(5) {
    max-width: 135px;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(5) {
    order: 5;
  }
}

@media screen and (max-width: 730px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(5) {
    max-width: 100%;
    width: 100%;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(6) {
  order: 4;
  width: 35%;
  max-width: 140px;
}

@media screen and (max-width: 1100px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(6) {
    max-width: 135px;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(6) {
    order: 6;
  }
}

@media screen and (max-width: 730px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(6) {
    max-width: 100%;
    width: 100%;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(7) {
  order: 6;
  width: 35%;
  max-width: 140px;
}

@media screen and (max-width: 1100px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(7) {
    max-width: 135px;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(7) {
    order: 7;
  }
}

@media screen and (max-width: 730px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div ul li:nth-of-type(7) {
    max-width: 100%;
    width: 100%;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--03>div em {
  margin-top: 16px;
  margin-bottom: 52px;
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 1100px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div em {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div em {
    padding-right: 57%;
  }
}

@media screen and (max-width: 730px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03>div em {
    padding-right: 0;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--03 picture {
  position: absolute;
  bottom: 0;
  display: block;
  right: 0;
  border-radius: 0 0 27px 0;
  overflow: hidden;
}

@media screen and (max-width: 730px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03 picture {
    position: relative;
    display: flex;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 580px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03 picture {
    border-radius: 0 0 7px 0;
  }
}

#l-wrapper article .p-home__other>div .p-home__other__detail--03 picture img {
  width: 100%;
  max-width: 365px;
  height: auto;
}

@media screen and (max-width: 1100px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03 picture img {
    max-width: 340px;
  }
}

@media screen and (max-width: 1050px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03 picture img {
    max-width: 330px;
  }
}

@media screen and (max-width: 1000px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03 picture img {
    max-width: 320px;
  }
}

@media screen and (max-width: 980px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03 picture img {
    max-width: 320px;
  }
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__other>div .p-home__other__detail--03 picture img {
    max-width: 365px;
  }
}

#l-wrapper article .p-home__other>p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  color: #1C1C1C;
  margin-top: 92px;
  margin-bottom: 42px;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__other>p {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: clamp(24px, -25.3617021277px + 0.0851 * 100vw, 40px);
  }
}

#l-wrapper article .p-home__other>ul {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__other>ul {
    flex-direction: column;
  }
}

#l-wrapper article .p-home__other>ul li {
  width: calc((100% - 100px) / 5);
  min-height: 174px;
  border: 2px solid #F4810E;
  border-radius: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__other>ul li {
    flex-direction: row;
    width: 100%;
    min-height: 88px;
    border-radius: 10px;
    align-items: stretch;
  }
}

#l-wrapper article .p-home__other>ul li em {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 53px;
  background-color: #F4810E;
  width: 100%;
  border-radius: 17px 17px 0 0;
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__other>ul li em {
    width: 64px;
    height: auto;
    flex-direction: column;
    border-radius: 7px 0 0 7px;
  }
}

#l-wrapper article .p-home__other>ul li em i {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: inherit;
  font-style: normal;
  margin-right: 10px;
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__other>ul li em i {
    font-size: 9px;
    margin-right: 0;
  }
}

#l-wrapper article .p-home__other>ul li em span {
  font-family: inherit;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: inherit;
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__other>ul li em span {
    font-size: 29px;
  }
}

#l-wrapper article .p-home__other>ul li p {
  width: 100%;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  padding: 18px;
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__other>ul li p {
    padding: 20px;
    justify-content: flex-start;
    text-align: left;
  }

  #l-wrapper article .p-home__other>ul li p br {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__other>ul li p {
    font-size: clamp(16px, 9.829787234px + 0.0106 * 100vw, 18px);
  }
}

#l-wrapper article .p-home__other>ul svg {
  width: 13.4px;
  height: 10px;
  margin: 0 5.8px;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width: 960px) {
  #l-wrapper article .p-home__other>ul svg {
    width: 17px;
    height: auto;
    margin: 7px auto;
    transform: rotate(90deg);
  }
}

#l-wrapper article .p-home__other>a {
  margin: 50px auto 0 auto;
}

#l-wrapper article .p-home__summary {
  margin-top: 100px;
  margin-bottom: 0;
  background-color: #fff;
  border-radius: 30px;
  padding-top: 92px;
  padding-bottom: 110px;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__summary {
    margin-top: 40px;
    padding-top: 35px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
  }
}

#l-wrapper article .p-home__summary h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  color: #1C1C1C;
  height: 100px;
  width: 100%;
  max-width: 980px;
  background-color: #434343;
  border-radius: 20px 20px 0 0;
  border: 1px solid #434343;
  box-sizing: border-box;
  margin: 0 auto;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__summary h2 {
    font-size: 24px;
  }
}

#l-wrapper article .p-home__summary dl {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  border: 1px solid #434343;
  box-sizing: border-box;
  border-radius: 0 0 20px 20px;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__summary dl {
    flex-direction: column;
  }
}

#l-wrapper article .p-home__summary dl dt {
  width: 245px;
  padding: 20px 30px 20px;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

#l-wrapper article .p-home__summary dl dt:nth-of-type(2n) {
  background-color: #F0F0F0;
}

#l-wrapper article .p-home__summary dl dt:last-of-type {
  border-radius: 0 0 0 20px;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__summary dl dt:last-of-type {
    border-radius: 0;
  }
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__summary dl dt {
    width: 100%;
    padding: 20px 0;
    font-size: 18px;
    justify-content: center;
  }
}

#l-wrapper article .p-home__summary dl dd {
  width: calc(100% - 245px);
  padding: 20px 30px 20px 0;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

#l-wrapper article .p-home__summary dl dd:nth-of-type(2n) {
  background-color: #F0F0F0;
}

#l-wrapper article .p-home__summary dl dd:last-of-type {
  border-radius: 0 0 20px 0;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__summary dl dd:last-of-type {
    border-radius: 0 0 20px 20px;
  }
}

#l-wrapper article .p-home__summary dl dd ul li {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__summary dl dd ul li {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  #l-wrapper article .p-home__summary dl dd {
    width: 100%;
    padding: 0 20px 20px 20px;
    font-size: 14px;
  }
}

#l-wrapper article .p-home__summary>ul {
  width: 100%;
  max-width: 980px;
  margin: 30px auto 0 auto;
}

#l-wrapper article .p-home__summary>ul li {
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  padding-left: 1em;
  text-indent: -1em;
}

/**
* font
*/
@font-face {
  font-family: "Corporate-Logo-Bold";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Corporate-Logo-Bold-ver2.eot?") format("eot"), url("../fonts/Corporate-Logo-Bold-ver2.woff2") format("woff2"), url("../fonts/Corporate-Logo-Bold-ver2.woff") format("woff");
}

@font-face {
  font-family: "Corporate-Logo-Medium";
  src: url("../fonts/Corporate-Logo-Medium-ver2.eot?") format("eot"), url("../fonts/Corporate-Logo-Medium-ver2.woff2") format("woff2"), url("../fonts/Corporate-Logo-Medium-ver2.woff") format("woff");
}

.u-ff__corplogo-b {
  font-family: "Corporate-Logo-Bold", sans-serif;
}

.u-ff__corplogo-m {
  font-family: "Corporate-Logo-Medium", sans-serif;
}

.u-ff__notosans {
  font-family: "Noto Sans JP", sans-serif;
}

.u-ff__hiragino {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

/**
* margin
*/
.u-mt__wide {
  margin-top: 60px;
}

@media screen and (max-width: 1024px) {
  .u-mt__wide {
    margin-top: 30px;
  }
}

.u-mt__normal {
  margin-top: 40px;
}

@media screen and (max-width: 1024px) {
  .u-mt__normal {
    margin-top: 20px;
  }
}

.u-mt__narrow {
  margin-top: 30px;
}

@media screen and (max-width: 1024px) {
  .u-mt__narrow {
    margin-top: 20px;
  }
}

.u-mb__wide {
  margin-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  .u-mb__wide {
    margin-bottom: 30px;
  }
}

.u-mb__normal {
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .u-mb__normal {
    margin-bottom: 20px;
  }
}

.u-mb__narrow {
  margin-bottom: 30px;
}

@media screen and (max-width: 1280px) {
  .u-mb__narrow {
    margin-bottom: 20px;
  }
}

/*----------------------------------------
padding
----------------------------------------*/
.u-pt__wide {
  padding-top: 80px;
}

@media screen and (max-width: 1024px) {
  .u-pt__wide {
    padding-top: 40px;
  }
}

.u-pt__normal {
  padding-top: 70px;
}

@media screen and (max-width: 1024px) {
  .u-pt__normal {
    padding-top: 30px;
  }
}

.u-pt__narrow {
  padding-top: 60px;
}

@media screen and (max-width: 1024px) {
  .u-pt__narrow {
    padding-top: 30px;
  }
}

.u-pb__wide {
  padding-bottom: 80px;
}

@media screen and (max-width: 1024px) {
  .u-pb__wide {
    padding-bottom: 40px;
  }
}

.u-pb__normal {
  padding-bottom: 70px;
}

@media screen and (max-width: 1024px) {
  .u-pb__normal {
    padding-bottom: 30px;
  }
}

.u-pb__narrow {
  padding-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  .u-pb__narrow {
    padding-bottom: 30px;
  }
}

/**
* position
*/
.u-pos__flex__center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-pos__flex__center.--left {
  justify-content: flex-start;
}

@-webkit-keyframes bounceIn {
  0% {
    -webkit-transform: scale(0.3);
    opacity: 0;
  }

  40% {
    -webkit-transform: scale(1.1);
    opacity: 0.9;
  }

  80% {
    -webkit-transform: scale(0.8);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

@-moz-keyframes bounceIn {
  0% {
    -moz-transform: scale(0.3);
    opacity: 0;
  }

  40% {
    -moz-transform: scale(1.1);
    opacity: 0.9;
  }

  80% {
    -moz-transform: scale(0.8);
    opacity: 1;
  }

  100% {
    -moz-transform: scale(1);
    opacity: 1;
  }
}

@-o-keyframes bounceIn {
  0% {
    -o-transform: scale(0.3);
    opacity: 0;
  }

  40% {
    -o-transform: scale(1.1);
    opacity: 0.9;
  }

  80% {
    -o-transform: scale(0.8);
    opacity: 1;
  }

  100% {
    -o-transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }

  40% {
    transform: scale(1.1);
    opacity: 0.9;
  }

  80% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.u--bounceIn {
  -webkit-animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale(0.9);
  }

  50%,
  65% {
    -webkit-transform: scale(1.1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(0.3);
    opacity: 0;
  }
}

@-moz-keyframes bounceOut {
  20% {
    -moz-transform: scale(0.9);
  }

  50%,
  65% {
    -moz-transform: scale(1.1);
    opacity: 1;
  }

  100% {
    -moz-transform: scale(0.3);
    opacity: 0;
  }
}

@-o-keyframes bounceOut {
  20% {
    -o-transform: scale(0.9);
  }

  50%,
  55% {
    -o-transform: scale(1.1);
    opacity: 1;
  }

  100% {
    -o-transform: scale(0.3);
    opacity: 0;
  }
}

@keyframes bounceOut {
  20% {
    transform: scale(0.9);
  }

  50%,
  65% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(0.3);
    opacity: 0;
  }
}

.u--bounceOut {
  -webkit-animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInLeft {
  0% {
    -webkit-transform: translate3d(-25%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(3%, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-1%, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(1%, 0, 0);
  }

  100% {
    -webkit-transform: none;
  }
}

@-moz-keyframes bounceInLeft {
  0% {
    -moz-transform: translate3d(-25%, 0, 0);
  }

  60% {
    -moz-transform: translate3d(3%, 0, 0);
  }

  75% {
    -moz-transform: translate3d(-1%, 0, 0);
  }

  90% {
    -moz-transform: translate3d(1%, 0, 0);
  }

  100% {
    -moz-transform: none;
  }
}

@-o-keyframes bounceInLeft {
  0% {
    -o-transform: translate3d(-25%, 0, 0);
  }

  60% {
    -o-transform: translate3d(3%, 0, 0);
  }

  75% {
    -o-transform: translate3d(-1%, 0, 0);
  }

  90% {
    -o-transform: translate3d(1%, 0, 0);
  }

  100% {
    -o-transform: none;
  }
}

@keyframes bounceInLeft {
  0% {
    transform: translate3d(-25%, 0, 0);
  }

  60% {
    transform: translate3d(3%, 0, 0);
  }

  75% {
    transform: translate3d(-1%, 0, 0);
  }

  90% {
    transform: translate3d(1%, 0, 0);
  }

  100% {
    transform: none;
  }
}

.u--bounceInLeft {
  -webkit-animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInRight {
  0% {
    -webkit-transform: translate3d(25%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-3%, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(1%, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-1%, 0, 0);
  }

  100% {
    -webkit-transform: none;
  }
}

@-moz-keyframes bounceInRight {
  0% {
    -moz-transform: translate3d(25%, 0, 0);
  }

  60% {
    -moz-transform: translate3d(-3%, 0, 0);
  }

  75% {
    -moz-transform: translate3d(1%, 0, 0);
  }

  90% {
    -moz-transform: translate3d(-1%, 0, 0);
  }

  100% {
    -moz-transform: none;
  }
}

@-o-keyframes bounceInRight {
  0% {
    -o-transform: translate3d(25%, 0, 0);
  }

  60% {
    -o-transform: translate3d(-3%, 0, 0);
  }

  75% {
    -o-transform: translate3d(1%, 0, 0);
  }

  90% {
    -o-transform: translate3d(-1%, 0, 0);
  }

  100% {
    -o-transform: none;
  }
}

@keyframes bounceInRight {
  0% {
    transform: translate3d(25%, 0, 0);
  }

  60% {
    transform: translate3d(-3%, 0, 0);
  }

  75% {
    transform: translate3d(1%, 0, 0);
  }

  90% {
    transform: translate3d(-1%, 0, 0);
  }

  100% {
    transform: none;
  }
}

.u--bounceInRight {
  -webkit-animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInUp {
  0% {
    -webkit-transform: translate3d(0, 25%, 0);
  }

  60% {
    -webkit-transform: translate3d(0, -3%, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 1%, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -1%, 0);
  }

  100% {
    -webkit-transform: none;
  }
}

@-moz-keyframes bounceInUp {
  0% {
    -moz-transform: translate3d(0, 25%, 0);
  }

  60% {
    -moz-transform: translate3d(0, -3%, 0);
  }

  75% {
    -moz-transform: translate3d(0, 1%, 0);
  }

  90% {
    -moz-transform: translate3d(0, -1%, 0);
  }

  100% {
    -moz-transform: none;
  }
}

@-o-keyframes bounceInUp {
  0% {
    -o-transform: translate3d(0, 25%, 0);
  }

  60% {
    -o-transform: translate3d(0, -3%, 0);
  }

  75% {
    -o-transform: translate3d(0, 1%, 0);
  }

  90% {
    -o-transform: translate3d(0, -1%, 0);
  }

  100% {
    -o-transform: none;
  }
}

@keyframes bounceInUp {
  0% {
    transform: translate3d(0, 25%, 0);
  }

  60% {
    transform: translate3d(0, -3%, 0);
  }

  75% {
    transform: translate3d(0, 1%, 0);
  }

  90% {
    transform: translate3d(0, -1%, 0);
  }

  100% {
    transform: none;
  }
}

.u--bounceInUp {
  -webkit-animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInDown {
  0% {
    -webkit-transform: translate3d(0, -25%, 0);
  }

  60% {
    -webkit-transform: translate3d(0, 3%, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -1%, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 1%, 0);
  }

  100% {
    -webkit-transform: none;
  }
}

@-moz-keyframes bounceInDown {
  0% {
    -moz-transform: translate3d(0, -25%, 0);
  }

  60% {
    -moz-transform: translate3d(0, 3%, 0);
  }

  75% {
    -moz-transform: translate3d(0, -1%, 0);
  }

  90% {
    -moz-transform: translate3d(0, 1%, 0);
  }

  100% {
    -moz-transform: none;
  }
}

@-o-keyframes bounceInDown {
  0% {
    -o-transform: translate3d(0, -25%, 0);
  }

  60% {
    -o-transform: translate3d(0, 3%, 0);
  }

  75% {
    -o-transform: translate3d(0, -1%, 0);
  }

  90% {
    -o-transform: translate3d(0, 1%, 0);
  }

  100% {
    -o-transform: none;
  }
}

@keyframes bounceInDown {
  0% {
    transform: translate3d(0, -25%, 0);
  }

  60% {
    transform: translate3d(0, 3%, 0);
  }

  75% {
    transform: translate3d(0, -1%, 0);
  }

  90% {
    transform: translate3d(0, 1%, 0);
  }

  100% {
    transform: none;
  }
}

.u--bounceInDown {
  -webkit-animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*# sourceMappingURL=app.css.map */
