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

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colors to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colors to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

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

/* change border color to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* --------------------------- */
html {
  font-size: 100%;
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 70%;
  }
}
@media screen and (max-width: 820px) {
  html {
    font-size: 55%;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: 1.75vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.8;
  letter-spacing: 1px;
  word-break: break-all;
  background-color: #fff;
  color: #000;
}

a,
button {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover,
button:hover {
  opacity: 0.5;
}

/* header--------------------------- */
.header {
  background-color: #ececec;
  position: fixed;
  width: 100%;
  z-index: 5000;
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5% 1.5%;
}
.header-wrap__img {
  width: 15%;
  aspect-ratio: 17/4;
}
@media screen and (max-width: 480px) {
  .header-wrap__img {
    width: 47.5%;
  }
}
.header-wrap__img a img {
  display: block;
  width: 100%;
  height: 100%;
}
.header-wrap__nav {
  width: 50%;
}
.header-wrap__nav__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-wrap__nav__list__item a {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  font-size: 1.25rem;
}
@media screen and (max-width: 480px) {
  .header-wrap__nav__list__item a {
    font-size: 2.5rem;
    color: #fff;
  }
}
.header-wrap__nav__list__item.__contact {
  border: solid #000 1px;
  padding: 1% 1.5%;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-wrap__nav__list__item.__contact small {
  font-size: 1rem;
}
@media screen and (max-width: 480px) {
  .header-wrap__nav__list__item.__contact small {
    font-size: 1.25rem;
  }
}
.header-wrap__nav__list__item.__contact a {
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .header-wrap__nav__list__item.__contact {
    font-size: 2rem;
    width: unset;
    height: unset;
    border: unset;
  }
}
.header-wrap__nav__list__item.__contact a {
  color: #000;
}
@media screen and (max-width: 480px) {
  .header-wrap__nav__list__item.__contact a {
    color: #fff;
    font-size: 2.5rem;
  }
}

.header.change-color {
  background-color: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 1.5px #000 solid;
}

/* btn--------------------------- */
.__btn {
  width: 50%;
  margin: 3.5% auto 0;
}
@media screen and (max-width: 480px) {
  .__btn {
    width: 85%;
  }
}
.__btn a {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 500;
  background-color: #e02f71;
  border-radius: 50px;
  color: #fff;
  line-height: 3.75;
  -webkit-box-shadow: 4px 3px 7px rgba(0, 0, 0, 0.4);
  box-shadow: 4px 3px 7px rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 480px) {
  .__btn a {
    font-size: 1.75rem;
  }
}

/* footer--------------------------- */
.footer {
  background-color: #000;
}
@media screen and (max-width: 480px) {
  .footer {
    padding-bottom: 32vw;
  }
}
.footer-wrap {
  width: 70%;
  margin: 0 auto;
  padding: 3.5% 0 2.5%;
}
@media screen and (max-width: 480px) {
  .footer-wrap {
    width: 100%;
  }
}
.footer-wrap__logo {
  width: 25%;
  margin: auto;
  margin-bottom: 3.5%;
}
@media screen and (max-width: 480px) {
  .footer-wrap__logo {
    width: 50%;
  }
}
.footer-wrap__logo img {
  display: block;
  width: 100%;
  height: 100%;
}
.footer-wrap__menu {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  align-items: baseline;
}
.footer-wrap__menu__list {
  list-style: none;
}
.footer-wrap__menu__list__item {
  margin: 5% 0;
}
.footer-wrap__menu__list__item a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .footer-wrap__menu__list__item a {
    font-size: 1.5rem;
  }
}
.footer small {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  padding-bottom: 1.5%;
}
@media screen and (max-width: 480px) {
  .footer small {
    font-size: 1rem;
  }
}

/* slide--------------------------- */
.slider {
  position: relative;
}

.slider img {
  width: 45vw;
  height: auto;
  margin: auto;
}
@media screen and (max-width: 480px) {
  .slider img {
    width: 85vw;
  }
}

.slider .slick-slide {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  /* 拡大や透過のアニメーションを0.5秒で行う */
}

.slider .slick-slide.slick-center {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  /* 中央の画像のサイズだけ等倍に */
  opacity: 1;
  /* 透過なし */
}

/* 矢印の位置 */
.slick-prev,
.slick-next {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 26%;
  cursor: pointer;
  /* マウスカーソルを指マークに */
  outline: none;
  /* クリックをしたら出てくる枠線を消す */
  z-index: 10;
  background-image: url(../img/t-arrow.png);
  background-size: cover;
  background-position: 50%;
  width: 80px;
  height: 115px;
}
@media screen and (max-width: 820px) {
  .slick-prev,
.slick-next {
    width: 50px;
    height: 70px;
  }
}
@media screen and (max-width: 480px) {
  .slick-prev,
.slick-next {
    top: 28.5%;
    width: 47px;
    height: 67px;
  }
}

.slick-prev:hover {
  background-image: url(../img/t-arrow_hover.png);
  width: 135px;
  height: 115px;
  left: 10%;
}
@media screen and (max-width: 480px) {
  .slick-prev:hover {
    top: 28.5%;
    width: 75px;
    height: 67px;
    left: -5%;
  }
}

.slick-next:hover {
  background-image: url(../img/t-arrow_hover.png);
  width: 135px;
  height: 115px;
  right: 10%;
}
@media screen and (max-width: 480px) {
  .slick-next:hover {
    top: 28.5%;
    width: 75px;
    height: 67px;
    right: -5%;
  }
}

.slick-prev {
  /* 戻る矢印のスタイル*/
  left: 12.5%;
}
@media screen and (max-width: 480px) {
  .slick-prev {
    left: -4.5%;
  }
}

.slick-next {
  /* 次へ矢印のスタイル */
  right: 12.5%;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
@media screen and (max-width: 480px) {
  .slick-next {
    right: -4.5%;
  }
}

/* ドットナビゲーションの設定 */
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  background: #ccc;
  border-radius: 50%;
  outline: none;
  display: block;
  border: none;
  padding: 2.5px;
  width: 10px;
  height: 10px;
}

.slick-dots .slick-active button {
  background: #fff;
}

.mes-wrap__slide__list__item img {
  border-radius: 15px;
}

.mes-wrap__slide__list__item p {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin-top: 2.5%;
}
@media screen and (max-width: 480px) {
  .mes-wrap__slide__list__item p {
    font-size: 1.75rem;
  }
}

.mes-wrap__slide {
  margin-top: 3.5%;
}

.slick-track {
  height: 32.5vw;
}
@media screen and (max-width: 480px) {
  .slick-track {
    height: 32.5rem;
  }
}

/* popup--------------------------- */
.btn {
  position: relative;
  -webkit-transition: ease 0.2s;
  -o-transition: ease 0.2s;
  transition: ease 0.2s;
}

.btn a {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 100;
  color: #000;
}

/*infoエリアをはじめは非表示*/
iframe.youtube-16-9 {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  max-width: 1000px;
  display: block;
  margin: auto;
}

/*モーダルの横幅を変更したい場合*/
.modaal-container {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  display: block;
  margin: auto;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #fff;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #000 !important;
}

.modaal-content-container {
  background: transparent !important;
  padding: 2.5% !important;
}

.modaal-inner-wrapper {
  background-color: #000;
}

.__info-mes {
  font-size: 1.25rem;
  font-weight: 600;
}

.info iframe {
  display: none !important;
  visibility: hidden !important;
}

.info {
  display: none !important;
  visibility: hidden !important;
}

@media screen and (max-width: 480px) {
  .header-wrap__nav {
    display: none;
  }
}

.openbtn {
  display: none;
}
@media screen and (max-width: 480px) {
  .openbtn {
    display: block;
  }
}

#h-menu {
  display: none;
}
@media screen and (max-width: 480px) {
  #h-menu {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  /* メニューのスタイル */
  #h-menu {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: #000;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
  }

  /* アクティブクラスがついたら透過なしにして最前面へ */
  #h-menu.panelactive {
    right: 0;
  }

  /* メニューの縦スクロール */
  #h-menu.panelactive #h-menu-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* メニューの表示位置 */
  #h-menu .header-wrap__nav__list {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
  }

  .header-wrap__nav__list,
#h-menu.panelactive .header-wrap__nav__list {
    display: block;
  }

  /* リストのレイアウト */
  #h-menu .header-wrap__nav__list__item {
    text-align: center;
    margin: 30px 0;
  }

  #h-menu .header-wrap__nav__list__item a {
    display: block;
    letter-spacing: 5px;
    font-style: unset;
  }

  /* 三本線のスタイル */
  .openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 0;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }

  /* ×に変化 */
  .openbtn span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #000;
    width: 45%;
  }

  .openbtn.active span {
    background-color: #fff;
  }

  /* 各線のスタイル */
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 23px;
  }

  .openbtn span:nth-of-type(3) {
    top: 31px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-45deg);
    -ms-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(45deg);
    -ms-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
@media screen and (min-width: 1024px) {
  .__pc {
    display: inline-block;
  }

  .__tab {
    display: none;
  }

  .__sp {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .__pc {
    display: inline-block;
  }

  .__tab {
    display: none;
  }

  .__sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .__pc {
    display: none;
  }

  .__tab {
    display: inline-block;
  }

  .__sp {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .__pc {
    display: none;
  }

  .__tab {
    display: none;
  }

  .__sp {
    display: inline-block;
  }
}
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
  animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
  animation-name: fadeRightAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*==================================================
パタッ
===================================*/
/* 下へ */
.flipDown {
  -webkit-animation-name: flipDownAnime;
  animation-name: flipDownAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes flipDownAnime {
  from {
    -webkit-transform: perspective(2500px) rotateX(100deg);
    transform: perspective(2500px) rotateX(100deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(2500px) rotateX(0);
    transform: perspective(2500px) rotateX(0);
    opacity: 1;
  }
}
@keyframes flipDownAnime {
  from {
    -webkit-transform: perspective(2500px) rotateX(100deg);
    transform: perspective(2500px) rotateX(100deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(2500px) rotateX(0);
    transform: perspective(2500px) rotateX(0);
    opacity: 1;
  }
}
/* 左へ */
.flipLeft {
  -webkit-animation-name: flipLeftAnime;
  animation-name: flipLeftAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-perspective-origin: left center;
  perspective-origin: left center;
  opacity: 0;
}

@-webkit-keyframes flipLeftAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipLeftAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/* 左上へ */
.flipLeftTop {
  -webkit-animation-name: flipLeftTopAnime;
  animation-name: flipLeftTopAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes flipLeftTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(-15deg);
    transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
@keyframes flipLeftTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(-15deg);
    transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
/* 右へ */
.flipRight {
  -webkit-animation-name: flipRightAnime;
  animation-name: flipRightAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-perspective-origin: right center;
  perspective-origin: right center;
  opacity: 0;
}

@-webkit-keyframes flipRightAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipRightAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/* 右上へ */
.flipRightTop {
  -webkit-animation-name: flipRightTopAnime;
  animation-name: flipRightTopAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes flipRightTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(25deg);
    transform: translate(-20px, 80px) rotate(25deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 1) rotate(0deg);
    transform: translate(0, 1) rotate(0deg);
    opacity: 1;
  }
}
@keyframes flipRightTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(25deg);
    transform: translate(-20px, 80px) rotate(25deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 1) rotate(0deg);
    transform: translate(0, 1) rotate(0deg);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.flipDownTrigger,
.flipLeftTrigger,
.flipLeftTopTrigger,
.flipRightTrigger,
.flipRightTopTrigger {
  opacity: 0;
}

/*==================================================
くるっ
===================================*/
/* X 軸（縦へ） */
.rotateX {
  -webkit-animation-name: rotateXAnime;
  animation-name: rotateXAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes rotateXAnime {
  from {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateX(-360deg);
    transform: rotateX(-360deg);
    opacity: 1;
  }
}
@keyframes rotateXAnime {
  from {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateX(-360deg);
    transform: rotateX(-360deg);
    opacity: 1;
  }
}
/*　Y軸（横へ） */
.rotateY {
  -webkit-animation-name: rotateYAnime;
  animation-name: rotateYAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes rotateYAnime {
  from {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateY(-360deg);
    transform: rotateY(-360deg);
    opacity: 1;
  }
}
@keyframes rotateYAnime {
  from {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateY(-360deg);
    transform: rotateY(-360deg);
    opacity: 1;
  }
}
/* Z 軸（左へ） */
.rotateLeftZ {
  -webkit-animation-name: rotateLeftZAnime;
  animation-name: rotateLeftZAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes rotateLeftZAnime {
  from {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
    opacity: 1;
  }
}
@keyframes rotateLeftZAnime {
  from {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
    opacity: 1;
  }
}
/*　Z 軸（右へ） */
.rotateRightZ {
  -webkit-animation-name: rotateRightZAnime;
  animation-name: rotateRightZAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes rotateRightZAnime {
  from {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
    opacity: 1;
  }
}
@keyframes rotateRightZAnime {
  from {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.rotateXTrigger,
.rotateYTrigger,
.rotateLeftZTrigger,
.rotateRightZTrigger {
  opacity: 0;
}

/*==================================================
ボンッ、ヒュッ
===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
  animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
/* 縮小 */
.zoomOut {
  -webkit-animation-name: zoomOutAnime;
  animation-name: zoomOutAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomOutAnime {
  from {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomOutAnime {
  from {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

/*==================================================
じわっ
===================================*/
/* ぼかしから出現 */
.blur {
  -webkit-animation-name: blurAnime;
  animation-name: blurAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
  opacity: 0;
}

/*==================================================
にゅーん
===================================*/
/* 滑らかに変形して出現 */
.smooth {
  -webkit-animation-name: smoothAnime;
  animation-name: smoothAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  opacity: 0;
}

@-webkit-keyframes smoothAnime {
  from {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
@keyframes smoothAnime {
  from {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.smoothTrigger {
  opacity: 0;
}

/*==================================================
スーッ（枠線が伸びて出現）
===================================*/
/*枠線が伸びて出現*/
.lineTrigger {
  position: relative;
  /* 枠線が書かれる基点*/
  opacity: 0;
}

.lineTrigger.lineanime {
  -webkit-animation-name: lineAnimeBase;
  animation-name: lineAnimeBase;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes lineAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes lineAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*上下線*/
.lineTrigger::before,
.lineTrigger::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #333;
  /* 枠線の色*/
}

/*左右線*/
.line2::before,
.line2::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  background: #333;
  /* 枠線の色*/
}

/*上線*/
.lineTrigger::before {
  top: 0;
  left: 0;
}

.lineTrigger.lineanime::before {
  -webkit-animation: lineAnime 0.5s linear 0s forwards;
  animation: lineAnime 0.5s linear 0s forwards;
  /*表示されて0秒後に上線が0.5秒かけて表示*/
}

/*右線*/
.line2::before {
  top: 0;
  right: 0;
}

.lineTrigger.lineanime .line2::before {
  -webkit-animation: lineAnime2 0.5s linear 0.5s forwards;
  animation: lineAnime2 0.5s linear 0.5s forwards;
  /*表示されて0.5秒後に右線が0.5秒かけて表示*/
}

/*下線*/
.lineTrigger::after {
  bottom: 0;
  right: 0;
}

.lineTrigger.lineanime::after {
  -webkit-animation: lineAnime 0.5s linear 1s forwards;
  animation: lineAnime 0.5s linear 1s forwards;
  /*表示されて1秒後に下線が0.5秒かけて表示*/
}

/*左線*/
.line2::after {
  bottom: 0;
  left: 0;
}

.lineTrigger.lineanime .line2::after {
  -webkit-animation: lineAnime2 0.5s linear 1.5s forwards;
  animation: lineAnime2 0.5s linear 1.5s forwards;
  /*表示されて1.5秒後に左線が0.5秒かけて表示*/
}

@-webkit-keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
@keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/*枠線内側の要素*/
.lineTrigger.lineanime .lineinappear {
  -webkit-animation: lineInnerAnime 0.5s linear 1.5s forwards;
  animation: lineInnerAnime 0.5s linear 1.5s forwards;
  /*1.5秒後に中央のエリアが0.5秒かけて表示*/
  opacity: 0;
  /*初期値を透過0にする*/
}

@-webkit-keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================
シャッ（背景色が伸びて出現）
===================================*/
/*背景色が伸びて出現（共通）*/
.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
  animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  -webkit-animation-name: bgextendAnimeSecond;
  animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から*/
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
  animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}
@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}
/*右から*/
.bgRLextend::before {
  -webkit-animation-name: bgRLextendAnime;
  animation-name: bgRLextendAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}
@keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}
/*下から*/
.bgDUextend::before {
  -webkit-animation-name: bgDUextendAnime;
  animation-name: bgDUextendAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes bgDUextendAnime {
  0% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: top;
    transform-origin: top;
  }
  100% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}
@keyframes bgDUextendAnime {
  0% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: top;
    transform-origin: top;
  }
  100% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}
/*上から*/
.bgUDextend::before {
  -webkit-animation-name: bgUDextendAnime;
  animation-name: bgUDextendAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes bgUDextendAnime {
  0% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}
@keyframes bgUDextendAnime {
  0% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgUDextendTrigger,
.bgDUextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/*========= レイアウトのためのCSS ===============*/
.wrapper {
  overflow: hidden;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.box {
  width: 93.5%;
  padding: 20px;
  margin: 0 20px 20px 20px;
  background: #666;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bgextend,
.lineTrigger {
  width: 93.5%;
  padding: 20px;
  margin: 0 20px 20px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*==================================================
アニメーション設定
===================================*/
/* アニメーションの回数を決めるCSS*/
.count2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  /*この数字を必要回数分に変更*/
}

.countinfinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  /*無限ループ*/
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time05 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-time1 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.delay-time15 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.delay-time2 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.delay-time25 {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.change-time05 {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.change-time1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.change-time15 {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

.change-time2 {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.change-time25 {
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
}

.float {
  width: 5rem;
  height: 30rem;
  position: fixed;
  bottom: 20vh;
  right: 0px;
  z-index: 10;
}
@media screen and (max-width: 480px) {
  .float {
    width: 100vw;
    height: 30vw;
    bottom: 0;
    z-index: 1000000;
  }
}

.float-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  background-color: #000;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 480px) {
  .float-block {
    display: block;
    -webkit-writing-mode: unset;
    -ms-writing-mode: unset;
    writing-mode: unset;
    height: 27.5%;
  }
}

.float-txt1 {
  background-color: #ececec;
  color: #000;
  height: 90%;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 5px;
  padding: 2.5% 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 820px) {
  .float-txt1 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .float-txt1 {
    font-size: 2rem;
    padding: 2.5% 0;
  }
}

.float-txt2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 95%;
  width: 100%;
  background-color: #fff;
}
.float-txt2__1 {
  background-color: #e02f71;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 7.5px;
  height: 100%;
  padding: 2.5% 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .float-txt2__1 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 820px) {
  .float-txt2__1 {
    font-size: 0.95rem;
  }
}
@media screen and (max-width: 480px) {
  .float-txt2__1 {
    width: 50%;
    font-size: 2rem;
    padding: 5.5% 0;
  }
}
.float-txt2__1:hover {
  opacity: 0.7;
}
.float-txt2__2 {
  background-color: #0097b2;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 7.5px;
  height: 100%;
  padding: 2.5% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .float-txt2__2 {
    width: 50%;
    font-size: 2rem;
    padding: 5.5% 0;
  }
}
.float-txt2__2:hover {
  opacity: 0.7;
}

#splash-logo,
.top-lead,
h1,
h2,
h3 span,
#g-nav,
#pc-nav,
.openbtn,
#footer {
  letter-spacing: 0.1em;
}

.top-lead {
  color: #fff;
}

/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

body.appear .splashbg {
  display: block;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  background-color: #000;
  /*伸びる背景色の設定*/
  -webkit-animation-name: PageAnime;
  animation-name: PageAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  100% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}
@keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  100% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#wrapper {
  opacity: 0;
  /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #wrapper {
  -webkit-animation-name: PageAnimeAppear;
  animation-name: PageAnimeAppear;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

#splash > div {
  font-size: 50px;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

/* splash */
#splash-logo img {
  display: block;
  width: 100%;
  height: 100%;
  width: 40% !important;
  margin: auto;
}
@media screen and (max-width: 480px) {
  #splash-logo img {
    width: 80% !important;
  }
}

/* --------------------------- */
.breadcrumb-wrap {
  padding-bottom: 0;
  width: 80%;
  margin: 0 auto;
  padding: 1.5% 0;
}

.breadcrumb-wrap__nav__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.breadcrumb-wrap__nav__list__item:nth-of-type(1)::after {
  content: "›";
  margin: 0 10px;
  color: #000;
}

.breadcrumb-wrap__nav__list__item a {
  color: #000;
  text-decoration: none;
}

.breadcrumb-wrap__nav__list__item:nth-last-of-type(1) a {
  color: #000;
  font-size: 1rem;
}

/* --------------------------- */
.s-top {
  background-color: #000;
  position: relative;
  z-index: -1;
}
.s-top-wrap {
  aspect-ratio: 7/2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
@media screen and (max-width: 480px) {
  .s-top-wrap {
    aspect-ratio: 7/3;
  }
}
.s-top-wrap__ttl h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
.s-top-wrap__ttl h1 small {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.__inner-s {
  width: 80%;
  margin: 0 auto;
  padding: 5% 0;
}
@media screen and (max-width: 480px) {
  .__inner-s {
    width: 85%;
  }
}

/* top--------------------------- */
.top {
  position: relative;
  z-index: -1;
  height: fit-content;
}
.top-wrap {
  aspect-ratio: 5/3;
  width: 100%;
  height: fit-content;
}
@media screen and (max-width: 480px) {
  .top-wrap {
    aspect-ratio: 3/4;
    padding-top: 7.5%;
  }
}
.top-wrap__ttl {
  padding: 1.5% 7.5%;
  background-color: #ececec;
  padding-top: 10vw;
}
.top-wrap__ttl h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.5;
}
.top-wrap__ttl h1 span {
  position: relative;
  font-size: 4.5rem;
}
.top-wrap__ttl h1 span::before {
  position: absolute;
  top: -7px;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  padding-top: 15px;
  background: -webkit-radial-gradient(circle 10px, #f0c51f 50%, transparent 50%);
  background: radial-gradient(circle 15px, #f0c51f 50%, transparent 50%);
  background: -moz-radial-gradient(circle 10px, #f0c51f 50%, transparent 50%);
}
@media screen and (max-width: 480px) {
  .top-wrap__ttl h1 span::before {
    background: radial-gradient(circle 10px, #f0c51f 50%, transparent 50%);
  }
}
.top-wrap__ttl p {
  font-size: 1.5rem;
  display: block;
  font-weight: 600;
}
.top-wrap img {
  display: block;
  position: absolute;
  top: 65%;
  left: 20%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 30%;
  height: auto;
}
@media screen and (max-width: 480px) {
  .top-wrap img {
    width: 70%;
    left: 40%;
  }
}
.top-wrap video {
  object-fit: cover;
  width: 100vw;
  height: 42.5vw;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 480px) {
  .top-wrap video {
    height: 92.5vw;
  }
}
.top-achieve {
  display: inline-block;
  background-color: #F0C51F;
  padding: 1% 5%;
  position: absolute;
  z-index: 2;
  top: 95%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 480px) {
  .top-achieve {
    top: 92.5%;
    width: 50%;
    text-align: center;
  }
}
.top-achieve::before {
  content: "";
  position: absolute;
  top: 65%;
  left: 42.5%;
  border: 5vw solid transparent;
  border-top: 3vw solid #F0C51F;
}
@media screen and (max-width: 480px) {
  .top-achieve::before {
    top: 99%;
  }
}
.top-achieve p {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  .top-achieve p {
    font-size: 2rem;
  }
}

/* intro--------------------------- */
.scroll-infinity {
  position: relative;
  z-index: -10000;
}

.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 30s infinite linear 0.5s both;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__item {
  width: 16.6666666667vw;
  height: 6.6666666666vw;
}
@media screen and (max-width: 480px) {
  .scroll-infinity__item {
    width: 40vw;
    height: 18.6666666666vw;
  }
}

.scroll-infinity__item > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
.scroll-infinity__list--right {
  animation: infinity-scroll-right 15s infinite linear 0.5s both;
}

.__inner {
  width: 70%;
  margin: 0 auto;
  padding: 5% 0;
}
@media screen and (max-width: 480px) {
  .__inner {
    width: 85%;
  }
}

.f-ttl {
  line-height: 1.25;
  position: relative;
}
.f-ttl hr {
  transform: rotate(-45deg);
  /*修正*/
  width: 140px;
  border: 0;
  /*修正*/
  border-top: 1px solid #333;
  margin: 0;
  padding: 0;
  transform-origin: 0% 0%;
  position: absolute;
  top: 110px;
  left: -20px;
  color: #000;
  background: #000;
}
@media screen and (max-width: 820px) {
  .f-ttl hr {
    width: 100px;
    top: 70px;
  }
}
@media screen and (max-width: 480px) {
  .f-ttl hr {
    width: 75px;
    top: 55px;
    left: -10px;
  }
}
.f-ttl h2 {
  font-size: 5.5rem;
  font-weight: 900;
  text-decoration: underline;
  letter-spacing: 6.25px;
  font-style: oblique;
}
@media screen and (max-width: 480px) {
  .f-ttl h2 {
    letter-spacing: 6.25px;
  }
}
.f-ttl small {
  font-size: 1.25rem;
  font-weight: 600;
  display: block;
  margin-top: 1.5%;
}
@media screen and (max-width: 480px) {
  .f-ttl small {
    font-size: 1.5rem;
  }
}

/* mes--------------------------- */
.mes {
  position: relative;
}
.mes-wrap__txt {
  margin-top: 3.5%;
  width: 60%;
}
@media screen and (max-width: 480px) {
  .mes-wrap__txt {
    width: 100%;
  }
}
.mes-wrap__txt b {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.5%;
}
@media screen and (max-width: 480px) {
  .mes-wrap__txt b {
    font-size: 2.25rem;
  }
}
.mes-wrap__txt p {
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .mes-wrap__txt p {
    font-size: 1.75rem;
  }
}

.__mes-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5%;
}
@media screen and (max-width: 480px) {
  .__mes-flex {
    display: block;
  }
}

.__mes-btn {
  width: 40%;
}
@media screen and (max-width: 480px) {
  .__mes-btn {
    margin-left: auto;
  }
}

.__btn-more a {
  text-decoration: none;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 500;
  color: #000;
  transition: all 0.3s;
}
@media screen and (max-width: 480px) {
  .__btn-more a {
    font-size: 2.25rem;
  }
}
.__btn-more a small {
  position: relative;
}
.__btn-more a small::before {
  content: "→";
  position: absolute;
  top: -45%;
  left: 50%;
  width: 3.5vw;
  height: 3.5vw;
  background-color: #F0C51F;
  border-radius: 10000px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .__btn-more a small::before {
    top: -10%;
    width: 7.5vw;
    height: 7.5vw;
  }
}

/* sol--------------------------- */
.sol {
  background-image: url(../img/t-sol_bg.png);
  background-size: cover;
  background-position: 50%;
  position: relative;
}
.sol-wrap__head {
  text-align: center;
  margin-bottom: 5%;
  margin: 2.5%;
  position: relative;
}
.sol-wrap__head p {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  padding: 1% 5%;
  background-color: #000;
}
@media screen and (max-width: 480px) {
  .sol-wrap__head p {
    font-size: 2.5rem;
  }
}
.sol-wrap__head img {
  width: 8%;
  height: auto;
  position: absolute;
  top: 80%;
  left: 77%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .sol-wrap__head img {
    left: 76%;
  }
}
@media screen and (max-width: 480px) {
  .sol-wrap__head img {
    left: 86.5%;
    width: 10%;
  }
}
.sol-wrap__block {
  position: relative;
}
@media screen and (max-width: 480px) {
  .sol-wrap__block {
    margin-bottom: 3.5%;
  }
}
.sol-wrap__block__ttl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 3.5%;
}
.sol-wrap__block__ttl img {
  display: block;
  width: 100%;
  height: 100%;
  width: 5%;
}
@media screen and (max-width: 480px) {
  .sol-wrap__block__ttl img {
    width: 10%;
  }
}
.sol-wrap__block__ttl p {
  font-size: 1.75rem;
  font-weight: 600;
  position: relative;
  top: 6.25px;
  margin-left: 1.5%;
}
@media screen and (max-width: 480px) {
  .sol-wrap__block__ttl p {
    font-size: 2.25rem;
  }
}
.sol-wrap__block__txt {
  margin: 5% 2.5%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 480px) {
  .sol-wrap__block__txt {
    display: block;
  }
}
.sol-wrap__block__txt:nth-last-of-type(1) {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row-reverse;
}
.sol-wrap__block__txt:nth-last-of-type(1) .__txt-1 {
  margin-right: 3.5%;
}
.sol-wrap__block__txt p {
  width: 80%;
}
@media screen and (max-width: 480px) {
  .sol-wrap__block__txt p {
    width: 100%;
  }
}
.sol-wrap__block__txt p span {
  background-color: #F0C51F;
  padding: 1.25% 2.5%;
  font-weight: 600;
  color: #fff;
  position: relative;
  z-index: 10;
}
.sol-wrap__block__txt p .__txt-1 {
  font-size: 2vw;
}
@media screen and (max-width: 480px) {
  .sol-wrap__block__txt p .__txt-1 {
    font-size: 2rem;
  }
}
.sol-wrap__block__txt p .__txt-2 {
  font-size: 2.5vw;
  margin-left: 3.5%;
}
@media screen and (max-width: 820px) {
  .sol-wrap__block__txt p .__txt-2 {
    font-size: 2.25vw;
  }
}
@media screen and (max-width: 480px) {
  .sol-wrap__block__txt p .__txt-2 {
    font-size: 2rem;
  }
}
.sol-wrap__block__txt img {
  display: block;
  width: 100%;
  height: 100%;
  width: 27.5%;
}
@media screen and (max-width: 480px) {
  .sol-wrap__block__txt img {
    width: 50%;
    margin: 2.5% auto 0;
  }
}
.sol-wrap__block__mes p {
  font-size: 1.35rem;
  text-align: left;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  .sol-wrap__block__mes p {
    font-size: 1.75rem;
  }
}
.sol-wrap__block__img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sol-wrap__block__img__one {
  width: 33%;
  margin: 1.5% 0;
}
@media screen and (max-width: 480px) {
  .sol-wrap__block__img__one {
    width: 49%;
  }
}
.sol-wrap__block__img__one img {
  display: block;
  width: 100%;
  height: 100%;
}
.sol-wrap__block__img__one p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  .sol-wrap__block__img__one p {
    font-size: 1.75rem;
  }
}
.sol-wrap__block .__sol-img {
  display: block;
  width: 100%;
  height: 100%;
  width: 70%;
  position: relative;
  bottom: 75px;
}
@media screen and (max-width: 820px) {
  .sol-wrap__block .__sol-img {
    bottom: 45px;
  }
}
@media screen and (max-width: 480px) {
  .sol-wrap__block .__sol-img {
    bottom: -2.5px;
    width: 100%;
  }
}
.sol-wrap__block__last {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5%;
}
@media screen and (max-width: 480px) {
  .sol-wrap__block__last {
    flex-direction: column-reverse;
  }
}
.sol-wrap__block__last__img {
  width: 35%;
}
@media screen and (max-width: 480px) {
  .sol-wrap__block__last__img {
    width: 100%;
    margin: auto;
    margin-top: 5%;
  }
}
.sol-wrap__block__last__img img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .sol-wrap__block__last__img img {
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}
.sol-wrap__block__last__txt {
  width: 60%;
}
@media screen and (max-width: 480px) {
  .sol-wrap__block__last__txt {
    width: 100%;
  }
}
.sol-wrap__block__last__txt__one1 {
  position: relative;
  z-index: 1;
  text-align: left;
}
@media screen and (max-width: 480px) {
  .sol-wrap__block__last__txt__one1 {
    text-align: left;
  }
}
.sol-wrap__block__last__txt__one1 p .__txt-1 {
  background-color: #0097b2;
  padding: 1.25% 2.5%;
  font-weight: 600;
  color: #fff;
  font-size: 2.25vw;
}
@media screen and (max-width: 480px) {
  .sol-wrap__block__last__txt__one1 p .__txt-1 {
    font-size: 2.25rem;
  }
}
.sol-wrap__block__last__txt__one1 p b {
  display: block;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 3.5% auto;
}
@media screen and (max-width: 480px) {
  .sol-wrap__block__last__txt__one1 p b {
    font-size: 1.75rem;
  }
}
.sol-wrap__block__last__txt__one2 {
  text-align: right;
}
.sol-wrap__block__last__txt__one2 .__txt-1 {
  background-color: #e02f71;
  padding: 1.25% 2.5%;
  font-weight: 600;
  color: #fff;
  font-size: 2vw;
  margin-right: 3.5%;
}
@media screen and (max-width: 480px) {
  .sol-wrap__block__last__txt__one2 .__txt-1 {
    font-size: 2.25rem;
  }
}
.sol-wrap__block__last__txt__one2 .__txt-2 {
  background-color: #e02f71;
  padding: 1.25% 2.5%;
  font-weight: 600;
  color: #fff;
  font-size: 2.25vw;
}
@media screen and (max-width: 480px) {
  .sol-wrap__block__last__txt__one2 .__txt-2 {
    font-size: 2rem;
  }
}

.__sol-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  flex-direction: unset !important;
  width: 65%;
  margin: auto;
  margin-bottom: 10.5%;
}
@media screen and (max-width: 480px) {
  .__sol-flex {
    margin-top: 3.5%;
    margin-left: 5%;
    margin-bottom: 8.5%;
  }
}

.__sol-flex_left {
  width: 62.5%;
  position: relative;
  z-index: 1;
}
.__sol-flex_left img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .__sol-flex_left {
    width: 77.5%;
  }
}

.__sol-flex_1 {
  margin-left: 0;
  margin-right: 0;
}

.__sol-flex_1 p {
  width: 100% !important;
}

.__sol-flex_1 p span {
  margin-left: 0 !important;
}

.__sol-flex_right {
  width: 75%;
  position: absolute;
  z-index: 2;
  top: 68%;
  left: 57.5%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 480px) {
  .__sol-flex_right {
    width: 87.7%;
    left: 50.5%;
  }
}
.__sol-flex_right__txt {
  background-image: url(../img/t-sol_2_2.png);
  background-size: cover;
  background-position: 50%;
  position: relative;
  width: 40vw;
  height: 34.25vw;
  left: 10vw;
}
@media screen and (max-width: 480px) {
  .__sol-flex_right__txt {
    width: 62vw;
    height: 47.25vw;
    width: 80%;
    left: 18.5vw;
  }
}
.__sol-flex_right__txt p {
  position: absolute;
  z-index: 2;
  position: absolute;
  z-index: 2;
  top: 68%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  .__sol-flex_right__txt p {
    width: 82.5%;
  }
}
.__sol-flex_right span {
  background-color: #F0C51F;
  padding: 1.25% 2.5%;
  font-weight: 600;
  color: #fff;
  position: relative;
  z-index: 10;
  font-size: 2.25vw !important;
  margin-left: 9.5rem;
}
@media screen and (max-width: 480px) {
  .__sol-flex_right span {
    font-size: 2rem !important;
    margin-left: 10.25rem;
  }
}
.__sol-flex_right img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  left: 100px;
}
@media screen and (max-width: 480px) {
  .__sol-flex_right img {
    left: 0px;
  }
}

/* work--------------------------- */
.work-wrap__txt {
  margin: 3.5% auto;
}
.work-wrap__txt p {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .work-wrap__txt p {
    font-size: 1.5rem;
  }
}
.work-wrap__exa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: baseline;
}
.work-wrap__exa__block {
  width: 100%;
  margin: 3.5% 0;
}
.work-wrap__exa__block img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
.work-wrap__exa__block span {
  font-size: 1rem;
  font-weight: 600;
  margin: 2.5% 0;
  display: block;
  text-align: left;
}
@media screen and (max-width: 480px) {
  .work-wrap__exa__block span {
    font-size: 2rem;
  }
}
.work-wrap__exa__block__cat {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.work-wrap__exa__block__cat p {
  font-size: 0.85rem;
  font-weight: 500;
  border: solid 2px #000;
  border-radius: 5px;
  padding: 5px 10px;
  margin: 0 2.5px;
}
@media screen and (max-width: 820px) {
  .work-wrap__exa__block__cat p {
    border: solid 1px #000;
    margin: 0 1%;
    padding: 3px 7px;
  }
}
@media screen and (max-width: 480px) {
  .work-wrap__exa__block__cat p {
    font-size: 1.5rem;
  }
}

.__work-width {
  width: 32.5%;
}
@media screen and (max-width: 480px) {
  .__work-width {
    width: 100%;
  }
}

.flow {
  background-image: url(../img/t-flow_bg.png);
  background-size: cover;
  background-position: 50%;
  position: relative;
  background-color: rgba(255, 255, 255, 0.3);
  background-blend-mode: lighten;
}
.flow-wrap {
  position: relative;
  z-index: 3;
}
.flow-wrap__txt {
  margin: 3.5% auto;
}
.flow-wrap__txt p {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .flow-wrap__txt p {
    font-size: 1.5rem;
  }
}
.flow-wrap__img img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .flow-wrap__img img {
    width: 750px;
  }
}

/* plan--------------------------- */
.plan {
  background: white;
  background: linear-gradient(180deg, white 0%, #ededed 24%, #e5e5e5 100%);
}
.plan-wrap__txt {
  margin: 3.5% auto;
}
.plan-wrap__txt p {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .plan-wrap__txt p {
    font-size: 1.75rem;
  }
}
.plan-wrap__txt small {
  font-size: 1rem;
}
@media screen and (max-width: 480px) {
  .plan-wrap__txt small {
    font-size: 1.5rem;
  }
}
.plan-wrap__plan {
  text-align: center;
  border: solid #000 3px;
  margin-bottom: 4.5%;
  margin-top: 4.5%;
  background-color: #fff;
}
@media screen and (max-width: 480px) {
  .plan-wrap__plan {
    margin-top: 7.5%;
  }
}
.plan-wrap__plan span {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  background-color: #f44337;
  padding: 1% 5%;
  position: relative;
  bottom: 25px;
  border: solid #000 3px;
}
@media screen and (max-width: 480px) {
  .plan-wrap__plan span {
    font-size: 2rem;
    bottom: 15px;
  }
}
.plan-wrap__plan img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 1.5% 0;
}
.plan-wrap__plan__task {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 2.5% 2.5% 2.5%;
}
@media screen and (max-width: 480px) {
  .plan-wrap__plan__task {
    flex-wrap: wrap;
  }
}
.plan-wrap__plan__task p {
  font-size: 1.35rem;
  font-weight: 600;
  background-color: #f8a382;
  border-radius: 10px;
  padding: 1% 5%;
}
@media screen and (max-width: 480px) {
  .plan-wrap__plan__task p {
    width: 39%;
    font-size: 1.75rem;
    margin: 0.5%;
  }
}
.plan-wrap__fee {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: baseline;
}
@media screen and (max-width: 480px) {
  .plan-wrap__fee {
    display: block;
  }
}
.plan-wrap__fee__one {
  width: 29%;
  padding: 1.5%;
  border: solid #000 3px;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 480px) {
  .plan-wrap__fee__one {
    width: 90%;
    margin-top: 12.5%;
    padding: 5%;
  }
}
.plan-wrap__fee__one__ttl {
  display: block;
  position: relative;
  bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .plan-wrap__fee__one__ttl {
    bottom: 25px;
  }
}
.plan-wrap__fee__one__ttl span {
  font-size: 1.75rem;
  font-weight: 600;
  border: solid #000 3px;
  width: 75%;
  display: block;
  margin: 0 auto;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .plan-wrap__fee__one__ttl span {
    font-size: 2.75rem;
    line-height: 2.25;
  }
}
.plan-wrap__fee__one .__yellow1 span {
  background-color: #f0c51f;
}
.plan-wrap__fee__one .__blue1 span {
  background-color: #0097b2;
}
.plan-wrap__fee__one .__red1 span {
  background-color: #e02f71;
}
.plan-wrap__fee__one__price {
  background-color: #f9e8a5;
  margin-bottom: 2.5%;
  text-align: center;
}
.plan-wrap__fee__one__price p {
  font-size: 2.5rem;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  .plan-wrap__fee__one__price p {
    font-size: 4.5rem;
  }
}
.plan-wrap__fee__one__price p small {
  font-size: 1.25rem;
}
@media screen and (max-width: 480px) {
  .plan-wrap__fee__one__price p small {
    font-size: 2.25rem;
  }
}
.plan-wrap__fee__one .__yellow2 {
  background-color: #f9e8a5;
}
.plan-wrap__fee__one .__blue2 {
  background-color: #99d5e1;
}
.plan-wrap__fee__one .__red2 {
  background-color: #f3acc6;
}
.plan-wrap__fee__one__list {
  list-style: none;
  margin-bottom: 2.5%;
}
.plan-wrap__fee__one__list li {
  font-size: 1.15rem;
}
@media screen and (max-width: 480px) {
  .plan-wrap__fee__one__list li {
    font-size: 1.75rem;
  }
}
.plan-wrap__fee__one .__border {
  border: 1px solid #000;
  margin-bottom: 2.5%;
}
.plan-wrap__fee__one__mem p {
  font-size: 1.15rem;
}
@media screen and (max-width: 480px) {
  .plan-wrap__fee__one__mem p {
    font-size: 1.75rem;
  }
}

/* faq--------------------------- */
.faq-wrap__head {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 3.5%;
}
@media screen and (max-width: 480px) {
  .faq-wrap__head {
    font-size: 2rem;
  }
}

.accordion-area {
  list-style: none;
  width: 80%;
  margin: 1.5% auto;
}
@media screen and (max-width: 480px) {
  .accordion-area {
    width: 100%;
  }
}

.accordion-area li {
  margin: 15px 0;
}

.title {
  position: relative;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: normal;
  padding: 3% 3% 2% 50px;
  transition: all 0.5s ease;
  color: #000;
  border-bottom: 1px solid #000;
  margin-bottom: 2%;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 1.75rem;
  }
}

.title::before,
.title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #000;
}

.title::before {
  top: 55%;
  left: 15px;
  transform: rotate(0deg);
}

.title::after {
  top: 55%;
  left: 15px;
  transform: rotate(90deg);
}

.title.close::before {
  transform: rotate(45deg);
}

.title.close::after {
  transform: rotate(-45deg);
}

.box {
  display: none;
  background-color: #f6f6f6;
  color: #000;
  padding: 3%;
}
.box p {
  font-size: 1.15rem;
}
@media screen and (max-width: 480px) {
  .box p {
    font-size: 1.5rem;
  }
}

/* ad--------------------------- */
.ad {
  background-color: #f2f2f2;
}
.ad-wrap__head {
  margin-top: 3.5%;
}
.ad-wrap__head span {
  font-size: 1.75rem;
  font-weight: 600;
  background-color: #0097b2;
  color: #fff;
  padding: 1% 2.5%;
}
@media screen and (max-width: 480px) {
  .ad-wrap__head span {
    font-size: 2.25rem;
  }
}
.ad-wrap__txt {
  margin-top: 1.5%;
}
.ad-wrap__txt p {
  font-size: 1.15rem;
}
@media screen and (max-width: 480px) {
  .ad-wrap__txt p {
    font-size: 1.5rem;
  }
}
.ad-wrap__con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3.5%;
}
.ad-wrap__con__list {
  margin-top: 2.5%;
  list-style: none;
}
.ad-wrap__con__list__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1%;
}
.ad-wrap__con__list__item img {
  display: block;
  width: 100%;
  height: 100%;
  width: 25px;
}
.ad-wrap__con__list__item span {
  font-size: 1.5rem;
  font-weight: 600;
  margin-left: 10px;
}
@media screen and (max-width: 480px) {
  .ad-wrap__con__list__item span {
    font-size: 2.25rem;
  }
}
.ad-wrap__con__list p {
  font-size: 1.15rem;
  margin-bottom: 5%;
}
@media screen and (max-width: 480px) {
  .ad-wrap__con__list p {
    font-size: 1.75rem;
  }
}
.ad-wrap__con__img {
  width: 60%;
}
@media screen and (max-width: 480px) {
  .ad-wrap__con__img {
    display: none;
  }
}
.ad-wrap__con__img img {
  display: block;
  width: 100%;
  height: 100%;
}

/* --------------------------- */
.company-wrap {
  width: 65%;
}
@media screen and (max-width: 480px) {
  .company-wrap {
    width: 85%;
  }
}
.company-wrap__list {
  list-style: none;
}
.company-wrap__list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  border-bottom: solid #000 1px;
  margin-bottom: 1.5%;
  padding-bottom: 1.5%;
  line-height: 2;
}
.company-wrap__list__item__txt1 {
  font-size: 1.1rem;
  font-weight: 500;
  width: 30%;
}
@media screen and (max-width: 480px) {
  .company-wrap__list__item__txt1 {
    font-size: 1.75rem;
  }
}
.company-wrap__list__item__txt2 {
  font-size: 1rem;
  font-weight: 400;
  width: 70%;
}
@media screen and (max-width: 480px) {
  .company-wrap__list__item__txt2 {
    font-size: 1.5rem;
  }
}

.map-wrap {
  width: 65%;
  padding-top: 0;
  aspect-ratio: 5/2;
}
@media screen and (max-width: 480px) {
  .map-wrap {
    width: 85%;
  }
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
}

/* --------------------------- */
.contact-wrap {
  width: 65%;
}
@media screen and (max-width: 480px) {
  .contact-wrap {
    width: 85%;
  }
}
.contact-wrap__txt {
  border-bottom: solid 1px #000;
}
.contact-wrap__txt span {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1%;
}
@media screen and (max-width: 480px) {
  .contact-wrap__txt span {
    font-size: 2rem;
  }
}
.contact-wrap__txt p {
  font-size: 1rem;
  font-weight: 400;
  padding-bottom: 2.5%;
}
@media screen and (max-width: 480px) {
  .contact-wrap__txt p {
    font-size: 1.5rem;
  }
}
.contact-wrap__con {
  padding-top: 2.5%;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .contact-wrap__con {
    width: 100%;
  }
}

.form-block {
  margin-bottom: 2.5%;
}
.form-block__ttl {
  margin-bottom: 1%;
}
.form-block__ttl p {
  font-size: 1.1rem;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .form-block__ttl p {
    font-size: 1.75rem;
  }
}
.form-block__ttl p span {
  font-size: 0.85rem;
  background-color: #d80202;
  color: #fff;
  padding: 0.35% 1.5%;
  margin-left: 2.5%;
}
@media screen and (max-width: 480px) {
  .form-block__ttl p span {
    font-size: 1.5rem;
  }
}
.form-block__input {
  width: 100%;
  height: 100%;
}
.form-block__input input {
  aspect-ratio: 16/1;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 820px) {
  .form-block__input input {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .form-block__input input {
    font-size: 1.5rem;
    aspect-ratio: 16/1.5;
  }
}
.form-block__input textarea {
  aspect-ratio: 16/5;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .form-block__input textarea {
    font-size: 1.5rem;
  }
}
.form-block__sen {
  margin-bottom: 1%;
}
.form-block__sen p {
  font-size: 1rem;
}
@media screen and (max-width: 480px) {
  .form-block__sen p {
    font-size: 1.5rem;
  }
}
.form-btn {
  width: 32.5%;
  margin: auto;
  margin-top: 5%;
}
@media screen and (max-width: 480px) {
  .form-btn {
    width: 42.5%;
  }
}
.form-btn button {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 500;
  background-color: #f0c51f;
  border: solid 2.5px #f0c51f;
  color: #fff;
  line-height: 3;
}
@media screen and (max-width: 480px) {
  .form-btn button {
    font-size: 1.75rem;
  }
}

.form-cau {
  font-size: 1rem;
}
@media screen and (max-width: 480px) {
  .form-cau {
    font-size: 1.5rem;
  }
}

/* --------------------------- */
.privacy-wrap h2 {
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  .privacy-wrap h2 {
    font-size: 2rem;
  }
}
.privacy-wrap p {
  font-size: 1rem;
  margin-bottom: 2.5%;
}
@media screen and (max-width: 480px) {
  .privacy-wrap p {
    font-size: 1.5rem;
  }
}
.privacy-wrap h3 {
  font-size: 1.15rem;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .privacy-wrap h3 {
    font-size: 1.75rem;
  }
}

/* --------------------------- */
.u-top {
  aspect-ratio: 5/2;
  width: 100%;
  height: fit-content;
  padding-top: 6.5%;
}
@media screen and (max-width: 480px) {
  .u-top {
    aspect-ratio: 5/8;
    padding-top: 10%;
  }
}
.u-top-wrap {
  background-image: url(../img/u-fv_bg.png);
  background-size: cover;
  background-position: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3.25% 1%;
  height: fit-content;
}
@media screen and (max-width: 480px) {
  .u-top-wrap {
    display: block;
    padding: 12.25% 0;
  }
}
.u-top-wrap__lef {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .u-top-wrap__lef {
    width: 85%;
    margin: 5% auto 0;
  }
}
.u-top-wrap__lef__ttl h1 {
  display: inline-block;
  font-size: 2rem;
  background-color: #2e425a;
  padding: 0.5% 1.5%;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .u-top-wrap__lef__ttl h1 {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 480px) {
  .u-top-wrap__lef__ttl h1 {
    font-size: 3rem;
    text-align: center;
    padding: 2%;
    width: 98%;
  }
}
.u-top-wrap__lef__ttl p {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 2.5%;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .u-top-wrap__lef__ttl p {
    font-size: 2rem;
    text-align: center;
  }
}
.u-top-wrap__lef .u-top-wrap__rig {
  display: none;
}
@media screen and (max-width: 480px) {
  .u-top-wrap__lef .u-top-wrap__rig {
    display: block;
    width: 90%;
    margin: 5% auto 0;
  }
}
.u-top-wrap__lef .u-top-wrap__rig img {
  display: block;
  width: 100%;
  height: 100%;
}
.u-top-wrap__lef__point {
  margin-top: 5%;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .u-top-wrap__lef__point {
    margin-top: 0;
    position: relative;
    bottom: 25px;
  }
}
.u-top-wrap__lef__point strong {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  .u-top-wrap__lef__point strong {
    font-size: 2.75rem;
  }
}
.u-top-wrap__lef__point strong b {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 900;
}
@media screen and (max-width: 480px) {
  .u-top-wrap__lef__point strong b {
    font-size: 9.5rem;
  }
}
.u-top-wrap__lef__point span {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  display: block;
}
@media screen and (max-width: 480px) {
  .u-top-wrap__lef__point span {
    font-size: 2.75rem;
  }
}
.u-top-wrap__lef__btn {
  width: 50%;
  margin: auto;
  margin-top: 2.5%;
}
@media screen and (max-width: 480px) {
  .u-top-wrap__lef__btn {
    width: 80%;
  }
}
.u-top-wrap__lef__btn a {
  display: block;
  text-decoration: none;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 500;
  background-color: #ff5757;
  transition: all 0.3s;
  color: #fff;
  width: 100%;
  line-height: 2.75;
  border-radius: 10000px;
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (max-width: 480px) {
  .u-top-wrap__lef__btn a {
    font-size: 3rem;
  }
}
.u-top-wrap__rig {
  width: 40%;
}
@media screen and (max-width: 480px) {
  .u-top-wrap__rig {
    display: none;
  }
}
.u-top-wrap__rig img {
  display: block;
  width: 100%;
  height: 100%;
}

.u-sol {
  background-image: url(../img/u-sol_bg.png);
  background-size: cover;
  background-position: 50%;
}
.u-sol-wrap__ttl h2 {
  font-size: 1.75rem;
  text-align: center;
  font-weight: 600;
  color: #2e435a;
}
@media screen and (max-width: 480px) {
  .u-sol-wrap__ttl h2 {
    font-size: 2.25rem;
  }
}
.u-sol-wrap__con__num {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 5%;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .u-sol-wrap__con__num {
    gap: 20px 10px;
  }
}
.u-sol-wrap__con__num__block {
  width: 21.25%;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .u-sol-wrap__con__num__block {
    width: 45%;
    height: auto;
  }
}
.u-sol-wrap__con__num__block small {
  font-size: 1.5rem;
  background-color: #2e435a;
  color: #fff;
  width: 3.5vw;
  height: 3.5vw;
  border-radius: 10000px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: auto;
}
@media screen and (max-width: 480px) {
  .u-sol-wrap__con__num__block small {
    width: 10vw;
    height: 10vw;
    font-size: 2rem;
  }
}
.u-sol-wrap__con__num__block img {
  display: block;
  width: 100%;
  height: 100%;
  width: 35%;
  height: auto;
  width: 7.5vw;
  height: 7.5vw;
  object-fit: contain;
  margin: 10% auto;
}
@media screen and (max-width: 480px) {
  .u-sol-wrap__con__num__block img {
    width: 15vw;
    height: 15vw;
  }
}
.u-sol-wrap__con__num__block strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 6.25%;
  color: #2e435a;
}
@media screen and (max-width: 480px) {
  .u-sol-wrap__con__num__block strong {
    font-size: 2rem;
  }
}
.u-sol-wrap__con__num__block ul {
  list-style: none;
}
.u-sol-wrap__con__num__block ul li {
  text-align: center;
  font-size: 1rem;
  color: #2e435a;
}
@media screen and (max-width: 480px) {
  .u-sol-wrap__con__num__block ul li {
    font-size: 1.5rem;
  }
}
.u-sol-wrap__pro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 20px;
}
.u-sol-wrap__pro__one {
  text-align: center;
  width: 42%;
  position: relative;
  padding: 3.25%;
  background-color: #f6cfd2;
  border: 2px solid #f6cfd2;
}
.u-sol-wrap__pro__one ::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 20px;
  bottom: -20px;
  border-top: 25px solid #f6cfd2;
  border-right: 25px solid transparent;
  border-left: 25px solid transparent;
}
.u-sol-wrap__pro__one strong {
  font-size: 1.25rem;
  font-weight: 600;
}
.u-sol-wrap__pro__one p {
  font-size: 1rem;
  margin-top: 2.5%;
}

.__u-ttl {
  margin-bottom: 4.25%;
}
@media screen and (max-width: 480px) {
  .__u-ttl {
    margin-bottom: 7.25%;
  }
}
.__u-ttl h2 {
  font-size: 2rem;
  text-align: center;
  font-weight: 800;
}
@media screen and (max-width: 480px) {
  .__u-ttl h2 {
    font-size: 2.5rem;
  }
}

.u-ans {
  background-color: #2e435a;
}
.u-ans-wrap {
  text-align: center;
}
.u-ans-wrap__ttl {
  color: #fff;
  border-bottom: 2px dashed #fff;
  display: inline-block;
}
.u-ans-wrap__pro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 40px 20px;
}
@media screen and (max-width: 820px) {
  .u-ans-wrap__pro {
    gap: 9px 3px;
  }
}
@media screen and (max-width: 480px) {
  .u-ans-wrap__pro {
    flex-direction: column;
  }
}
.u-ans-wrap__pro__one {
  text-align: center;
  width: 40%;
  position: relative;
  padding: 3.25%;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .u-ans-wrap__pro__one {
    width: 40%;
  }
}
@media screen and (max-width: 480px) {
  .u-ans-wrap__pro__one {
    width: 93.5%;
  }
}
.u-ans-wrap__pro__one strong {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2e425a;
}
@media screen and (max-width: 480px) {
  .u-ans-wrap__pro__one strong {
    font-size: 2rem;
  }
}
.u-ans-wrap__pro__one p {
  font-size: 1rem;
  margin-top: 2.5%;
  color: #2e425a;
}
@media screen and (max-width: 480px) {
  .u-ans-wrap__pro__one p {
    font-size: 1.5rem;
  }
}

.u-strong {
  background-image: url(../img/u-strong_bg.png);
  background-size: cover;
  background-position: 50%;
}
.u-strong-wrap__ttl h2 {
  color: #2e425a;
  display: inline-block;
  width: 100%;
  padding: 1.5% 0%;
  text-align: left;
}
.u-strong-wrap__con__block {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-evenly;
  align-items: normal;
  padding: 5% 1.5%;
  width: 85%;
}
@media screen and (max-width: 480px) {
  .u-strong-wrap__con__block {
    width: 100%;
    justify-content: space-between;
  }
}
.u-strong-wrap__con__block:nth-of-type(2) {
  margin: auto;
  margin-bottom: 2.5%;
}
.u-strong-wrap__con__block:nth-of-type(3) {
  margin-left: auto;
}
.u-strong-wrap__con__block__left {
  width: 17.5%;
}
@media screen and (max-width: 480px) {
  .u-strong-wrap__con__block__left {
    width: 25%;
  }
}
.u-strong-wrap__con__block__left img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.u-strong-wrap__con__block__right {
  width: 60%;
}
@media screen and (max-width: 480px) {
  .u-strong-wrap__con__block__right {
    width: 70%;
  }
}
.u-strong-wrap__con__block__right strong {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2e425a;
}
@media screen and (max-width: 480px) {
  .u-strong-wrap__con__block__right strong {
    font-size: 2rem;
  }
}
.u-strong-wrap__con__block__right p {
  font-size: 1rem;
  margin-top: 1.5%;
  color: #2e425a;
}
@media screen and (max-width: 480px) {
  .u-strong-wrap__con__block__right p {
    font-size: 1.5rem;
  }
}
.u-strong-wrap__con__block__right a {
  color: #267ddc;
}
@media screen and (max-width: 480px) {
  .u-strong-wrap__con__block__right a {
    font-size: 1.5rem;
  }
}

.__head-line h2 {
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #333;
}
.__head-line h2::after {
  position: absolute;
  top: 100%;
  left: 8%;
  transform: translateX(-50%) skew(-25deg);
  height: 30px;
  width: 10px;
  border-right: 2px solid #2e425a;
  background-color: #f6f6f8;
  content: "";
}
@media screen and (max-width: 480px) {
  .__head-line h2::after {
    height: 15px;
  }
}

.u-cta {
  background-color: #ff5757;
}
@media screen and (max-width: 480px) {
  .u-cta-wrap {
    padding: 7.5% 0;
  }
}
.u-cta .u-top-wrap__lef__point {
  margin-top: 0;
}
@media screen and (max-width: 480px) {
  .u-cta .u-top-wrap__lef__point {
    bottom: 0;
    font-size: 2.5rem;
  }
}
.u-cta .u-top-wrap__lef__btn a {
  background-color: #fff;
  color: #ff5757;
}
@media screen and (max-width: 480px) {
  .u-cta .u-top-wrap__lef__btn a {
    font-size: 2.25rem;
  }
}

.u-fea {
  background-image: url(../img/u-fea_bg.png);
  background-size: cover;
  background-position: 50%;
}
.u-fea-wrap__ttl h2 {
  color: #2e425a;
  display: inline-block;
  width: 100%;
  padding: 1.5% 0%;
  text-align: left;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__ttl h2 {
    padding: 0;
  }
}
.u-fea-wrap__ttl h2::after {
  background-color: #fff;
}
.u-fea-wrap__txt p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2e425a;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__txt p {
    font-size: 1.75rem;
  }
}
.u-fea-wrap__con__block1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5%;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block1 {
    display: block;
  }
}
.u-fea-wrap__con__block1__left {
  width: 40%;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block1__left {
    width: 100%;
  }
}
.u-fea-wrap__con__block1__left__1 strong {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2e425a;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block1__left__1 strong {
    font-size: 2.25rem;
  }
}
.u-fea-wrap__con__block1__left__1__txt {
  margin-top: 1%;
  margin-left: 3.5%;
}
.u-fea-wrap__con__block1__left__1__txt p {
  font-size: 1rem;
  color: #2e425a;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block1__left__1__txt p {
    font-size: 1.75rem;
  }
}
.u-fea-wrap__con__block1__left hr {
  border-top: dotted 3px #2e425a;
}
.u-fea-wrap__con__block1__left__2 strong {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff5757;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block1__left__2 strong {
    font-size: 2.25rem;
  }
}
.u-fea-wrap__con__block1__left__2__txt {
  margin-top: 1%;
  margin-left: 3.5%;
}
.u-fea-wrap__con__block1__left__2__txt p {
  font-size: 1rem;
  color: #ff5757;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block1__left__2__txt p {
    font-size: 1.75rem;
  }
}
.u-fea-wrap__con__block1__left__3 {
  margin-top: 3.5%;
  margin-left: 3.5%;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block1__left__3__txt p {
    font-size: 1.75rem;
  }
}
.u-fea-wrap__con__block1__right {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block1__right {
    width: 100%;
  }
}
.u-fea-wrap__con__block1__right img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block1__right img {
    width: 750px;
  }
}
.u-fea-wrap__con__block2 {
  margin-top: 5%;
}
.u-fea-wrap__con__block2__head strong {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2e425a;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block2__head strong {
    font-size: 2.25rem;
  }
}
.u-fea-wrap__con__block2__con {
  margin-top: 2.5%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 20px 20px;
}
@media screen and (max-width: 820px) {
  .u-fea-wrap__con__block2__con {
    gap: 10px 10px;
  }
}
.u-fea-wrap__con__block2__con__one {
  background-color: #f6f6f6;
  width: 42.5%;
  padding: 2.5%;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .u-fea-wrap__con__block2__con__one {
    width: 43%;
  }
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block2__con__one {
    width: 100%;
    padding: 3.5%;
  }
}
.u-fea-wrap__con__block2__con__one strong {
  font-size: 1.25rem;
  color: #2e425a;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block2__con__one strong {
    font-size: 2rem;
  }
}
.u-fea-wrap__con__block2__con__one__txt {
  display: flex;
  margin-top: 2.5%;
}
.u-fea-wrap__con__block2__con__one__txt span {
  background-color: #2e425a;
  padding: 1% 1.5%;
  color: #fff;
  font-weight: 600;
  width: 12%;
  height: 100%;
  text-align: center;
  margin-right: 2.5%;
  border-radius: 5px;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block2__con__one__txt span {
    font-size: 1.75rem;
  }
}
.u-fea-wrap__con__block2__con__one__txt p {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block2__con__one__txt p {
    font-size: 1.75rem;
  }
}
.u-fea-wrap__con__block2__con__one__txt p .__red {
  color: #ff5757;
  padding: 1% 0;
  display: block;
}
.u-fea-wrap__con__block3 {
  margin-top: 5%;
}
.u-fea-wrap__con__block3__head strong {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2e425a;
  margin-bottom: 1%;
  display: block;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block3__head strong {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block3__head p {
    font-size: 1.5rem;
  }
}
.u-fea-wrap__con__block3__con img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block3__con img {
    width: 750px;
  }
}
.u-fea-wrap__con__block4 {
  margin-top: 5%;
}
.u-fea-wrap__con__block4__head strong {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2e425a;
  margin-bottom: 1%;
  display: block;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block4__head strong {
    font-size: 2.25rem;
  }
}
.u-fea-wrap__con__block4__con span {
  text-align: center;
  display: block;
  font-size: 1.25rem;
  margin-top: 2.5%;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block4__con span {
    font-size: 1.75rem;
  }
}
.u-fea-wrap__con__block4__con img {
  display: block;
  width: 100%;
  height: 100%;
  width: 80%;
  margin: 2.5% auto;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block4__con img {
    width: 100%;
  }
}
.u-fea-wrap__con__block4__con b {
  font-size: 1.5rem;
  color: #ff5757;
  text-align: center;
  display: block;
}
@media screen and (max-width: 480px) {
  .u-fea-wrap__con__block4__con b {
    font-size: 2rem;
  }
}

.u-price {
  background-color: #2e425a;
}
.u-price-wrap__ttl h2 {
  color: #fff;
  text-align: left;
  border-bottom: 2px solid #fff;
}
.u-price-wrap__ttl h2::after {
  border-right: 2px solid #fff;
  background-color: #2e425a;
  content: "";
}
.u-price-wrap__con__fea {
  width: 80%;
  margin: 5% auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .u-price-wrap__con__fea {
    width: 100%;
    margin-bottom: 10%;
  }
}
.u-price-wrap__con__fea p {
  width: 30%;
  font-size: 1.35rem;
  font-weight: 600;
  padding: 1.5% 0;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .u-price-wrap__con__fea p {
    font-size: 1.5rem;
  }
}
.u-price-wrap__con__fea p:nth-of-type(1) {
  background-color: #ff5757;
}
.u-price-wrap__con__fea p:nth-of-type(2) {
  background-color: #0097b2;
}
.u-price-wrap__con__fea p:nth-of-type(3) {
  background-color: #ffbd59;
}
.u-price-wrap__con__menu {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .u-price-wrap__con__menu {
    width: 100%;
  }
}
.u-price-wrap__con__menu__one {
  width: 45%;
  background-color: #fff;
  text-align: center;
  position: relative;
  padding-bottom: 3.75%;
}
@media screen and (max-width: 480px) {
  .u-price-wrap__con__menu__one {
    width: 48.25%;
  }
}
.u-price-wrap__con__menu__one:nth-of-type(1) strong {
  background-color: #ff5757;
}
.u-price-wrap__con__menu__one:nth-last-of-type(1) strong {
  background-color: #778696;
}
.u-price-wrap__con__menu__one strong {
  font-size: 1.5rem;
  display: block;
  color: #fff;
  width: 70%;
  margin: auto;
  position: relative;
  bottom: 20px;
  padding: 1% 0;
}
@media screen and (max-width: 480px) {
  .u-price-wrap__con__menu__one strong {
    font-size: 1.75rem;
    bottom: 13.25px;
  }
}
.u-price-wrap__con__menu__one span {
  font-size: 1.5rem;
  display: block;
  color: #2e425a;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .u-price-wrap__con__menu__one span {
    font-size: 1.75rem;
  }
}
.u-price-wrap__con__menu__one span b {
  font-size: 1rem;
}
@media screen and (max-width: 480px) {
  .u-price-wrap__con__menu__one span b {
    font-size: 1.5rem;
  }
}
.u-price-wrap__con__menu__one p {
  display: block;
}
@media screen and (max-width: 480px) {
  .u-price-wrap__con__menu__one p {
    font-size: 1.25rem;
  }
}

.u-con {
  background-image: url(../img/u-cta_bg.png);
  background-size: cover;
  background-position: 50%;
}
.u-con-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .u-con-wrap {
    display: block;
  }
}
.u-con-wrap__left {
  width: 60%;
}
@media screen and (max-width: 480px) {
  .u-con-wrap__left {
    width: 100%;
  }
}
.u-con-wrap__left__ttl {
  text-align: left;
  color: #2e425a;
  margin-bottom: 10%;
}
@media screen and (max-width: 480px) {
  .u-con-wrap__left__ttl {
    margin-bottom: 5%;
  }
}
.u-con-wrap__left__ttl h2 {
  font-size: 1.75rem;
  font-weight: 600;
  text-align: left;
}
@media screen and (max-width: 480px) {
  .u-con-wrap__left__ttl h2 {
    font-size: 2.25rem;
    text-align: center;
    display: block;
  }
}
.u-con-wrap__left__ttl h2 span {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  .u-con-wrap__left__ttl h2 span {
    font-size: 1.5rem;
  }
}
.u-con-wrap__left__con {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .u-con-wrap__left__con {
    display: block;
  }
}
.u-con-wrap__left__con__block {
  width: 45%;
}
@media screen and (max-width: 480px) {
  .u-con-wrap__left__con__block {
    width: 100%;
  }
  .u-con-wrap__left__con__block:nth-last-of-type(2) {
    margin-bottom: 5%;
  }
}
.u-con-wrap__left__con__block span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2e425a;
  text-align: center;
  display: block;
}
@media screen and (max-width: 480px) {
  .u-con-wrap__left__con__block span {
    font-size: 1.75rem;
  }
}
.u-con-wrap__left__con__block .u-top-wrap__lef__btn {
  width: 100%;
}
.u-con-wrap__left__con__block .u-top-wrap__lef__btn a {
  background-color: #fff;
  color: #ff5757;
}
@media screen and (max-width: 480px) {
  .u-con-wrap__left__con__block .u-top-wrap__lef__btn a {
    font-size: 2.25rem;
  }
}
.u-con-wrap__right {
  width: 35%;
}
@media screen and (max-width: 480px) {
  .u-con-wrap__right {
    width: 80%;
    margin: auto;
    margin-top: 3.25%;
  }
}
.u-con-wrap__right img {
  display: block;
  width: 100%;
  height: 100%;
}
