@charset "UTF-8";
/* 基本設定 */
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 700;
  src: url("../webfonts/ZenKakuGothicNew-Bold.woff2") format("woff2"), url("../webfonts/ZenKakuGothicNew-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../webfonts/NotoSansJP-Medium.woff2") format("woff2"), url("../webfonts/NotoSansJP-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 600;
  src: url("../webfonts/Jost-SemiBold.woff2") format("woff2"), url("../webfonts/Jost-SemiBold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Antonio";
  font-style: normal;
  font-weight: 400;
  src: url("../webfonts/Antonio-Regular.woff2") format("woff2"), url("../webfonts/Antonio-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Reenie Beanie";
  font-style: normal;
  font-weight: 400;
  src: url("../webfonts/ReenieBeanie-Regular.woff2") format("woff2"), url("../webfonts/ReenieBeanie-Regular.woff") format("woff");
  font-display: swap;
}
/*============================================
	― 変数設定
=============================================*/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 GLOBAL 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
/*============================================
	― PC表示
=============================================*/
.pc-disblock {
  display: block;
}

.pc-disline {
  display: inline;
}

.pc-dislineblock {
  display: inline-block;
}

.pc-none {
  display: none;
}

.sp-disblock {
  display: none;
}

.sp-disline {
  display: none;
}

.sp-dislineblock {
  display: none;
}

/*============================================
    ― スマホ表示切り替え
=============================================*/
@media screen and (max-width: 767px) {
  .pc-disblock {
    display: none;
  }
  .pc-disline {
    display: none;
  }
  .pc-dislineblock {
    display: none;
  }
  .sp-disblock {
    display: block;
  }
  .sp-disline {
    display: inline;
  }
  .sp-dislineblock {
    display: inline-block;
  }
  .sp-none {
    display: none;
  }
}
/* modules */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 HEADER 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
header {
  overflow: hidden;
  font-family: "Zen Kaku Gothic New";
}
header nav {
  position: relative;
  box-shadow: rgba(86, 139, 114, 0.2) 0 2px 8px 0;
  background: #FDFCFC;
}
header nav::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  width: 100%;
  height: 5px;
}
header nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto 0;
  padding: 25px 2% 20px 2%;
}
header nav .inner .left {
  display: flex;
  align-items: center;
}
header nav .inner .left .logo {
  display: flex;
  align-items: center;
  line-height: 1.1;
}
header nav .inner .left .logo .icon {
  width: 80px;
  height: auto;
}
header nav .inner .left .logo span {
  font-family: "Jost";
  font-weight: 600;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 45px;
  padding: 0 0 0 10px;
}
header nav .inner .left h1 {
  color: #074062;
  font-family: "Jost";
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 2px;
  font-size: 23px;
  padding: 0 0 0 30px;
}
header nav .inner .right .button {
  display: inline-block;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
  background: linear-gradient(90deg, #e2611b, #f2a02b);
  padding: 5px 50px 10px 50px;
}
header nav .inner .right .button .sub {
  text-align: center;
  margin: 0 0 0 0;
}
header nav .inner .right .button .sub p {
  display: inline-block;
  border: solid 2px #e97a21;
  border-radius: 10px;
  background: #ffffff;
  padding: 0 30px 0 30px;
}
header nav .inner .right .button .sub p span {
  font-weight: 700;
  background: linear-gradient(90deg, #e2611b, #f2a02b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 15px;
}
header nav .inner .right .button .main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 0 0 0;
}
header nav .inner .right .button .main .icon {
  width: 25px;
}
header nav .inner .right .button .main p {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  padding: 0 10px 0 10px;
}
header nav .inner .right .button .main .arrow {
  width: 20px;
}
header .first-view {
  position: relative;
  background-image: radial-gradient(at 87% 78%, hsl(168, 68%, 86%) 0px, transparent 50%), radial-gradient(at 19% 43%, hsl(120, 100%, 98%) 0px, transparent 50%), radial-gradient(at 80% 100%, hsl(132, 87%, 96%) 0px, transparent 50%);
  background-color: hsl(70, 64%, 96%);
  padding: 50px 0 60px 0;
}
header .first-view .back {
  position: absolute;
  z-index: 1;
  display: inline-block;
  font-family: "Antonio";
  line-height: 1;
  opacity: 0.1;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: multiply;
  letter-spacing: 7px;
  font-size: 98px;
}
header .first-view .back.left-top {
  left: 0;
  top: 0;
}
header .first-view .back.right-bottom {
  right: 0;
  bottom: 0;
}
header .first-view .inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;

  max-width: 1920px;
  margin: 0 auto 0;
  padding: 0 5% 0 5%;
}
header .first-view .inner .text {
  padding: 0 0 0 80px;
}
header .first-view .inner .text h3 {
  display: flex;
  align-items: center;
}
header .first-view .inner .text h3::before {
  content: "";
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  width: 100px;
  height: 2px;
}
header .first-view .inner .text h3 .catch {
  display: inline-block;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  padding: 0 0 0 10px;
}
header .first-view .inner .text h2 .line {
  transform: skew(-10deg);
}
header .first-view .inner .text h2 .line .catch {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 46px;
}
header .first-view .inner .text h2 .line .catch .small {
  font-size: 0.75em;
}
header .first-view .inner .text h2 .line .catch::before {
  content: "";
  position: absolute;
  opacity: 0.3;
  left: 0;
  bottom: 10px;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  width: 100%;
  height: 9px;
}
header .first-view .inner .text h2 .line02 {
  display: flex;
  align-items: center;
  margin: 10px 0 0 0;
}
header .first-view .inner .text h2 .line02 .square {
  display: inline-block;
  line-height: 1.1;
  border: solid 4px #3c766f;
  padding: 2px 24px 5px 24px;
  /* フェードアニメーション */
}
header .first-view .inner .text h2 .line02 .square .fade-text {
  opacity: 1;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  transition: opacity 0.5s ease; /* フェードアウト＆イン */
  font-size: 49px;
}
header .first-view .inner .text h2 .line02 .square .fade-text.hidden {
  opacity: 0;
}
header .first-view .inner .text h2 .line02 .plane {
  display: inline-block;
  transform: skew(-10deg);
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 53px;
  padding: 0 0 0 10px;
}
header .first-view .inner .text h2 .line02 .plane .small {
  font-size: 0.75em;
}
header .first-view .inner .text .category {
  display: flex;
  align-items: center;
  margin: 20px 0 0 0;
}
header .first-view .inner .text .category li {
  overflow: hidden;
  position: relative;
  color: #ffffff;
  font-weight: 700;
  box-shadow: rgba(45, 105, 91, 0.2) 0 7px 29px 0;
  background: linear-gradient(45deg, #3c766f, #5d9a92);
  letter-spacing: 2px;
  font-size: 25px;
  margin: 0 10px 0 0;
  padding: 2px 20px 2px 20px;
}
header .first-view .inner .text .category li::before {
  content: "";
  position: absolute;
  opacity: 0.8;
  left: -100%; /* 初期位置を画面外に設定 */
  top: 0;
  transform: skewX(-30deg); /* 光に角度をつける */
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%); /* 光のグラデーション */
  mix-blend-mode: overlay;
  animation: shine 4s infinite forwards; /* アニメーションの適用 */
  width: 150%; /* 画面を覆う幅 */
  height: 100%;
}
@keyframes shine {
  0% {
    left: -150%; /* 開始位置 */
  }
  50% {
    left: 150%; /* 終了位置 */
  }
  100% {
    left: 150%; /* 停止位置を維持 */
  }
}
header .first-view .inner .text .category li:last-child {
  margin: 0 0 0 0;
}
header .first-view .inner .text .sentence {
  margin: 20px 0 0 0;
}
header .first-view .inner .text .sentence p {
  color: #41767f;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 2px;
  font-size: 20px;
}
header .first-view .inner .text .sentence p br.br01 {
  display: none;
}
header .first-view .inner .text .sentence p br.br02 {
  display: block;
}
header .first-view .inner .text .sentence p br.br03 {
  display: none;
}
header .first-view .inner .text .feat {
  margin: 20px 0 0 0;
}
header .first-view .inner .text .feat ul {
  display: flex;
}
header .first-view .inner .text .feat ul li {
  display: flex;
  align-items: center;
  margin: 0 15px 0 0;
}
header .first-view .inner .text .feat ul li img {
  width: 50px;
  height: auto;
}
header .first-view .inner .text .feat ul li p {
  display: inline-block;
  line-height: 1.1;
  background: linear-gradient(45deg, #b7812b, #d98c29);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 20px;
}
header .first-view .inner .text .feat ul li p .number {
  font-family: "Jost";
  font-size: 55px;
}
header .first-view .inner .text .feat ul li p .middle {
  font-size: 1.2em;
}
header .first-view .inner .text .feat ul li p .kome {
  font-size: 0.6em;
}
header .first-view .inner .text .feat ul li:last-child {
  margin: 0 0 0 0;
}
header .first-view .inner .text .feat .caution {
  color: #a8bdbe;
  font-size: 13px;
  margin: 30px 0 0 0;
}
header .first-view .inner .splide {
  position: relative;
  width: 730px;
}
header .first-view .inner .splide .badge {
  position: absolute;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  left: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
}
header .first-view .inner .splide .badge::before {
  content: "";å
  position: absolute;
  z-index: 1;
  z-index: 2;
  opacity: 0.4;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: solid 3px #ffffff;
  border-radius: 50%;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}
header .first-view .inner .splide .badge .bg {
  position: absolute;
  opacity: 0.92;
  left: 50%;
  top: 50%;
  animation: rotate 12s linear infinite;
  width: 100%;
  height: 100%;
}
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
header .first-view .inner .splide .badge .cover {
  position: relative;
  z-index: 2;
  text-align: center;
}
header .first-view .inner .splide .badge .cover .semi {
  display: inline-flex;
  align-items: center;
  border-radius: 80px;
  background: #ffffff;
  padding: 3px 15px 3px 15px;
}
header .first-view .inner .splide .badge .cover .semi img {
  width: 14px;
}
header .first-view .inner .splide .badge .cover .semi span {
  color: #3c766f;
  font-size: 16px;
  padding: 0 3px 0 3px;
}
header .first-view .inner .splide .badge .cover .line {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  line-height: 1.3;
  margin: 10px 0 0 0;
}
header .first-view .inner .splide .badge .cover .line .tate {
  writing-mode: vertical-rl;
  letter-spacing: 2px;
  text-align: center;
  font-size: 22px;
}
header .first-view .inner .splide .badge .cover .line .number {
  font-family: "Jost";
  line-height: 1.1;
  letter-spacing: -1px;
  font-size: 43px;
}
header .first-view .inner .splide .badge .cover .line .en {
  font-family: "Jost";
  font-size: 28px;
}
header .first-view .inner .splide .badge .cover .line.line02 {
  margin: 0 0 0 0;
}
header .first-view .inner .splide .splide__track {
  width: 100%;
}
header .first-view .inner .splide .splide__track .splide__list {
  width: 100%;
}
header .first-view .inner .splide .splide__track .splide__list .splide__slide {
  position: relative;
  box-shadow: rgba(45, 105, 91, 0.2) 0 7px 29px 0;
  width: 100%;
  height: 450px;
}
header .first-view .inner .splide .splide__track .splide__list .splide__slide .thumb {
  overflow: hidden;
  position: relative;
  line-height: 0;
  width: 100%;
  height: auto;
}

header .first-view .inner .splide .splide__track .splide__list .splide__slide .thumb img {
  transition: 8s ease-out;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
header .first-view .inner .splide .splide__track .splide__list .splide__slide .en {
  position: absolute;
  z-index: 12;
  color: #3c766f;
  font-family: "Reenie Beanie";
  opacity: 0;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -80px) rotate(0deg);
  letter-spacing: 2px;
  white-space: nowrap;
  transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s;
  font-size: 40px;
}
header .first-view .inner .splide .splide__track .splide__list .splide__slide .line {
  position: absolute;
  z-index: 200;
  opacity: 0;
  text-align: center;
  width: 100%;
}
header .first-view .inner .splide .splide__track .splide__list .splide__slide .line p {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 2px;
  letter-spacing: 3px;
  font-size: 23px;
  padding: 5px 45px 5px 55px;
}
header .first-view .inner .splide .splide__track .splide__list .splide__slide .line.line01 {
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50px) rotate(0deg);
  transition: opacity 0.3s ease 1s, transform 0.3s ease 1s;header .first-view .inner .splide .splide__track .splide__list .splide__slide .line.line01
}
header .first-view .inner .splide .splide__track .splide__list .splide__slide .line.line01 p {
  color: #3c766f;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  background: #ffffff;
}
header .first-view .inner .splide .splide__track .splide__list .splide__slide .line.line02 {
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50px) rotate(0deg);
  transition: opacity 0.3s ease 1.3s, transform 0.3s ease 1.3s;
}
header .first-view .inner .splide .splide__track .splide__list .splide__slide .line.line02 p {
  color: #ffffff;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  background: linear-gradient(90deg, #3c766f, #5d9a92);
}
header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .thumb img {
  transform: scale(1.15);
  transition-delay: 0s;
}
header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .thumb::before {
  opacity: 0.4;
  transform: translate(-50%, -50%);
  width: calc(94% + 8px);
  height: 94%;
}
header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .en {
  opacity: 1;
  transform: translate(-50%, -150px) rotate(-3deg);
}
header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .line {
  opacity: 1;
}
header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .line.line01 {
  transform: translate(calc(-50% - 40px), -100px) rotate(0deg);
}
header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .line.line02 {
  margin-top: 20px;
  transform: translate(calc(-50% + 40px), -55px) rotate(0deg);
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1281px～1440px(中型ノートPC向け)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/*** 変更 ***/ /* 上書き・追加の場合のコメントアウト */
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  header nav::before {
    width: 100%;
    height: 5px;
  }
  header nav .inner {
    max-width: 1920px;
    padding: 25px 2% 20px 2%;
  }
  header nav .inner .left .logo {
    line-height: 1.1;
  }
  header nav .inner .left .logo .icon {
    width: 50px;
    height: auto;
  }
  header nav .inner .left .logo span {
    font-size: 45px;
    padding: 0 0 0 10px;
  }
  header nav .inner .left h1 {
    line-height: 1.2;
    letter-spacing: 2px;
    font-size: 14px;
    padding: 7px 0 0 20px;
  }
  header nav .inner .right .button {
    border-radius: 10px;
    padding: 5px 50px 10px 50px;
  }
  header nav .inner .right .button .sub {
    margin: 0 0 0 0;
  }
  header nav .inner .right .button .sub p {
    border-radius: 10px;
    padding: 0 30px 0 30px;
  }
  header nav .inner .right .button .sub p span {
    font-size: 15px;
  }
  header nav .inner .right .button .main {
    padding: 3px 0 0 0;
  }
  header nav .inner .right .button .main .icon {
    width: 25px;
  }
  header nav .inner .right .button .main p {
    font-size: 20px;
    padding: 0 10px 0 10px;
  }
  header nav .inner .right .button .main .arrow {
    width: 20px;
  }
  header .first-view {
    padding: 50px 0 60px 0;
  }
  header .first-view .back {
    line-height: 1;
    opacity: 0.1;
    letter-spacing: 7px;
    font-size: 98px;
  }
  header .first-view .back.left-top {
    left: 0;
    top: 0;
  }
  header .first-view .back.right-bottom {
    right: 0;
    bottom: 0;
  }
  header .first-view .inner {
    max-width: 1920px;
    margin: 0 auto 0;
    padding: 0 3% 0 3%; /*** 変更 ***/
  }
  header .first-view .inner .text {
    padding: 0 0 0 50px; /*** 変更 ***/
  }
  header .first-view .inner .text h3::before {
    width: 90px; /*** 変更 ***/
    height: 2px;
  }
  header .first-view .inner .text h3 .catch {
    font-size: 22px;
    padding: 0 0 0 10px;
  }
  header .first-view .inner .text h2 .line .catch {
    font-size: 50px; /*** 変更 ***/
  }
  header .first-view .inner .text h2 .line .catch .small {
    font-size: 0.75em;
  }
  header .first-view .inner .text h2 .line .catch::before {
    opacity: 0.3;
    bottom: 10px;
    height: 9px;
  }
  header .first-view .inner .text h2 .line02 {
    margin: 10px 0 0 0;
  }
  header .first-view .inner .text h2 .line02 .square {
    line-height: 1.2;
    border: solid 4px #3c766f;
    padding: 2px 20px 2px 20px;
  }
  header .first-view .inner .text h2 .line02 .square .fade-text {
    font-size: 46px; /*** 変更 ***/
  }
  header .first-view .inner .text h2 .line02 .square .fade-text.hidden {
    opacity: 0;
  }
  header .first-view .inner .text h2 .line02 .plane {
    font-size: 50px; /*** 変更 ***/
    padding: 0 0 0 10px;
  }
  header .first-view .inner .text h2 .line02 .plane .small {
    font-size: 0.75em;
  }
  header .first-view .inner .text .category {
    margin: 20px 0 0 0;
  }
  header .first-view .inner .text .category li {
    letter-spacing: 2px;
    font-size: 24px; /*** 変更 ***/
    margin: 0 8px 0 0; /*** 変更 ***/
    padding: 2px 15px 2px 15px; /*** 変更 ***/
  }
  header .first-view .inner .text .category li::before {
    opacity: 0.4;
  }
  header .first-view .inner .text .category li:last-child {
    margin: 0 0 0 0;
  }
  header .first-view .inner .text .sentence {
    margin: 20px 0 0 0;
  }
  header .first-view .inner .text .sentence p {
    line-height: 1.8;
    letter-spacing: 2px;
    font-size: 20px;
  }
  header .first-view .inner .text .sentence p br.br01 {
    display: block; /*** 変更 ***/
  }
  header .first-view .inner .text .sentence p br.br02 {
    display: none; /*** 変更 ***/
  }
  header .first-view .inner .text .sentence p br.br03 {
    display: block; /*** 変更 ***/
  }
  header .first-view .inner .text .feat {
    margin: 20px 0 0 0;
  }
  header .first-view .inner .text .feat ul li {
    margin: 0 15px 0 0;
  }
  header .first-view .inner .text .feat ul li img {
    width: 50px;
    height: auto;
  }
  header .first-view .inner .text .feat ul li p {
    line-height: 1.1;
    font-size: 20px;
  }
  header .first-view .inner .text .feat ul li p .number {
    font-size: 55px;
  }
  header .first-view .inner .text .feat ul li p .kome {
    font-size: 0.6em;
  }
  header .first-view .inner .text .feat .caution {
    font-size: 13px;
    margin: 30px 0 0 0;
  }
  header .first-view .inner .splide {
    width: 50%; /*** 変更 ***/
  }
  header .first-view .inner .splide .badge {
    z-index: 12;
    right: -40px;
    top: -40px;
    width: 180px;
    height: 180px;
  }
  header .first-view .inner .splide .badge::before {
    opacity: 0.4;
    border-radius: 50%;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
  header .first-view .inner .splide .badge .bg {
    opacity: 0.92;
  }
  @keyframes rotate {
    from {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  header .first-view .inner .splide .badge .cover .semi {
    border-radius: 80px;
    padding: 3px 15px 3px 15px;
  }
  header .first-view .inner .splide .badge .cover .semi img {
    width: 14px;
  }
  header .first-view .inner .splide .badge .cover .semi span {
    font-size: 16px;
    padding: 0 3px 0 3px;
  }
  header .first-view .inner .splide .badge .cover .line {
    line-height: 1.3;
    margin: 10px 0 0 0;
  }
  header .first-view .inner .splide .badge .cover .line .tate {
    letter-spacing: 2px;
    font-size: 22px;
  }
  header .first-view .inner .splide .badge .cover .line .number {
    line-height: 1.1;
    font-size: 40px;
  }
  header .first-view .inner .splide .badge .cover .line .en {
    font-size: 28px;
  }
  header .first-view .inner .splide .badge .cover .line.line02 {
    margin: 0 0 0 0;
  }
  header .first-view .inner .splide .splide__track {
    width: 100%;
  }
  header .first-view .inner .splide .splide__track .splide__list {
    width: 100%;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide {
    width: 100%;
    height: 450px;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .thumb::before {
    transform: translate(-50%, -40%);
    border: solid 6px #3c766f;
    transition: all 0.6s linear 0s;
    width: 40%;
    height: 40%;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .thumb img {
    width: 100%;
    height: 100%;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .en {
    transform: translate(-50%, -80px) rotate(0deg);
    letter-spacing: 2px;
    font-size: 60px;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .line p {
    letter-spacing: 3px;
    font-size: 23px;
    padding: 5px 45px 5px 55px;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .line.line01 p {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .line.line02 p {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .thumb img {
    transform: scale(1.15);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .thumb::before {
    opacity: 0.4;
    width: 94%;
    height: 94%;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .en {
    transform: translate(-50%, -150px) rotate(-3deg);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .line.line01 {
    transform: translate(calc(-50% - 40px), -100px) rotate(0deg);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .line.line02 {
    transform: translate(calc(-50% + 40px), -55px) rotate(0deg);
  }
} /* 1281px～1440px responsive-close */
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(小型PC)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  header nav::before {
    width: 100%;
    height: 5px;
  }
  header nav .inner {
    max-width: 1920px;
    padding: 25px 2% 20px 2%;
  }
  header nav .inner .left .logo {
    line-height: 1.1;
  }
  header nav .inner .left .logo .icon {
    width: 50px;
    height: auto;
  }
  header nav .inner .left .logo span {
    font-size: 45px;
    padding: 0 0 0 10px;
  }
  header nav .inner .left h1 {
    line-height: 1.2;
    letter-spacing: 2px;
    font-size: 14px;
    padding: 7px 0 0 20px;
  }
  header nav .inner .right .button {
    border-radius: 10px;
    padding: 5px 50px 10px 50px;
  }
  header nav .inner .right .button .sub {
    margin: 0 0 0 0;
  }
  header nav .inner .right .button .sub p {
    border-radius: 10px;
    padding: 0 30px 0 30px;
  }
  header nav .inner .right .button .sub p span {
    font-size: 15px;
  }
  header nav .inner .right .button .main {
    padding: 3px 0 0 0;
  }
  header nav .inner .right .button .main .icon {
    width: 25px;
  }
  header nav .inner .right .button .main p {
    font-size: 20px;
    padding: 0 10px 0 10px;
  }
  header nav .inner .right .button .main .arrow {
    width: 20px;
  }
  header .first-view {
    padding: 50px 0 60px 0;
  }
  header .first-view .back {
    line-height: 1;
    opacity: 0.1;
    letter-spacing: 7px;
    font-size: 98px;
  }
  header .first-view .back.left-top {
    left: 0;
    top: 0;
  }
  header .first-view .back.right-bottom {
    right: 0;
    bottom: 0;
  }
  header .first-view .inner {
    max-width: 1920px;
    margin: 0 auto 0;
    padding: 0 2% 0 2%; /*** 変更 ***/
  }
  header .first-view .inner .text {
    padding: 0 0 0 40px; /*** 変更 ***/
  }
  header .first-view .inner .text h3::before {
    width: 45px; /*** 変更 ***/
    height: 2px;
  }
  header .first-view .inner .text h3 .catch {
    font-size: 22px; /*** 変更 ***/
    padding: 0 0 0 10px;
  }
  header .first-view .inner .text h2 .line .catch {
    font-size: 45px; /*** 変更 ***/
  }
  header .first-view .inner .text h2 .line .catch .small {
    font-size: 0.75em;
  }
  header .first-view .inner .text h2 .line .catch::before {
    opacity: 0.3;
    bottom: 10px;
    height: 9px;
  }
  header .first-view .inner .text h2 .line02 {
    margin: 10px 0 0 0;
  }
  header .first-view .inner .text h2 .line02 .square {
    line-height: 1.2;
    border: solid 4px #3c766f;
    padding: 2px 20px 2px 20px;
  }
  header .first-view .inner .text h2 .line02 .square .fade-text {
    font-size: 42px; /*** 変更 ***/
  }
  header .first-view .inner .text h2 .line02 .square .fade-text.hidden {
    opacity: 0;
  }
  header .first-view .inner .text h2 .line02 .plane {
    font-size: 45px; /*** 変更 ***/
    padding: 0 0 0 10px;
  }
  header .first-view .inner .text h2 .line02 .plane .small {
    font-size: 0.75em;
  }
  header .first-view .inner .text .category {
    margin: 20px 0 0 0;
  }
  header .first-view .inner .text .category li {
    letter-spacing: 2px;
    font-size: 22px; /*** 変更 ***/
    margin: 0 3px 0 0; /*** 変更 ***/
    padding: 2px 12px 2px 12px; /*** 変更 ***/
  }
  header .first-view .inner .text .category li::before {
    opacity: 0.4;
  }
  header .first-view .inner .text .category li:last-child {
    margin: 0 0 0 0;
  }
  header .first-view .inner .text .sentence {
    margin: 20px 0 0 0;
  }
  header .first-view .inner .text .sentence p {
    line-height: 1.7; /*** 変更 ***/
    letter-spacing: 2px;
    font-size: 19px; /*** 変更 ***/
  }
  header .first-view .inner .text .sentence p br.br01 {
    display: block; /*** 変更 ***/
  }
  header .first-view .inner .text .sentence p br.br02 {
    display: none; /*** 変更 ***/
  }
  header .first-view .inner .text .sentence p br.br03 {
    display: block; /*** 変更 ***/
  }
  header .first-view .inner .text .feat {
    margin: 20px 0 0 0;
  }
  header .first-view .inner .text .feat ul li {
    margin: 0 10px 0 0;
  }
  header .first-view .inner .text .feat ul li img {
    width: 45px; /*** 変更 ***/
    height: auto;
  }
  header .first-view .inner .text .feat ul li p {
    line-height: 1.1;
    font-size: 20px;
  }
  header .first-view .inner .text .feat ul li p .number {
    font-size: 42px; /*** 変更 ***/
  }
  header .first-view .inner .text .feat ul li p .kome {
    font-size: 0.6em;
  }
  header .first-view .inner .text .feat .caution {
    font-size: 13px;
    margin: 30px 0 0 0;
  }
  header .first-view .inner .splide {
    width: 48%; /*** 変更 ***/
  }
  header .first-view .inner .splide .badge {
    z-index: 12;
    right: -40px;
    top: -40px;
    width: 180px;
    height: 180px;
  }
  header .first-view .inner .splide .badge::before {
    opacity: 0.4;
    border-radius: 50%;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
  header .first-view .inner .splide .badge .bg {
    opacity: 0.92;
  }
  @keyframes rotate {
    from {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  header .first-view .inner .splide .badge .cover .semi {
    border-radius: 80px;
    padding: 3px 15px 3px 15px;
  }
  header .first-view .inner .splide .badge .cover .semi img {
    width: 14px;
  }
  header .first-view .inner .splide .badge .cover .semi span {
    font-size: 16px;
    padding: 0 3px 0 3px;
  }
  header .first-view .inner .splide .badge .cover .line {
    line-height: 1.3;
    margin: 10px 0 0 0;
  }
  header .first-view .inner .splide .badge .cover .line .tate {
    letter-spacing: 2px;
    font-size: 22px;
  }
  header .first-view .inner .splide .badge .cover .line .number {
    line-height: 1.1;
    font-size: 40px;
  }
  header .first-view .inner .splide .badge .cover .line .en {
    font-size: 28px;
  }
  header .first-view .inner .splide .badge .cover .line.line02 {
    margin: 0 0 0 0;
  }
  header .first-view .inner .splide .splide__track {
    width: 100%;
  }
  header .first-view .inner .splide .splide__track .splide__list {
    width: 100%;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide {
    width: 100%;
    height: 450px;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .thumb::before {
    transform: translate(-50%, -40%);
    border: solid 6px #3c766f;
    transition: all 0.6s linear 0s;
    width: 40%;
    height: 40%;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .thumb img {
    width: 100%;
    height: 100%;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .en {
    transform: translate(-50%, -80px) rotate(0deg);
    letter-spacing: 2px;
    font-size: 60px;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .line p {
    letter-spacing: 3px;
    font-size: 23px;
    padding: 5px 45px 5px 55px;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .line.line01 p {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .line.line02 p {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .thumb img {
    transform: scale(1.15);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .thumb::before {
    opacity: 0.4;
    width: 94%;
    height: 94%;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .en {
    transform: translate(-50%, -150px) rotate(-3deg);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .line.line01 {
    transform: translate(calc(-50% - 40px), -100px) rotate(0deg);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .line.line02 {
    transform: translate(calc(-50% + 40px), -55px) rotate(0deg);
  }
} /* 1024px～1280px responsive-close */
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header nav::before {
    width: 100%;
    height: 5px;
  }
  header nav .inner {
    max-width: 1920px;
    padding: 25px 5% 20px 5%; /*** 変更 ***/
  }
  header nav .inner .left {
    display: block; /*** 変更 ***/
  }
  header nav .inner .left .logo {
    line-height: 1.1;
  }
  header nav .inner .left .logo .icon {
    width: 50px;
    height: auto;
  }
  header nav .inner .left .logo span {
    font-size: 45px;
    padding: 0 0 0 10px;
  }
  header nav .inner .left h1 {
    line-height: 1.2;
    letter-spacing: 2px;
    font-size: 14px;
    padding: 7px 0 0 0; /*** 変更 ***/
  }
  header nav .inner .right .button {
    border-radius: 10px;
    padding: 5px 50px 10px 50px;
  }
  header nav .inner .right .button .sub {
    margin: 0 0 0 0;
  }
  header nav .inner .right .button .sub p {
    border-radius: 10px;
    padding: 0 30px 0 30px;
  }
  header nav .inner .right .button .sub p span {
    font-size: 15px;
  }
  header nav .inner .right .button .main {
    padding: 3px 0 0 0;
  }
  header nav .inner .right .button .main .icon {
    width: 25px;
  }
  header nav .inner .right .button .main p {
    font-size: 20px;
    padding: 0 10px 0 10px;
  }
  header nav .inner .right .button .main .arrow {
    width: 20px;
  }
  header .first-view {
    padding: 50px 0 60px 0;
  }
  header .first-view .back {
    line-height: 1;
    opacity: 0.1;
    letter-spacing: 7px;
    font-size: 98px;
  }
  header .first-view .back.left-top {
    left: 0;
    top: 0;
  }
  header .first-view .back.right-bottom {
    right: 0;
    bottom: 0;
  }
  header .first-view .inner {
    display: block; /*** 変更 ***/
    max-width: 1920px;
    margin: 0 auto 0;
    padding: 0 2% 0 2%; /*** 変更 ***/
  }
  header .first-view .inner .text {
    text-align: center;
    margin: 30px 0 0 0; /*** 変更 ***/
    padding: 0 5% 0 5%; /*** 変更 ***/
  }
  header .first-view .inner .text h3 {
    justify-content: center; /*** 変更 ***/
  }
  header .first-view .inner .text h3::before {
    width: 45px; /*** 変更 ***/
    height: 2px;
  }
  header .first-view .inner .text h3 .catch {
    font-size: 22px; /*** 変更 ***/
    padding: 0 0 0 10px;
  }
  header .first-view .inner .text h2 .line .catch {
    font-size: 45px; /*** 変更 ***/
  }
  header .first-view .inner .text h2 .line .catch .small {
    font-size: 0.75em;
  }
  header .first-view .inner .text h2 .line .catch::before {
    opacity: 0.3;
    bottom: 10px;
    height: 9px;
  }
  header .first-view .inner .text h2 .line02 {
    justify-content: center;
    margin: 10px 0 0 0;
  }
  header .first-view .inner .text h2 .line02 .square {
    line-height: 1.2;
    border: solid 4px #3c766f;
    padding: 2px 20px 2px 20px;
  }
  header .first-view .inner .text h2 .line02 .square .fade-text {
    font-size: 42px; /*** 変更 ***/
  }
  header .first-view .inner .text h2 .line02 .square .fade-text.hidden {
    opacity: 0;
  }
  header .first-view .inner .text h2 .line02 .plane {
    font-size: 45px; /*** 変更 ***/
    padding: 0 0 0 10px;
  }
  header .first-view .inner .text h2 .line02 .plane .small {
    font-size: 0.75em;
  }
  header .first-view .inner .text .category {
    justify-content: center;
    margin: 20px 0 0 0;
  }
  header .first-view .inner .text .category li {
    letter-spacing: 2px;
    font-size: 22px; /*** 変更 ***/
    margin: 0 3px 0 0; /*** 変更 ***/
    padding: 2px 12px 2px 12px; /*** 変更 ***/
  }
  header .first-view .inner .text .category li::before {
    opacity: 0.4;
  }
  header .first-view .inner .text .category li:last-child {
    margin: 0 0 0 0;
  }
  header .first-view .inner .text .sentence {
    margin: 20px 0 0 0;
  }
  header .first-view .inner .text .sentence p {
    line-height: 1.7; /*** 変更 ***/
    letter-spacing: 2px;
    font-size: 19px; /*** 変更 ***/
  }
  header .first-view .inner .text .sentence p br.br01 {
    display: block; /*** 変更 ***/
  }
  header .first-view .inner .text .sentence p br.br02 {
    display: none; /*** 変更 ***/
  }
  header .first-view .inner .text .sentence p br.br03 {
    display: block; /*** 変更 ***/
  }
  header .first-view .inner .text .feat {
    margin: 20px 0 0 0;
  }
  header .first-view .inner .text .feat ul {
    justify-content: center; /*** 変更 ***/
  }
  header .first-view .inner .text .feat ul li {
    margin: 0 10px 0 0;
  }
  header .first-view .inner .text .feat ul li img {
    width: 45px; /*** 変更 ***/
    height: auto;
  }
  header .first-view .inner .text .feat ul li p {
    line-height: 1.1;
    font-size: 20px;
  }
  header .first-view .inner .text .feat ul li p .number {
    font-size: 42px; /*** 変更 ***/
  }
  header .first-view .inner .text .feat ul li p .kome {
    font-size: 0.6em;
  }
  header .first-view .inner .text .feat .caution {
    font-size: 13px;
    margin: 30px 0 0 0;
  }
  header .first-view .inner .splide {
    width: 90%; /*** 変更 ***/
    margin: 0 auto 0; /*** 変更 ***/
  }
  header .first-view .inner .splide .badge {
    z-index: 12;
    right: -40px;
    top: -40px;
    width: 180px;
    height: 180px;
  }
  header .first-view .inner .splide .badge::before {
    opacity: 0.4;
    border-radius: 50%;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
  header .first-view .inner .splide .badge .bg {
    opacity: 0.92;
  }
  @keyframes rotate {
    from {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  header .first-view .inner .splide .badge .cover .semi {
    border-radius: 80px;
    padding: 3px 15px 3px 15px;
  }
  header .first-view .inner .splide .badge .cover .semi img {
    width: 14px;
  }
  header .first-view .inner .splide .badge .cover .semi span {
    font-size: 16px;
    padding: 0 3px 0 3px;
  }
  header .first-view .inner .splide .badge .cover .line {
    line-height: 1.3;
    margin: 10px 0 0 0;
  }
  header .first-view .inner .splide .badge .cover .line .tate {
    letter-spacing: 2px;
    font-size: 22px;
  }
  header .first-view .inner .splide .badge .cover .line .number {
    line-height: 1.1;
    font-size: 40px;
  }
  header .first-view .inner .splide .badge .cover .line .en {
    font-size: 28px;
  }
  header .first-view .inner .splide .badge .cover .line.line02 {
    margin: 0 0 0 0;
  }
  header .first-view .inner .splide .splide__track {
    width: 100%;
  }
  header .first-view .inner .splide .splide__track .splide__list {
    width: 100%;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide {
    width: 100%;
    height: 450px;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .thumb::before {
    transform: translate(-50%, -40%);
    border: solid 6px #3c766f;
    transition: all 0.6s linear 0s;
    width: 40%;
    height: 40%;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .thumb img {
    width: 100%;
    height: 100%;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .en {
    transform: translate(-50%, -80px) rotate(0deg);
    letter-spacing: 2px;
    font-size: 60px;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .line p {
    letter-spacing: 3px;
    font-size: 23px;
    padding: 5px 45px 5px 55px;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .line.line01 p {
    -webkit-clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
            clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .line.line02 p {
    -webkit-clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
            clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .thumb img {
    transform: scale(1.15);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .thumb::before {
    opacity: 0.4;
    width: 94%;
    height: 94%;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .en {
    transform: translate(-50%, -150px) rotate(-3deg);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .line.line01 {
    transform: translate(calc(-50% - 40px), -100px) rotate(0deg);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .line.line02 {
    transform: translate(calc(-50% + 40px), -55px) rotate(0deg);
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  header nav::before {
    width: 100%;
    height: 5px;
  }
  header nav .inner {
    display: block;
    max-width: 1920px;
    padding: 20px 5% 15px 5%; /*** 変更 ***/
  }
  header nav .inner .left {
    display: block; /*** 変更 ***/
  }
  header nav .inner .left .logo {
    line-height: 1.1;
  }
  header nav .inner .left .logo .icon {
    width: 9vw; /*** 変更 ***/
    height: auto;
  }
  header nav .inner .left .logo span {
    font-size: 8vw; /*** 変更 ***/
    padding: 0 0 0 10px;
  }
  header nav .inner .left h1 {
    line-height: 1.2;
    letter-spacing: 1px;
    font-size: 3.25vw; /*** 変更 ***/
    padding: 5px 0 0 0; /*** 変更 ***/
  }
  header nav .inner .left h1 br {
    display: none; /*** 変更 ***/
  }
  header nav .inner .right .button {
    display: block;
    border-radius: 10px;
    padding: 10px 20px 10px 20px;
    margin-top: 10px;
  }
  header nav .inner .right .button .sub {
    margin: 0 0 0 0;
  }
  header nav .inner .right .button .sub p {
    border-radius: 10px;
    padding: 0 30px 0 30px;
  }
  header nav .inner .right .button .sub p span {
    font-size: 15px;
  }
  header nav .inner .right .button .main {
    padding: 3px 0 0 0;
  }
  header nav .inner .right .button .main .icon {
    width: 25px;
  }
  header nav .inner .right .button .main p {
    font-size: 15px;
    padding: 0 10px 0 10px;
  }
  header nav .inner .right .button .main .arrow {
    width: 20px;
  }
  header .first-view {
    padding: 0 0 60px 0; /*** 変更 ***/
  }
  header .first-view .back {
    line-height: 1;
    opacity: 0.2;
    letter-spacing: 3px; /*** 変更 ***/
    font-size: 12vw; /*** 変更 ***/
  }
  header .first-view .back.left-top {
    z-index: 8; /*** 変更 ***/
    left: 0;
    top: 0;
  }
  header .first-view .back.right-bottom {
    right: 0;
    bottom: 0;
  }
  header .first-view .inner {
    display: block; /*** 変更 ***/
    max-width: 1920px;
    margin: 0 auto 0;
    padding: 0 0 0 0; /*** 変更 ***/
  }
  header .first-view .inner .text {
    text-align: center;
    margin: 0 0 0 0; /*** 変更 ***/
    padding: 0 5% 0 5%; /*** 変更 ***/
  }
  header .first-view .inner .text h3 {
    justify-content: center; /*** 変更 ***/
  }
  header .first-view .inner .text h3::before {
    width: 7vw; /*** 変更 ***/
    height: 2px;
  }
  header .first-view .inner .text h3 .catch {
    font-size: 4vw; /*** 変更 ***/
    padding: 0 0 0 10px;
  }
  header .first-view .inner .text h2 .line .catch {
    font-size: 8vw; /*** 変更 ***/
  }
  header .first-view .inner .text h2 .line .catch .small {
    font-size: 0.75em;
  }
  header .first-view .inner .text h2 .line .catch::before {
    opacity: 0.3;
    bottom: 9px; /*** 変更 ***/
    height: 5px; /*** 変更 ***/
  }
  header .first-view .inner .text h2 .line02 {
    justify-content: center;
    margin: 10px 0 0 0;
  }
  header .first-view .inner .text h2 .line02 .square {
    line-height: 1.2;
    border: solid 4px #3c766f;
    padding: 2px 20px 2px 20px;
  }
  header .first-view .inner .text h2 .line02 .square .fade-text {
    font-size: 7.5vw; /*** 変更 ***/
  }
  header .first-view .inner .text h2 .line02 .square .fade-text.hidden {
    opacity: 0;
  }
  header .first-view .inner .text h2 .line02 .plane {
    font-size: 7vw; /*** 変更 ***/
    padding: 0 0 0 10px;
  }
  header .first-view .inner .text h2 .line02 .plane .small {
    font-size: 0.75em;
  }
  header .first-view .inner .text .category {
    display: block; /*** 変更 ***/
    justify-content: center;
    margin: 20px 0 0 0;
  }
  header .first-view .inner .text .category li {
    letter-spacing: 2px;
    font-size: 4.5vw; /*** 変更 ***/
    margin: 10px 0 0 0; /*** 変更 ***/
    padding: 2px 12px 2px 12px; /*** 変更 ***/
  }
  header .first-view .inner .text .category li::before {
    opacity: 0.4;
  }
  header .first-view .inner .text .category li:last-child {
    margin: 6px 0 0 0; /*** 変更 ***/
  }
  header .first-view .inner .text .sentence {
    margin: 20px 0 0 0;
  }
  header .first-view .inner .text .sentence p {
    line-height: 2; /*** 変更 ***/
    letter-spacing: 1px; /*** 変更 ***/
    font-size: 4vw; /*** 変更 ***/
  }
  header .first-view .inner .text .sentence p br.br01 {
    display: block; /*** 変更 ***/
  }
  header .first-view .inner .text .sentence p br.br02 {
    display: none; /*** 変更 ***/
  }
  header .first-view .inner .text .sentence p br.br03 {
    display: block; /*** 変更 ***/
  }
  header .first-view .inner .text .feat {
    margin: 20px 0 0 0;
  }
  header .first-view .inner .text .feat ul {
    justify-content: center; /*** 変更 ***/
  }
  header .first-view .inner .text .feat ul li {
    margin: 0 10px 0 0;
  }
  header .first-view .inner .text .feat ul li img {
    width: 10vw; /*** 変更 ***/
    height: auto;
  }
  header .first-view .inner .text .feat ul li p {
    line-height: 1.1;
    font-size: 4.5vw; /*** 変更 ***/
  }
  header .first-view .inner .text .feat ul li p .number {
    font-size: 7.5vw; /*** 変更 ***/
  }
  header .first-view .inner .text .feat ul li p .kome {
    font-size: 0.6em;
  }
  header .first-view .inner .text .feat .caution {
    font-size: 3.5vw; /*** 変更 ***/
    margin: 30px 0 0 0;
  }
  header .first-view .inner .splide {
    width: 100%; /*** 変更 ***/
    margin: 0 0 0 0; /*** 変更 ***/
  }
  header .first-view .inner .splide .badge {
    z-index: 12;
    right: -2vw; /*** 変更 ***/
    top: 2vw; /*** 変更 ***/
    width: 34vw; /*** 変更 ***/
    height: 34vw; /*** 変更 ***/
  }
  header .first-view .inner .splide .badge::before {
    opacity: 0.4;
    border-radius: 50%;
    width: calc(100% - 15px); /*** 変更 ***/
    height: calc(100% - 15px); /*** 変更 ***/
  }
  header .first-view .inner .splide .badge .bg {
    opacity: 0.92;
  }
  @keyframes rotate {
    from {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  header .first-view .inner .splide .badge .cover .semi {
    border-radius: 70px; /*** 変更 ***/
    padding: 3px 12px 3px 12px; /*** 変更 ***/
  }
  header .first-view .inner .splide .badge .cover .semi img {
    width: 2.75vw; /*** 変更 ***/
  }
  header .first-view .inner .splide .badge .cover .semi span {
    font-size: 3vw; /*** 変更 ***/
    padding: 0 2px 0 2px;
  }
  header .first-view .inner .splide .badge .cover .line {
    line-height: 1; /*** 変更 ***/
    margin: 5px 0 0 0; /*** 変更 ***/
  }
  header .first-view .inner .splide .badge .cover .line .tate {
    letter-spacing: 1px; /*** 変更 ***/
    font-size: 3.75vw; /*** 変更 ***/
  }
  header .first-view .inner .splide .badge .cover .line .number {
    line-height: 1; /*** 変更 ***/
    font-size: 9vw; /*** 変更 ***/
  }
  header .first-view .inner .splide .badge .cover .line .en {
    font-size: 7vw; /*** 変更 ***/
  }
  header .first-view .inner .splide .badge .cover .line.line02 {
    margin: 0 0 0 0;
  }
  header .first-view .inner .splide .splide__track {
    width: 100%;
  }
  header .first-view .inner .splide .splide__track .splide__list {
    width: 100%;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide {
    width: 100%;
    height: 450px;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .thumb {
    -webkit-clip-path: polygon(27% 0, 100% 0, 100% 60%, 100% 100%, 100% 100%, 0 65%);
            clip-path: polygon(27% 0, 100% 0, 100% 60%, 100% 100%, 100% 100%, 0 65%);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .thumb::before {
    display: none; /*** 変更 ***/
    transform: translate(-50%, -40%);
    border: solid 6px #3c766f;
    transition: all 0.6s linear 0s;
    width: 40%;
    height: 40%;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .thumb img {
    width: 100%;
    height: 100%;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .en {
    transform: translate(-50%, -80px) rotate(0deg);
    letter-spacing: 1px; /*** 変更 ***/
    font-size: 12.5vw; /*** 変更 ***/
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .line p {
    letter-spacing: 3px;
    font-size: 4.75vw; /*** 変更 ***/
    padding: 5px 35px 5px 45px;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .line.line01 p {
    -webkit-clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
            clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide .line.line02 p {
    -webkit-clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
            clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .thumb img {
    transform: scale(1.15);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .thumb::before {
    opacity: 0.4;
    width: 94%;
    height: 94%;
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .en {
    transform: translate(-50%, -150px) rotate(-3deg);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .line.line01 {
    transform: translate(calc(-50% - 40px), -100px) rotate(0deg);
  }
  header .first-view .inner .splide .splide__track .splide__list .splide__slide.is-active .line.line02 {
    transform: translate(calc(-50% + 40px), -55px) rotate(0deg);
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************//*# sourceMappingURL=style.css.map */


/*============================================
	― 変数設定
=============================================*/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 GLOBAL 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
/*============================================
	― PC表示
=============================================*/
.pc-disblock {
  display: block;
}

.pc-disline {
  display: inline;
}

.pc-dislineblock {
  display: inline-block;
}

.pc-none {
  display: none;
}

.sp-disblock {
  display: none;
}

.sp-disline {
  display: none;
}

.sp-dislineblock {
  display: none;
}

/*============================================
      ― スマホ表示切り替え
  =============================================*/
@media screen and (max-width: 767px) {
  .pc-disblock {
    display: none;
  }
  .pc-disline {
    display: none;
  }
  .pc-dislineblock {
    display: none;
  }
  .sp-disblock {
    display: block;
  }
  .sp-disline {
    display: inline;
  }
  .sp-dislineblock {
    display: inline-block;
  }
  .sp-none {
    display: none;
  }
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(小型PC)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* modules */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 target-suit 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.target-suit {
  overflow: hidden;
  padding: 50px 0 70px 0;
}
.target-suit .container .title .border {
  position: relative;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  width: 2px;
  height: 100px;
  margin: 0 auto;
  overflow: hidden;
}

/* 白い点のアニメーション */
.target-suit .container .title .border::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: moveDot 2s linear infinite;
}

/* アニメーション定義 */
@keyframes moveDot {
  0% {
      top: -10px;
      opacity: 0;
  }
  10% {
      opacity: 1;
  }
  90% {
      opacity: 1;
  }
  100% {
      top: 100%;
      opacity: 0;
  }
}
.target-suit .container .title .en {
  text-align: center;
}
.target-suit .container .title .en p {
  display: inline-block;
  font-family: "Antonio";
  background: linear-gradient(90deg, #3c766f, #5d9a92);

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
  font-size: 20px;
}
.target-suit .container .title h2 {
  text-align: center;
  margin: 10px 0 0 0;
}
.target-suit .container .title h2 .catch {
  color: #0d1b42;
  letter-spacing: 2px;
  font-size: 42px;
}
.target-suit .container .title h2 .catch .grade {
  display: inline;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
}
.target-suit .container .place {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 30px auto 0;
}
.target-suit .container .place li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(185, 200, 216, 0.2) 0 7px 29px 0;
  background: #ffffff;
  width: 32%;
  margin: 20px 2% 0 0;
  padding: 20px 40px 20px 40px;
  border: solid 1px #3c766f;
}

.target-suit .container .place li img {
  width: 80px;
  height: auto;
}

.target-suit .container .place li img {
  animation: poyon 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyon {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.92);
  }
}

.target-suit .container .place li:nth-child(1) img {
  animation-delay: 0s;
}

.target-suit .container .place li:nth-child(2) img {
  animation-delay: 0.2s;
}

.target-suit .container .place li:nth-child(3) img {
  animation-delay: 0.4s;
}

.target-suit .container .place li:nth-child(4) img {
  animation-delay: 0.6s;
}

.target-suit .container .place li:nth-child(5) img {
  animation-delay: 0.8s;
}

.target-suit .container .place li p {
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 26px;
  padding: 0 0 0 10px;
}
.target-suit .container .place li:nth-child(3n), .target-suit .container .place li:last-child {
  margin: 20px 0 0 0;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(小型PC)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .target-suit {
    padding: 50px 0 70px 0;
  }
  .target-suit .container .title .border {
    width: 2px;
    height: 80px;
    margin: 0 auto 0;
  }
  .target-suit .container .title .en p {
    letter-spacing: 3px;
    font-size: 20px;
  }
  .target-suit .container .title h2 {
    margin: 10px 0 0 0;
  }
  .target-suit .container .title h2 .catch {
    letter-spacing: 2px;
    font-size: 38px;
  }
  .target-suit .container .place {
    max-width: 1280px;
    margin: 30px 20px;
  }
  .target-suit .container .place li {
    width: 32%;
    margin: 20px 2% 0 0;
    padding: 20px 20px 20px 20px;
  }
  .target-suit .container .place li::before {
    width: 77%;
    height: 3px;
  }
  .target-suit .container .place li img {
    width: 50px;
    height: auto;
  }
  .target-suit .container .place li p {
    font-size: 22px;
    padding: 0 0 0 10px;
  }
  .target-suit .container .place li:nth-child(3n), .target-suit .container .place li:last-child {
    margin: 20px 0 0 0;
  }
  .target-suit .container .title h2 .catch .grade {
    
    font-size: 40px;
  }
} /* 1024px～1280px responsive-close */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .target-suit {
    padding: 50px 0 70px 0;
  }
  .target-suit .container .title .border {
    width: 2px;
    height: 80px;
    margin: 0 auto 0;
  }
  .target-suit .container .title .en p {
    letter-spacing: 3px;
    font-size: 20px;
  }
  .target-suit .container .title h2 {
    margin: 10px 0 0 0;
  }
  .target-suit .container .title h2 .catch {
    letter-spacing: 2px;
    font-size: 34px;
  }
  .target-suit .container .place {
    max-width: 1280px;
    margin: 30px 20px;
  }
  .target-suit .container .place li {
    width: 32%;
    margin: 20px 2% 0 0;
    padding: 20px 10px 20px 10px;
  }
  .target-suit .container .place li::before {
    width: 77%;
    height: 3px;
  }
  .target-suit .container .place li img {
    width: 50px;
    height: auto;
  }
  .target-suit .container .place li p {
    font-size: 18px;
    padding: 0 0 0 8px;
  }
  .target-suit .container .place li:nth-child(3n), .target-suit .container .place li:last-child {
    margin: 20px 0 0 0;
  }
  .target-suit .container .title h2 .catch .grade {
    
    font-size: 37px;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .target-suit {
    padding: 50px 0 40px 0;
  }
  .target-suit .container .title .border {
    width: 2px;
    height: 60px;
    margin: 0 auto 0;
  }
  .target-suit .container .title .en p {
    letter-spacing: 3px;
    font-size: 4vw;
  }
  .target-suit .container .title h2 {
    margin: 10px 0 0 0;
  }
  .target-suit .container .title h2 .catch {
    letter-spacing: 2px;
    font-size: 8vw;
    line-height: 1.1;
  }
  .target-suit .container .place {
    display: block;
    max-width: 92%;
    margin: 30px auto 0;
  }
  .target-suit .container .place li {
    width: 100%;
    margin: 15px 0 0 0;
    padding: 20px 10px 20px 10px;
  }
  .target-suit .container .place li::before {
    width: 77%;
    height: 3px;
  }
  .target-suit .container .place li img {
    width: 13vw;
    height: auto;
  }
  .target-suit .container .place li p {
    font-size: 4vw;
    padding: 0 0 0 12px;
  }
  .target-suit .container .place li:nth-child(3n), .target-suit .container .place li:last-child {
    margin: 15px 0 0 0;
  }
  .target-suit .container .title h2 .catch .grade {
    
    font-size: 9vw;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************//*# sourceMappingURL=style.css.map */

.reason {
  background-image: radial-gradient(at 87% 78%, hsl(168, 85%, 73%) 0px, transparent 50%), radial-gradient(at 19% 43%, hsl(120, 100%, 98%) 0px, transparent 50%), radial-gradient(at 80% 100%, hsl(132, 87%, 96%) 0px, transparent 50%);
  background-color: hsl(70, 64%, 96%);
  padding: 0 0 60px 0;
}
.reason .container .title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.reason .container .title .thumb {
  position: relative;
  line-height: 0;
  width: 420px;
}
.reason .container .title .thumb img {
  width: 100%;
  height: auto;
}
.reason .container .title .thumb.right {
  margin: 80px 0 0 0;
}
.reason .container .title .text {
  padding: 100px 0 0 0;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
}
.reason .container .title .text .en {
  letter-spacing: 2px;
  text-align: center;
  font-size: 25px;
}
.reason .container .title .text .en p {
  display: inline-block;
  font-family: "Jost";
  font-weight: 700;
  background: linear-gradient(90deg, rgb(202, 141, 47) 0%, rgb(197, 177, 62) 47%, rgb(202, 141, 47) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reason .container .title .text h3 {
  color: #0d1b42;
  letter-spacing: 2px;
  font-size: 42px;
}
.reason .container .title .text h3 .grade{
  display: inline;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reason .container .title .text h3 .small{
  font-size: 30px;
}
.reason .container .title .text h3 .mark {
  display: inline-block;
  border: solid 3px #e6b24f;
  background: linear-gradient(90deg, rgb(202, 141, 47) 0%, rgb(197, 177, 62) 47%, rgb(202, 141, 47) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 22px;
  padding: 3px 20px 3px 20px;
}
.reason .container .title .text h3 .kakeru {
  color: #ca8d2f;
  font-size: 16px;
  padding: 0 10px 0 10px;
}
.reason .container .title .text h3 .catch {
  color: #ca8d2f;
  font-size: 18px;
  padding: 0 0 0 10px;
}

.reason .container .title .text h2 .catch {
  overflow: hidden;
  position: relative;
  color: #ffffff;
  font-weight: 700;
  box-shadow: rgba(45, 105, 91, 0.2) 0 7px 29px 0;
  background: linear-gradient(45deg, #3c766f, #3c9ecc);
  letter-spacing: 2px;
  font-size: 25px;
  margin: 0 10px 0 0;
  padding: 2px 20px 2px 20px;
}

.reason .container .title .text h2 .catch::before {
  content: "";
  position: absolute;
  opacity: 0.8;
  left: -100%; /* 初期位置を画面外に設定 */
  top: 0;
  transform: skewX(-30deg); /* 光に角度をつける */
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%); /* 光のグラデーション */
  mix-blend-mode: overlay;
  animation: shine 4s infinite forwards; /* アニメーションの適用 */
  width: 150%; /* 画面を覆う幅 */
  height: 100%;
}
@keyframes shine {
  0% {
    left: -150%; /* 開始位置 */
  }
  50% {
    left: 150%; /* 終了位置 */
  }
  100% {
    left: 150%; /* 停止位置を維持 */
  }
}


.reason .container .title .text h2 {
  text-align: center;
}
.reason .container .title .text h2 .catch {
  display: inline-block;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
padding: 10px 20px;
  font-size: 40px;
  margin: 15px 0 0 0;
  color: #fff;
  box-shadow: 3px 6px 6px rgb(115, 116, 115);
}
.reason .container .title .text h2 .catch .small {
  font-size: 0.75em;
}
.reason .container .title .text .caption {
  text-align: center;
  font-size: 25px;
  margin: 10px 0 0 0;
}
.reason .container .title .text .caption .small {
  font-size: 0.75em;
}
.reason .container .box-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1480px;
  margin: 0 auto 0;
  padding: 10px 3% 0 3%;
}
.reason .container .box-wrapper .box {
  position: relative;
  border-radius: 5px;
  width: 48.5%;
  margin: 70px 3% 0 0;
  padding: 0 0 25px 0;
  background-color: #fff;
  box-shadow: 3px 6px 6px rgb(115, 116, 115)
}

.reason .container .box-wrapper .box .phrase {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: -30px 0 0 0;
}
.reason .container .box-wrapper .box .phrase .cover {
  display: inline-block;
  color: #16375d;
  font-weight: 700;
  box-shadow: rgba(175, 144, 89, 0.2) 0 7px 29px 0;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  padding: 5px 20px 5px 20px;
  box-shadow: 3px 6px 6px rgb(115, 116, 115);
  overflow: hidden;
  position: relative;
}


.reason .container .box-wrapper .box .phrase .cover::before {
  content: "";
  position: absolute;
  opacity: 0.8;
  left: -100%; /* 初期位置を画面外に設定 */
  top: 0;
  transform: skewX(-30deg); /* 光に角度をつける */
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%); /* 光のグラデーション */
  mix-blend-mode: overlay;
  animation: shine 4s infinite forwards; /* アニメーションの適用 */
  width: 150%; /* 画面を覆う幅 */
  height: 100%;
  overflow: hidden; 
}
@keyframes shine {
  0% {
    left: -300%; /* 開始位置 */
  }
  50% {
    left: 300%; /* 終了位置 */
  }
  100% {
    left: 300%; /* 停止位置を維持 */
  }
}


.reason .container .box-wrapper .box .phrase .cover .line {
  display: flex;
  align-items: center;
  justify-content: center;
}
.reason .container .box-wrapper .box .phrase .cover .line .mark {
  border: solid 3px #fff;
  border-radius: 17px;
  margin: 0 10px 0 0;
  padding: 3px 15px 3px 15px;
  color: #fff;
}
.reason .container .box-wrapper .box .phrase .cover .line .catch {
  letter-spacing: 1px;
  font-size: 16px;
  color:#fff;
}
.reason .container .box-wrapper .box .phrase .cover .line .catch .big {
  font-size: 18px;
  color:#fff;
}
.reason .container .box-wrapper .box h3 {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px 0 0 0;
}
.reason .container .box-wrapper .box h3 .cover {
  line-height: 1.35;
  margin: 10px 0 0 0;
}
.reason .container .box-wrapper .box h3 .cover .line {
  position: relative;
  z-index: 1;
  display: inline-block;
  box-shadow: rgba(175, 144, 89, 0.2) 0 7px 29px 0;
  background: linear-gradient(90deg, rgb(0, 43, 109) 0%, rgb(0, 72, 138) 47%, rgb(0, 47, 113) 100%);
  font-size: 34px;
  padding: 5px 20px 5px 20px;
}
.reason .container .box-wrapper .box h3 .cover .line::before, .reason .container .box-wrapper .box h3 .cover .line::after {
  position: absolute;
  z-index: 2;
  left: 0;
  background: linear-gradient(45deg, rgb(213, 184, 94) 0%, rgb(218, 184, 131) 100%);
  content: "";
  width: 100%;
  height: 1px;
}
.reason .container .box-wrapper .box h3 .cover .line::before {
  top: 5px;
}
.reason .container .box-wrapper .box h3 .cover .line::after {
  bottom: 5px;
}
.reason .container .box-wrapper .box h3 .cover .line .catch {
  position: relative;
  z-index: 3;
  display: inline-block;
  background: linear-gradient(90deg, rgb(202, 141, 47) 0%, rgb(252, 238, 155) 47%, rgb(202, 141, 47) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reason .container .box-wrapper .box .sentence {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 10px auto 0;
}
.reason .container .box-wrapper .box .sentence p {
  color: #444;
  line-height: 2;
  letter-spacing: 1px;
  font-size: 18px;
  padding: 10px 40px 30px 40px;
}
.reason .container .box-wrapper .box:nth-child(2n) {
  margin: 70px 0 0 0;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(小型PC)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .reason {
    padding: 0 0 60px 0;
  }
  .reason .container .title .thumb {
    width: 25%;
  }
  .reason .container .title .thumb img {
    width: 100%;
    height: auto;
  }
  .reason .container .title .thumb.right {
    margin: 40px 0 0 0;
  }
  .reason .container .title .text {
    padding: 30px 0 0 0;
  }
  .reason .container .title .text .en {
    letter-spacing: 2px;
    font-size: 2.25vw;
  }
  .reason .container .title .text h3 {
    margin: 10px 0 0 0;
  }
  .reason .container .title .text h3 .mark {
    font-size: 1.5vw;
    padding: 3px 10px 3px 10px;
  }
  .reason .container .title .text h3 .kakeru {
    font-size: 1.5vw;
    padding: 0 5px 0 5px;
  }
  .reason .container .title .text h3 .catch {
    font-size: 1.5vw;
    padding: 0 0 0 10px;
  }
  .reason .container .title .text h2 .catch {
    font-size: 4vw;
    margin: 5px 0 0 0;
  }
  .reason .container .title .text h2 .catch .small {
    font-size: 0.75em;
  }
  .reason .container .title .text .caption {
    font-size: 2.5vw;
    margin: 10px 0 0 0;
  }
  .reason .container .title .text .caption .small {
    font-size: 0.75em;
  }
  .reason .container .box-wrapper {
    max-width: 100%;
    margin: 0 auto 0;
    padding: 10px 2% 0 2%;
  }
  .reason .container .box-wrapper .box {
    width: 49%;
    margin: 70px 2% 0 0;
    padding: 0 0 25px 0;
  }
  .reason .container .box-wrapper .box::before {
    opacity: 0.2;
  }
  .reason .container .box-wrapper .box .phrase {
    margin: -30px 0 0 0;
  }
  .reason .container .box-wrapper .box .phrase .cover {
    padding: 5px 20px 5px 20px;
  }
  .reason .container .box-wrapper .box .phrase .cover .line .mark {
    border-radius: 17px;
    font-size: 1.7vw;
    margin: 0 10px 0 0;
    padding: 3px 15px 3px 15px;
  }
  .reason .container .box-wrapper .box .phrase .cover .line .catch {
    letter-spacing: 1px;
    font-size: 1.5vw;
  }
  .reason .container .box-wrapper .box .phrase .cover .line .catch .big {
    font-size: 1.7vw;
  }
  .reason .container .box-wrapper .box h3 {
    padding: 20px 0 0 0;
  }
  .reason .container .box-wrapper .box h3 .cover {
    line-height: 1.35;
    margin: 10px 0 0 0;
  }
  .reason .container .box-wrapper .box h3 .cover .line {
    font-size: 3vw;
    padding: 5px 20px 5px 20px;
  }
  .reason .container .box-wrapper .box h3 .cover .line::before, .reason .container .box-wrapper .box h3 .cover .line::after {
    width: 100%;
    height: 1px;
  }
  .reason .container .box-wrapper .box h3 .cover .line::before {
    top: 5px;

  }
  .reason .container .box-wrapper .box h3 .cover .line::after {
    bottom: 5px;
  }
  .reason .container .box-wrapper .box .sentence {
    width: 92%;
    margin: 10px auto 0;
  }
  .reason .container .box-wrapper .box .sentence p {
    line-height: 2;
    letter-spacing: 1px;
    font-size: 1.5vw;
    padding: 10px 30px 30px 30px;
  }
  .reason .container .box-wrapper .box:nth-child(2n) {
    margin: 70px 0 0 0;
  }
} /* 1024px～1280px responsive-close */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .reason {
    padding: 0 0 60px 0;
  }
  .reason .container .title .thumb {
    width: 25%;
  }
  .reason .container .title .thumb img {
    width: 100%;
    height: auto;
  }
  .reason .container .title .thumb.right {
    margin: 40px 0 0 0;
  }
  .reason .container .title .text {
    padding: 30px 0 0 0;
  }
  .reason .container .title .text .en {
    letter-spacing: 2px;
    font-size: 2.25vw;
  }
  .reason .container .title .text h3 {
    margin: 10px 0 0 0;
  }
  .reason .container .title .text h3 .mark {
    font-size: 1.5vw;
    padding: 3px 10px 3px 10px;
  }
  .reason .container .title .text h3 .kakeru {
    font-size: 1.5vw;
    padding: 0 5px 0 5px;
  }
  .reason .container .title .text h3 .catch {
    font-size: 1.5vw;
    padding: 0 0 0 10px;
  }
  .reason .container .title .text h2 .catch {
    font-size: 4vw;
    margin: 5px 0 0 0;
  }
  .reason .container .title .text h2 .catch .small {
    font-size: 0.75em;
  }
  .reason .container .title .text .caption {
    font-size: 2.5vw;
    margin: 10px 0 0 0;
  }
  .reason .container .title .text .caption .small {
    font-size: 0.75em;
  }
  .reason .container .box-wrapper {
    max-width: 100%;
    margin: 0 auto 0;
    padding: 10px 2% 0 2%;
  }
  .reason .container .box-wrapper .box {
    width: 49%;
    margin: 70px 2% 0 0;
    padding: 0 0 25px 0;
  }
  .reason .container .box-wrapper .box::before {
    opacity: 0.2;
  }
  .reason .container .box-wrapper .box .phrase {
    margin: -30px 0 0 0;
  }
  .reason .container .box-wrapper .box .phrase .cover {
    padding: 5px 20px 5px 20px;
  }
  .reason .container .box-wrapper .box .phrase .cover .line .mark {
    border-radius: 40px;
    font-size: 1.7vw;
    margin: 0 10px 0 0;
    padding: 3px 15px 3px 15px;
  }
  .reason .container .box-wrapper .box .phrase .cover .line .catch {
    letter-spacing: 1px;
    font-size: 1.5vw;
  }
  .reason .container .box-wrapper .box .phrase .cover .line .catch .big {
    font-size: 1.7vw;
  }
  .reason .container .box-wrapper .box h3 {
    padding: 20px 0 0 0;
  }
  .reason .container .box-wrapper .box h3 .cover {
    line-height: 1.35;
    margin: 10px 0 0 0;
  }
  .reason .container .box-wrapper .box h3 .cover .line {
    font-size: 3vw;
    padding: 5px 20px 5px 20px;
  }
  .reason .container .box-wrapper .box h3 .cover .line::before {
    top: 5px;
  }
  .reason .container .box-wrapper .box h3 .cover .line::after {
    bottom: 5px;
  }
  .reason .container .box-wrapper .box .sentence {
    width: 92%;
    margin: 10px auto 0;
  }
  .reason .container .box-wrapper .box .sentence p {
    line-height: 2;
    letter-spacing: 1px;
    font-size: 1.5vw;
    padding: 10px 30px 30px 30px;
  }
  .reason .container .box-wrapper .box:nth-child(2n) {
    margin: 70px 0 0 0;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .reason {
    padding: 0 0 60px 0;
  }
  .reason .container .title {
    display: block;
  }
  .reason .container .title .thumb {
    position: relative;
    line-height: 0;
    width: 45%;
  }
  .reason .container .title .thumb img {
    width: 100%;
    height: auto;
  }
  .reason .container .title .thumb.right {
    margin: -40px 0 0 55%;
  }
  .reason .container .title .text {
    margin: -50px 0 0 0;
    padding: 1px 0 0 0;
  }
  .reason .container .title .text .en {
    letter-spacing: 2px;
    font-size: 4vw;
  }
  .reason .container .title .text h3 {
    display: none;
    margin: 10px 0 0 0;
  }
  .reason .container .title .text h3 .mark {
    font-size: 3.75vw;
    padding: 3px 10px 3px 10px;
  }
  .reason .container .title .text h3 .kakeru {
    font-size: 3.5vw;
    padding: 0 5px 0 5px;
  }
  .reason .container .title .text h3 .catch {
    font-size: 3.8vw;
    padding: 0 0 0 10px;
  }
  .reason .container .title .text h2 .catch {
    font-size: 5vw;
    margin: 80px 20px 0 20px;

  }
  .reason .container .title .text h2 .catch .small {
    font-size: 0.75em;
  }
  .reason .container .title .text .caption {
    font-size: 4.5vw;
    margin: 10px 0 0 0;
  }
  .reason .container .title .text .caption .small {
    font-size: 0.75em;
  }
  .reason .container .box-wrapper {
    display: block;
    max-width: 100%;
    margin: 0 auto 0;
    padding: 10px 3% 0 3%;
  }
  .reason .container .box-wrapper .box {
    width: 100%;
    padding: 0 0 25px 0;
  }
  .reason .container .box-wrapper .box::before {
    opacity: 0.2;
  }
  .reason .container .box-wrapper .box .phrase {
    margin: -30px 0 0 0;
  }
  .reason .container .box-wrapper .box .phrase .cover {
    padding: 5px 20px 5px 20px;
  }
  .reason .container .box-wrapper .box .phrase .cover .line .mark {
    border-radius: 17px;
    font-size: 3.5vw;
    margin: 0 10px 0 0;
    padding: 3px 15px 3px 15px;
  }
  .reason .container .box-wrapper .box .phrase .cover .line .catch {
    letter-spacing: 1px;
    font-size: 3.75vw;
  }
  .reason .container .box-wrapper .box .phrase .cover .line .catch .big {
    font-size: 3.4vw;
  }
  .reason .container .box-wrapper .box h3 {
    padding: 20px 0 0 0;
  }
  .reason .container .box-wrapper .box h3 .cover {
    line-height: 1.35;
    margin: 10px 0 0 0;
  }
  .reason .container .box-wrapper .box h3 .cover .line {
    font-size: 6.25vw;
    padding: 5px 20px 5px 20px;
  }
  .reason .container .box-wrapper .box h3 .cover .line::before, .reason .container .box-wrapper .box h3 .cover .line::after {
    width: 100%;
    height: 1px;
  }
  .reason .container .box-wrapper .box h3 .cover .line::before {
    top: 5px;
  }
  .reason .container .box-wrapper .box h3 .cover .line::after {
    bottom: 5px;
  }
  .reason .container .box-wrapper .box .sentence {
    width: 92%;
    margin: 10px auto 0;
  }
  .reason .container .box-wrapper .box .sentence p {
    line-height: 2;
    letter-spacing: 1px;
    font-size: 4vw;
    padding: 10px 30px 30px 30px;
  }
  .reason .container .box-wrapper .box:nth-child(2n) {
    margin: 70px 0 0 0;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************//*# sourceMappingURL=style.css.map */


.table_design13 {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  min-width: 700px;
  font-weight: bold;
  text-align: center;
  margin: 50px 0 60px 0;
}
.table_design13 thead th {
  padding: 1em .8em;
  border-right: 2px solid#fff;
}
.table_design13 td {
  color: #3c766f;
  padding: 1em;
}
.table_design13 thead th:not(:first-child) {
  background: #3c766f;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.5em;
}
.table_design13 thead th span {
  font-size: .8rem;
}
.table_design13 thead th:nth-child(3) {
  background-color: #f88400;
  position: relative;
}
.table_design13 thead th:nth-child(3)::before {
  content: '';
  width: 100%;
  height: 10px;
  position: absolute;
  background-color: #f88400;
  left: 0;
  bottom: 100%;
}
.table_design13 thead th:nth-child(3)::after {
  content: '当事務所です！';
  width: max-content;
  color: #f88400;
  font-size: .8rem;
  padding: 0.3em 1em;
  background: #fff;
  border: 2px solid #f88400;
  border-radius: 100vh;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}
.table_design13 tbody th, .table_design13 tbody td {
  border: 2px solid #fff;
}
.table_design13 tbody th {
  background-color: #3c766f;
  color: #fff;
}
.table_design13 tbody td {
  background-color: #e6f1f6;
}
.table_design13 td:nth-child(3) {
  color: #f88400;
  background: #fef1e3;
}
.table_design13 td:hover {
    transform: scale(1.05);
    outline: 2px solid #3c766f;
}
.table_design13 td:nth-child(3):hover {
    transform: scale(1.05);
    outline: 2px solid #f88400;
}
@media screen and (max-width: 787px) {
  .table-scroll {
    overflow-x: auto;
  }
}
.linee{
  margin: 30px 0;
  text-align: center;
}
.linee .catch{
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #e2611b, #f2a02b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 31px;
    line-height: 1;
    font-weight: 600;
  }

.linee h2{
margin-bottom: 100px;
  }




.linee .catch .small {
  font-size: 0.65em;
}
.linee .catch::before {
  content: "";
  position: absolute;
  opacity: 0.3;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #e2611b, #f2a02b);
  width: 100%;
  height: 9px;
  z-index: -1;
}


.conpare{
margin: 50px 10px 50px 1%;

}

.conpare .title .border{
  position: relative;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  width: 1.8px;
  height: 100px;
  margin: 0 auto;
  overflow: hidden;
}

.conpare .title .border::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: moveDot 2s linear infinite;
}

@keyframes moveDot {
  0% {
      top: -10px;
      opacity: 0;
  }
  10% {
      opacity: 1;
  }
  90% {
      opacity: 1;color: #0d1b42;
      letter-spacing: 2px;
      font-size: 42px;
  }
  100% {
      top: 100%;
      opacity: 0;
  }
}

.conpare .title .en{
  text-align: center;
}

.conpare .title .en p{
  display: inline-block;
  font-family: "Antonio";
  background: linear-gradient(90deg, #3c766f, #5d9a92);

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
  font-size: 20px;
}

.conpare .title h2{
  text-align: center;
  margin: 10px 0 0 0;
  color: #0d1b42;
    letter-spacing: 2px;
    font-size: 42px;
}
.conpare .title h2 .catch{
  color: #0d1b42;
  letter-spacing: 2px;
  font-size: 42px;
}

.conpare .title h2 .catch .grade{
  display: inline;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .conpare .title .border {
    width: 1.5px;
    height: 80px;
    margin: 0 auto 0;
  }
  .conpare .title .en p {
    letter-spacing: 3px;
    font-size: 20px;
  }
  .conpare .title h2 {
    margin: 10px 0 0 0;
  }
  .conpare .title h2 .catch {
    letter-spacing: 2px;
    font-size: 38px;
  }
    .conpare .title h2 .catch .grade {
    font-size: 40px;
  }

.linee .catch{
    font-size: 30px;
  }

  }
  
  @media screen and (min-width: 768px) and (max-width: 1023px) {
  .target-suit {
    padding: 50px 0 70px 0;
  }
  .conpare .title .border {
    width: 1.5px;
    height: 80px;
    margin: 0 auto 0;
  }
  .conpare .title .en p {
    letter-spacing: 3px;
    font-size: 20px;
  }
  .conpare .title h2 {
    margin: 10px 0 0 0;
  }
  .conpare .title h2 .catch {
    letter-spacing: 2px;
    font-size: 34px;
  }
  
 .conpare .title h2 .catch .grade {
    font-size: 37px;
  }
.linee .catch{
    font-size: 30px;
  }
}




@media screen and (max-width: 767px) {
.conpare .title .border {
    width: 1px;
    height: 60px;
    margin: 0 auto 0;
  }
  .conpare .title .en p {
    letter-spacing: 3px;
    font-size: 4vw;
  }
  .conpare .title h2 {
    margin: 10px 0 0 0;
  }
  .conpare .title h2 .catch {
    letter-spacing: 2px;
    font-size: 7vw;
  }
   .conpare .title h2 .catch .grade {
    font-size: 8vw;
  }
  }



ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pricecards{
    background-image: radial-gradient(at 87% 78%, hsl(168, 85%, 73%) 0px, transparent 50%), radial-gradient(at 19% 43%, hsl(120, 100%, 98%) 0px, transparent 50%), radial-gradient(at 80% 100%, hsl(132, 87%, 96%) 0px, transparent 50%);
    background-color: hsl(70, 64%, 96%);
    padding: 0 0 60px 0;
display: flex;
display: -webkit-flex;
flex-wrap: wrap;
-webkit-flex-wrap: wrap;
align-items: center;
-webkit-align-items: center;
justify-content: center;
-webkit-justify-content: center;
      }
.pricecard{
flex: 0 0 33%;
text-align: center;
border: 1px solid #eee;
padding-bottom: 1rem;
box-sizing: border-box;
margin:0 auto 3em;
      }
      .pricecard h3{
          background: #a2bc10;
          color: #fff;
          padding: 10px;
          margin: 0;
      }
      .pricecard.premium{
          border: 3px solid #3c766f;
          padding-bottom: 3rem
      }
      .pricecard.premium h3{
          background: #3c766f;
          color: #fff;
          padding: 10px;
          margin: 0;
      }
      .pricecard h4{
          font-size: 300%;
          margin: 0 auto;
          padding: 1rem 0 0;
      }
      .pricecard.premium h4 {
          padding: 20px;
      }
      .pricecard p{
          margin: 0;
          padding: 1rem;
          text-align: left;
      }
      .pricecard a{
          padding: 10px 40px;
          background: #fb5859;
          color: #fff;
          text-decoration: none;
          border-radius: 3px;
          display: inline-block;
      }
@media screen and (max-width: 600px){
.profile_card, .pricecards, .profile_cards {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.pricecard, .card_photo {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}
.pricecard.premium {
  order: 1;
  -webkit-order: 1;
}
}

.pricecards .pricecard.premium h3 {
  position: relative;
}


.pricecards .premium h3::after {
  content: 'おすすめです！';
  width: max-content;
  color: #f88400;
  font-size: .8rem;
  padding: 0.3em 1em;
  background: #fff;
  border: 2px solid #f88400;
  border-radius: 100vh;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}


.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #3c766f;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}


/* =========================================================================  */

/* Accordion Type 01 */

/* ========================================================================= */

.accordion-content {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.accordion-item.is-active .accordion-content {
  /* JavaScriptで height を自動で変更するので CSS 側では何もしない */
}

.accordion.type-01 {
  overflow: hidden;
  padding: 3.0rem 0;
  background-image: radial-gradient(at 87% 78%, hsl(168, 68%, 86%) 0px, transparent 50%), radial-gradient(at 19% 43%, hsl(120, 100%, 98%) 0px, transparent 50%), radial-gradient(at 80% 100%, hsl(132, 87%, 96%) 0px, transparent 50%);
  background-color: hsl(70, 64%, 96%);
  margin-top: 100px;
}

.accordion.type-01 .accordion-container {
  max-width: 148rem;
  margin: 0 auto;
  padding: 0 2%;
}

.accordion.type-01 .accordion-container .accordion-list {
  width: 100%;
}

.accordion.type-01 .accordion-container .accordion-list .title {
  text-align: center;
  margin-bottom: 2rem;
}

.accordion.type-01 .accordion-container .accordion-list .title .en p {
  font-size: 2rem;
  color: #3c766f;
  margin: 0;
}

.accordion.type-01 .accordion-container .accordion-list .title h2 {
  font-size: 3rem;
  color: #3c766f;
  margin: 1rem 0;
}

.accordion.type-01 .accordion-container .accordion-list .title h2 .grade {
  color: #0e4e51;
}

.accordion.type-01 .accordion-container .accordion-list .accordion-item {
  margin: 0.5rem 0 0;
}

/* アコーディオンのボタン部分のスタイル */
.accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-btn {
  position: relative;
  color: #fff;
  border: none;
  border-left: solid 2px #3c766f;
  background: #3c766f;
  text-align: left;
  cursor: pointer;
  width: 100%;
  padding: 1.25rem 1.5rem;
}

.accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-btn .btn-inner {
  display: inline-flex;
  align-items: center;
}

/* Qマークのスタイル */
.accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-btn .btn-inner .mark {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.0;
  border-radius: 50%;
  background: #fff;
  width: 2.5rem;
  height: 2.5rem;
}

.accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-btn .btn-inner .mark span {
  color: #3c766f;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
}

.accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-btn .btn-inner h3 {
  font-weight: 600;
  padding-left: 1.65rem;
  padding-right: 1.65rem;
  margin: 0;
}

.accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-btn .btn-inner h3 span {
  color: #fff;
  font-size: 1.65rem;
}

/* 開閉ボタンのプラス/マイナスアイコン */
.accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-btn::before,
.accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-btn::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 1.5rem;
  height: 0.15rem;
  transform-origin: center;
}

.accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-btn::after {
  transform: translateY(-50%) rotate(90deg);
}

.accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-btn::before {
  transform: translateY(-50%);
}

.accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-btn:hover {
  background: #0e4e51;
}

/* アコーディオンのコンテンツ部分のスタイル */
.accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-content {
  overflow: hidden;
  transition: height 0.5s;
  height: 0; /* 初期状態は高さ0（閉じた状態） */
  will-change: height; /* アニメーションのパフォーマンス最適化 */
}

.accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-content .content-inner {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 1.5rem 2.0rem;
}

/* Aマークのスタイル */
.accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-content .content-inner .mark {
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 2px #3c766f;
  border-radius: 50%;
  width: 2.15rem;
  height: 2.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-content .content-inner .mark span {
  color: #3c766f;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
}

.accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-content .content-inner .sentence {
  font-size: 1.5rem;
  width: calc(100% - 2.15rem);
  padding-left: 1.5rem;
}

.accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-content .content-inner .sentence p {
  line-height: 1.8;
  padding-bottom: 1.5rem;
  margin: 0;
}

/* アコーディオンが開いた状態のスタイル */
.accordion.type-01 .accordion-container .accordion-list .accordion-item.is-active .accordion-btn {
  background: #0e4e51;
}

/* 開いた状態でのプラス/マイナスアイコンの変化 */
.accordion.type-01 .accordion-container .accordion-list .accordion-item.is-active .accordion-btn::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scale(0.5);
}

.accordion.type-01 .accordion-container .accordion-list .accordion-item.is-active .accordion-btn::before {
  transform: translateY(-50%) rotate(180deg);
}

.accordion.type-01 .accordion-container .accordion-list .accordion-item.is-active .accordion-content {
  height: auto; /* 開いた状態では高さを自動に */
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(小型PC)までのモニタで適用	◆

start---------------------------------------------------------------------------- */

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .accordion.type-01 {
      padding: 3.0rem 0;
  }
} /* 1024px～1280px responsive-close */

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start---------------------------------------------------------------------------- */

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .accordion.type-01 {
      padding: 3.0rem 0;
  }
} /* 768px～1023px responsive-closed */

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start---------------------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-btn .btn-inner .mark {
      width: 1.8rem;
      height: 1.8rem;
  }

  .accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-btn .btn-inner h3 span {
      font-size: 1.05rem;
  }

  .accordion.type-01 .accordion-container .accordion-list .accordion-item .accordion-content .content-inner .sentence {
      font-size: 1.05rem;
  }



} /* 767px responsive-closed */
.what {
  overflow: hidden;
  position: relative;
  margin: 30px 0 0 0;
  padding: 40px 0 40px 0;
}
.what .bg-image {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.what .bg-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.what .bg-color {
  content: "";
  position: absolute;
  z-index: 2;
  opacity: 0.85;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, rgb(32, 32, 32) 0%, rgb(0, 0, 0) 100%);
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
}
.what .back {
  position: relative;
  z-index: 3;
}
.what .back p {
  visibility: hidden;
  color: #f9f9f9;
  font-family: "Cinzel";
  line-height: 1.25;
  opacity: 0.6;
  letter-spacing: 5px;
  text-align: center;
  font-size: 80px;
}
.what .container {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
  margin: 0 auto 0;
}
.what .container .mark-wrapper {
  width: 600px;
}
.what .container .mark-wrapper ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0 0;
}
.what .container .mark-wrapper ul li {
  visibility: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  margin: 0 30px 0 0;
}
.what .container .mark-wrapper ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border: 3px solid rgba(139, 139, 139, 0.7);
  border-top-color: rgb(214, 214, 214);
  border-radius: 50%;
  animation: what-mark-spin 3s ease-in-out infinite;
  width: 100%;
  height: 100%;
}
@keyframes what-mark-spin {
  to {
    transform: rotate(360deg);
  }
}
.what .container .mark-wrapper ul li p {
  color: #f9f9f9;
  text-align: center;
  font-size: 22px;
}
.what .container .mark-wrapper ul li.cg {
  width: 100px;
}
.what .container .mark-wrapper ul li.cg p {
  font-family: "Cinzel";
  font-size: 55px;
}
.what .container .mark-wrapper ul li.cg::after {
  display: none;
}
.what .container .mark-wrapper ul li:last-child {
  margin: 0 0 0 0;
}
.what .container .mark-wrapper ul:nth-child(1) li:nth-child(2)::after {
  animation-delay: 0.4s;
}
.what .container .mark-wrapper ul:nth-child(2) li:nth-child(1)::after {
  animation-delay: 0.8s;
}
.what .container .mark-wrapper ul:nth-child(2) li:nth-child(3)::after {
  animation-delay: 1.2s;
}
.what .container .mark-wrapper ul:nth-child(3) {
  margin: -30px 0 0 0;
}
.what .container .mark-wrapper ul:nth-child(3) li:nth-child(1)::after {
  animation-delay: 1.6s;
}
.what .container .text {
  color: #f9f9f9;
  width: 40%;
  padding: 0 0 0 80px;
}
.what .container .text h2 .catch {
  font-weight: 500;
  font-size: 42px;
}
.what .container .text .sentence {
  margin: 30px 0 0 0;
}
.what .container .text .sentence p {
  line-height: 2;
  letter-spacing: 1px;
  font-size: 18px;
  padding: 25px 0 25px 0;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .what {
    margin: 30px 0 0 0;
    padding: 40px 0 40px 0;
  }
  .what .bg-image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .what .bg-color {
    z-index: 2;
    opacity: 0.85;
  }
  .what .back p {
    line-height: 1.25;
    opacity: 0.6;
    letter-spacing: 5px;
    font-size: 70px;
  }
  .what .container {
    max-width: 100%;
    margin: 20px auto 0;
  }
  .what .container .mark-wrapper {
    width: 520px;
  }
  .what .container .mark-wrapper ul {
    margin: 20px 0 0 0;
  }
  .what .container .mark-wrapper ul li {
    width: 180px;
    height: 180px;
    margin: 0 20px 0 0;
  }
  .what .container .mark-wrapper ul li::after {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .what .container .mark-wrapper ul li p {
    font-size: 20px;
  }
  .what .container .mark-wrapper ul li.cg {
    width: 100px;
  }
  .what .container .mark-wrapper ul li.cg p {
    font-size: 50px;
  }
  .what .container .mark-wrapper ul li.cg::after {
    display: none;
  }
  .what .container .mark-wrapper ul li:last-child {
    margin: 0 0 0 0;
  }
  .what .container .text {
    width: calc(100% - 520px);
    padding: 0 25px 0 25px;
  }
  .what .container .text h2 .catch {
    font-size: 40px;
  }
  .what .container .text .sentence {
    margin: 30px 0 0 0;
  }
  .what .container .text .sentence p {
    line-height: 2;
    letter-spacing: 1px;
    font-size: 17px;
    padding: 25px 0 25px 0;
  }
} /* 1024px～1280px responsive-close */
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .what {
    margin: 30px 0 0 0;
    padding: 40px 0 40px 0;
  }
  .what .bg-image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .what .bg-color {
    z-index: 2;
    opacity: 0.85;
  }
  .what .back p {
    line-height: 1.25;
    opacity: 0.6;
    letter-spacing: 5px;
    font-size: 70px;
  }
  .what .container {
    display: block;
    max-width: 100%;
    margin: 20px auto 0;
  }
  .what .container .mark-wrapper {
    width: 520px;
    margin: 0 auto 0;
  }
  .what .container .mark-wrapper ul {
    margin: 20px 0 0 0;
  }
  .what .container .mark-wrapper ul li {
    width: 180px;
    height: 180px;
    margin: 0 20px 0 0;
  }
  .what .container .mark-wrapper ul li::after {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .what .container .mark-wrapper ul li p {
    font-size: 20px;
  }
  .what .container .mark-wrapper ul li.cg {
    width: 100px;
  }
  .what .container .mark-wrapper ul li.cg p {
    font-size: 50px;
  }
  .what .container .mark-wrapper ul li.cg::after {
    display: none;
  }
  .what .container .mark-wrapper ul li:last-child {
    margin: 0 0 0 0;
  }
  .what .container .text {
    width: calc(100% - 0px);
    padding: 30px 4% 0 4%;
  }
  .what .container .text h2 .catch {
    text-align: center;
    font-size: 40px;
  }
  .what .container .text .sentence {
    margin: 20px 0 0 0;
  }
  .what .container .text .sentence p {
    line-height: 2;
    letter-spacing: 1px;
    font-size: 17px;
    padding: 25px 0 25px 0;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .what {
    margin: 30px 0 0 0;
    padding: 20px 0 40px 0;
  }
  .what .bg-image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .what .bg-color {
    z-index: 2;
    opacity: 0.85;
  }
  .what .back p {
    line-height: 1.25;
    opacity: 0.6;
    letter-spacing: 3px;
    font-size: 9vw;
  }
  .what .container {
    display: block;
    max-width: 100%;
    margin: 20px auto 0;
  }
  .what .container .mark-wrapper {
    width: 100%;
    margin: 0 auto 0;
  }
  .what .container .mark-wrapper ul {
    margin: 20px 0 0 0;
  }
  .what .container .mark-wrapper ul li {
    position: relative;
    width: 32vw;
    height: 32vw;
    margin: 0 2vw 0 0;
  }
  .what .container .mark-wrapper ul li::after {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .what .container .mark-wrapper ul li p {
    font-size: 4vw;
  }
  .what .container .mark-wrapper ul li.cg {
    width: 20vw;
  }
  .what .container .mark-wrapper ul li.cg p {
    font-size: 10vw;
  }
  .what .container .mark-wrapper ul li.cg::after {
    display: none;
  }
  .what .container .mark-wrapper ul li:last-child {
    margin: 0 0 0 0;
  }
  .what .container .mark-wrapper ul:nth-child(3) {
    margin: -20px 0 0 0;
  }
  .what .container .text {
    width: calc(100% - 0px);
    padding: 30px 5% 0 5%;
  }
  .what .container .text h2 .catch {
    text-align: center;
    font-size: 7.25vw;
  }
  .what .container .text .sentence {
    margin: 15px 0 0 0;
  }
  .what .container .text .sentence p {
    line-height: 2;
    letter-spacing: 1px;
    font-size: 4vw;
    padding: 20px 0 20px 0;
  }
} 

.lineup .title {
  overflow: hidden;
  position: relative;
  color: #ffffff;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  text-align: center;
  padding: 30px 0 30px 0;
}
.lineup .title h3 {
  color: #ffffff;
  font-weight: bold;
  transform: skew(-15deg);
  border: solid 2px #ffffff;
  text-align: center;
  font-size: 20px;
  width: 270px;
  margin: 0 auto 5px;
  padding: 10px 15px;
}
.lineup .title h3 span {
  display: block;
  transform: skew(15deg);
}
.lineup .title h2 {
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
  font-size: 40px;
  margin: 10px 0 10px 0;
}

.lineup .title h2 .small{
  font-size: 28px;
}


.category .box-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  width: 96%;
  max-width: 1480px;
  margin: 10px auto 50px;
}
.category .box-wrapper .box {
  background: #ffffff;
  width: 32%;
  margin: 50px 2% 10px 0;
}
.category .box-wrapper .box h3 {
  color: #ffffff;
  line-height: 1.2;
  border: solid 2px #ffffff;
  text-align: center;
  font-size: 20px;
  width: 70%;
  margin: -10px auto 30px;
  padding: 6px 0 10px;
  border-radius: 5px;
}
.category .box-wrapper .box .thumb {
  position: relative;
}
.category .box-wrapper .box .thumb .mark {
  position: absolute;
  font-family: "Antonio";
  font-style: normal;
  font-weight: 400;
  right: 10px;
  bottom: -5px;
  letter-spacing: 1px;
  font-size: 55px;
  line-height: 0.9;
  text-align: center;
  background: #fff;
  padding: 5px 13px;
  display: flex;              /* ← 追加 */
  align-items: center;        /* 垂直方向中央 */
  justify-content: center;    /* 水平方向中央 */
}
.category .box-wrapper .box .thumb .mark .small{
  font-size: 30px;
}
.category .box-wrapper .box .thumb img {
  display: block;
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
  width: 85%;
  height: auto;
  margin: 0 auto;
}
.category .box-wrapper .box ul {
  padding: 20px 7.5% 30px;
}
.category .box-wrapper .box ul li {
  color: #222222;
  font-weight: 500;
  line-height: 1.7;
  list-style-type: none;
  font-size: 18px;
  padding: 2px 15px;
}
.category .box-wrapper .box ul li::before {
  position: relative;
  top: -2px;
  content: "●";
  font-size: 0.7em;
  padding: 0 10px 0 0;
}
.category .box-wrapper .box .explain {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  height: 100%;
}
.category .box-wrapper .box .explain .caption {
  margin: 0 0 20px 0;
}
.category .box-wrapper .box .explain .caption p {
  display: inline-block;
  color: #d10b17;
  font-weight: 500;
  border: solid 3px #d10b17;
  border-radius: 100px;
  font-size: 20px;
  padding: 5px 30px 5px 30px;
}
.category .box-wrapper .box .explain .line {
  margin: 10px 0 0 0;
}
.category .box-wrapper .box .explain .line p {
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
  box-shadow: rgba(238, 173, 173, 0.4) 0 7px 29px 0;
  background: linear-gradient(90deg, #d10b17 0%, #ec350c 100%);
  font-size: 25px;
  padding: 4px 30px 4px 30px;
}
.category .box-wrapper .box .explain .icon {
  width: 100px;
  margin: 20px auto 0;
}
.category .box-wrapper .box:nth-child(3n) {
  margin: 50px 0 10px 0;
}
.category .box-wrapper .box:nth-child(1) {
  border: solid 2px #f88400;
  box-shadow: 6px 6px 0 0 #f88400;
  border-radius: 5px;
}
.category .box-wrapper .box:nth-child(1) .mark {
  color: #f88400;
}
.category .box-wrapper .box:nth-child(1) h3 {
  box-shadow: 0 0 0 2px #f88400;
  background: #f88400;
}
.category .box-wrapper .box:nth-child(1) ul li::before {
  color: #f88400;
}
.category .box-wrapper .box:nth-child(2) {
  border: solid 2px #f11421;
  box-shadow: 6px 6px 0 0 #f11421;
  position: relative;
  border-radius: 5px;
}
.category .box-wrapper .box:nth-child(2) .mark {
  color: #f11421;
}
.category .box-wrapper .box02 h3:after {
  content: 'おすすめです！';
  width: max-content;
  color: #f11421;
  font-size: 1rem;
  padding: 0.3em 1em;
  background: #fff;
  border: 2px solid #f11421;
  border-radius: 100vh;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.category .box-wrapper .box:nth-child(2) h3 {
  box-shadow: 0 0 0 2px #f11421;
  background: #f11421;
}
.category .box-wrapper .box:nth-child(2) ul li::before {
  color: #f11421;
}
.category .box-wrapper .box:nth-child(3) {
  border: solid 2px #3c766f;
  box-shadow: 6px 6px 0 0 #3c766f;
  border-radius: 5px;
}
.box.box03 .big {
  font-size: 20px ;
  font-weight: bold;
}
.category .box-wrapper .box:nth-child(3) .mark {
  color: #3c766f;
}
.category .box-wrapper .box:nth-child(3) h3 {
  box-shadow: 0 0 0 2px #3c766f;
  background: #3c766f;
}
.category .box-wrapper .box:nth-child(3) ul li::before {
  color: #3c766f;
}
.category .box-wrapper .box:nth-child(4) {
  border: solid 2px #3cb347;
  box-shadow: 6px 6px 0 0 #3cb347;
}
.category .box-wrapper .box:nth-child(4) .mark {
  color: #3cb347;
}
.category .box-wrapper .box:nth-child(4) h3 {
  box-shadow: 0 0 0 2px #3cb347;
  background: #3cb347;
}
.category .box-wrapper .box:nth-child(4) ul li::before {
  color: #3cb347;
}
.category .box-wrapper .box:nth-child(5) {
  border: solid 2px #0981b9;
  box-shadow: 6px 6px 0 0 #0981b9;
}
.category .box-wrapper .box:nth-child(5) .mark {
  color: #0981b9;
}
.category .box-wrapper .box:nth-child(5) h3 {
  box-shadow: 0 0 0 2px #0981b9;
  background: #0981b9;
}
.category .box-wrapper .box:nth-child(5) ul li::before {
  color: #0981b9;
}
.category .box-wrapper .box:nth-child(6) {
  background: none;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(小型PC)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .lineup .title {
    padding: 30px 0 30px 0;
  }
  .lineup .title h3 {
    font-size: 20px;
    width: 270px;
    margin: 0 auto 5px;
    padding: 10px 15px;
  }
  .lineup .title h3 span {
    transform: skew(15deg);
  }
  .lineup .title h2 {
    line-height: 1.35;
    font-size: 35px;
    margin: 10px 0 10px 0;
  }
  .lineup .title .caption {
    font-weight: 500;
    font-size: 17px;
    margin: 0 0 0 0;
    padding: 0 0 5px 0;
  }
  {
    padding: 0 0 80px 0;
  }
  .profile .splide {
    max-width: 1680px;
    margin: 0 auto 0;
    padding: 50px 2% 40px 2%;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide::before {
    position: absolute;
    z-index: 2;
    opacity: 0.9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-width: 3px;
    border-style: solid;
    border-image: linear-gradient(90deg, #e73742 0%, #f5c4c8 45%, #ed7a4d 70%, #f5c4c8 85%, #e73742 90% 100%);
    -o-border-image: linear-gradient(90deg, #e73742 0%, #f5c4c8 45%, #ed7a4d 70%, #f5c4c8 85%, #e73742 90% 100%);
    border-image-slice: 1;
    content: "";
    width: calc(100% - 5px);
    height: calc(100% - 5px);
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner {
    padding: 45px 30px 0 30px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .back {
    line-height: 1.15;
    opacity: 0.25;
    top: 5px;
    right: 10px;
    letter-spacing: 2px;
    font-size: 50px;
    display: inline-block;
    background: linear-gradient(45deg, #eb535c 0%, #d00b17 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .number {
    padding: 5px 25px 8px 20px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .number .sub {
    color: #ffffff;
    font-size: 16px;
    padding: 0 10px 0 0;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .number .main {
    font-size: 15px;
    padding: 3px 5px 5px 5px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .thumb {
    width: 25%;
    height: 125px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .thumb img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .text {
    padding: 0 0 0 20px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .text h3 {
    letter-spacing: 0;
    font-size: 22px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .text .info-wrapper .info img {
    width: 16px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .text .info-wrapper .info p {
    font-size: 16px;
    padding: 0 0 0 7px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .text .info-wrapper .info:nth-child(2n) {
    padding: 0 0 0 20px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .sentence {
    padding: 10px 35px 40px 35px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .sentence p {
    line-height: 2;
    font-size: 15px;
    padding: 0 0 3px 0;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .sentence p .color {
    color: #d10b17;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide.is-active {
    position: relative;
  }
  .profile .splide .splide-wrapper .splide__pagination__page.is-active {
    position: relative;
  }
  .profile .splide .splide-wrapper .splide__progress__bar {
    background: #cccccc;
    height: 3px;
  }
  .category .box-wrapper {
    width: 96%;
    max-width: 1480px;
    margin: 10px auto 50px;
  }
  .category .box-wrapper .box {
    width: 32%;
    margin: 50px 2% 10px 0;
  }
  .category .box-wrapper .box h3 {
    font-size: 20px;
    width: 70%;
    margin: -10px auto 30px;
    padding: 2px 0 6px;
  }
  .category .box-wrapper .box .thumb .mark {
    right: 10px;
    bottom: -5px;
    letter-spacing: 1px;
    font-size: 45px;
  }
  .category .box-wrapper .box .thumb img {
    display: block;
    width: 85%;
    height: auto;
    margin: 0 auto;
  }
  .category .box-wrapper .box ul {
    padding: 20px 5% 30px;
  }
  .category .box-wrapper .box ul li {
    font-size: 16px;
    padding: 2px 15px;
  }
  .category .box-wrapper .box ul li::before {
    top: -2px;
    font-size: 0.7em;
    padding: 0 10px 0 0;
  }
  .category .box-wrapper .box .explain .caption {
    margin: 0 0 20px 0;
  }
  .category .box-wrapper .box .explain .caption p {
    border-radius: 100px;
    font-size: 18px;
    padding: 5px 20px 5px 20px;
  }
  .category .box-wrapper .box .explain .line {
    margin: 10px 0 0 0;
  }
  .category .box-wrapper .box .explain .line p {
    font-size: 22px;
    padding: 4px 15px 4px 15px;
  }
  .category .box-wrapper .box .explain .icon {
    width: 100px;
    margin: 20px auto 0;
  }
  .category .box-wrapper .box:nth-child(3n) {
    margin: 50px 0 10px 0;
  }
  .category .box-wrapper .box:nth-child(6) {
    background: none;
  }
} /* 1024px～1280px responsive-close */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .lineup .title {
    padding: 10px 0 10px 0;
  }
  .lineup .title h3 {
    font-size: 20px;
    width: 270px;
    margin: 0 auto 5px;
    padding: 10px 15px;
  }
  .lineup .title h3 span {
    transform: skew(15deg);
  }
  .lineup .title h2 {
    line-height: 1.35;
    font-size: 35px;
    margin: 10px 0 10px 0;
  }
  .lineup .title .caption {
    font-weight: 500;
    font-size: 17px;
    margin: 0 0 0 0;
    padding: 0 0 5px 0;
  }
  {
    padding: 0 0 80px 0;
  }
  .profile .splide {
    max-width: 1680px;
    margin: 0 auto 0;
    padding: 50px 2% 40px 2%;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide::before {
    position: absolute;
    z-index: 2;
    opacity: 0.9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-width: 3px;
    border-style: solid;
    border-image: linear-gradient(90deg, #e73742 0%, #f5c4c8 45%, #ed7a4d 70%, #f5c4c8 85%, #e73742 90% 100%);
    -o-border-image: linear-gradient(90deg, #e73742 0%, #f5c4c8 45%, #ed7a4d 70%, #f5c4c8 85%, #e73742 90% 100%);
    border-image-slice: 1;
    content: "";
    width: calc(100% - 5px);
    height: calc(100% - 5px);
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner {
    padding: 45px 30px 0 30px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .back {
    line-height: 1.15;
    opacity: 0.25;
    top: 5px;
    right: 10px;
    letter-spacing: 2px;
    font-size: 50px;
    display: inline-block;
    background: linear-gradient(45deg, #eb535c 0%, #d00b17 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .number {
    padding: 5px 25px 8px 20px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .number .sub {
    color: #ffffff;
    font-size: 16px;
    padding: 0 10px 0 0;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .number .main {
    font-size: 15px;
    padding: 3px 5px 5px 5px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .thumb {
    width: 25%;
    height: 125px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .thumb img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .text {
    padding: 0 0 0 20px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .text h3 {
    letter-spacing: 0;
    font-size: 22px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .text .info-wrapper .info img {
    width: 16px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .text .info-wrapper .info p {
    font-size: 16px;
    padding: 0 0 0 7px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .text .info-wrapper .info:nth-child(2n) {
    padding: 0 0 0 20px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .sentence {
    padding: 10px 35px 40px 35px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .sentence p {
    line-height: 2;
    font-size: 15px;
    padding: 0 0 3px 0;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .sentence p .color {
    color: #d10b17;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide.is-active {
    position: relative;
  }
  .profile .splide .splide-wrapper .splide__pagination__page.is-active {
    position: relative;
  }
  .profile .splide .splide-wrapper .splide__progress__bar {
    background: #cccccc;
    height: 3px;
  }
  .category .box-wrapper {
    width: 96%;
    max-width: 1480px;
    margin: 10px auto 50px;
  }
  .category .box-wrapper .box {
    width: 80%;
    margin: 50px 3% 10px 0;
  }
  .category .box-wrapper .box h3 {
    font-size: 20px;
    width: 70%;
    margin: -10px auto 30px;
    padding: 2px 0 6px;
  }
  .category .box-wrapper .box .thumb .mark {
    right: 10px;
    bottom: -5px;
    letter-spacing: 1px;
    font-size: 45px;
  }
  .category .box-wrapper .box .thumb img {
    display: block;
    width: 85%;
    height: auto;
    margin: 0 auto;
  }
  .category .box-wrapper .box ul {
    padding: 20px 5% 30px;
  }
  .category .box-wrapper .box ul li {
    font-size: 16px;
    padding: 2px 15px;
  }
  .category .box-wrapper .box ul li::before {
    top: -2px;
    font-size: 0.7em;
    padding: 0 10px 0 0;
  }
  .category .box-wrapper .box .explain .caption {
    margin: 0 0 20px 0;
  }
  .category .box-wrapper .box .explain .caption p {
    border-radius: 100px;
    font-size: 18px;
    padding: 5px 20px 5px 20px;
  }
  .category .box-wrapper .box .explain .line {
    margin: 10px 0 0 0;
  }
  .category .box-wrapper .box .explain .line p {
    font-size: 22px;
    padding: 4px 15px 4px 15px;
  }
  .category .box-wrapper .box .explain .icon {
    width: 100px;
    margin: 20px auto 0;
  }
  .category .box-wrapper .box:nth-child(3n) {
    margin: 50px 3% 10px 0;
  }
  .category .box-wrapper .box:nth-child(2n) {
    margin: 50px 0 10px 0;
  }
  .category .box-wrapper .box:nth-child(6) {
    background: none;
  }
}
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .lineup {
    margin: 40px 0 0 0;
  }
  .lineup .title {
    padding: 30px 0 30px 0;
  }
  .lineup .title h3 {
    font-size: 4vw;
    width: 270px;
    margin: 0 auto 5px;
    padding: 10px 15px;
  }
  .lineup .title h3 span {
    transform: skew(15deg);
  }
  .lineup .title h2 {
    line-height: 1.35;
    font-size: 7vw;
    margin: 10px 0 10px 0;
  }
  .lineup .title .caption {
    font-weight: 500;
    font-size: 4vw;
    margin: 0 0 0 0;
    padding: 0 0 5px 0;
  }
  {
    padding: 0 0 30px 0;
  }
  .profile .splide {
    max-width: 1680px;
    margin: 0 auto 0;
    padding: 50px 2% 40px 2%;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide::before {
    position: absolute;
    z-index: 2;
    opacity: 0.9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-width: 3px;
    border-style: solid;
    border-image: linear-gradient(90deg, #e73742 0%, #f5c4c8 45%, #ed7a4d 70%, #f5c4c8 85%, #e73742 90% 100%);
    -o-border-image: linear-gradient(90deg, #e73742 0%, #f5c4c8 45%, #ed7a4d 70%, #f5c4c8 85%, #e73742 90% 100%);
    border-image-slice: 1;
    content: "";
    width: calc(100% - 5px);
    height: calc(100% - 5px);
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner {
    padding: 55px 30px 0 30px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .back {
    line-height: 1.15;
    opacity: 0.25;
    top: 5px;
    right: 10px;
    letter-spacing: 2px;
    font-size: 10vw;
    display: inline-block;
    background: linear-gradient(45deg, #eb535c 0%, #d00b17 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .number {
    padding: 5px 25px 8px 20px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .number .sub {
    color: #ffffff;
    font-size: 3.75vw;
    padding: 0 10px 0 0;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .number .main {
    font-size: 3.5vw;
    padding: 3px 5px 5px 5px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .thumb {
    width: 20vw;
    height: 125px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .thumb img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .text {
    padding: 0 0 0 20px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .text h3 {
    letter-spacing: 0;
    font-size: 5vw;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .text .info-wrapper {
    display: block;
    margin: 10px 0 0 0;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .text .info-wrapper .info img {
    width: 3.75vw;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .text .info-wrapper .info p {
    font-size: 3.75vw;
    padding: 0 0 0 7px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .inner .text .info-wrapper .info:nth-child(2n) {
    padding: 10px 0 0 0;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .sentence {
    padding: 10px 35px 40px 35px;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .sentence p {
    line-height: 2;
    font-size: 3.75vw;
    padding: 0 0 3px 0;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide .sentence p .color {
    color: #d10b17;
  }
  .profile .splide .splide-wrapper .splide__track .splide__list .splide__slide.is-active {
    position: relative;
  }
  .profile .splide .splide-wrapper .splide__pagination__page.is-active {
    position: relative;
  }
  .profile .splide .splide-wrapper .splide__progress__bar {
    background: #cccccc;
    height: 3px;
  }
  .category .box-wrapper {
    display: block;
    width: 94%;
    max-width: 1480px;
    margin: 10px auto 50px;
  }
  .category .box-wrapper .box {
    width: 100%;
    margin: 50px 0 10px 0;
  }
  .category .box-wrapper .box h3 {
    font-size: 4.25vw;
    width: 70%;
    margin: -10px auto 30px;
    padding: 2px 0 6px;
  }
  .category .box-wrapper .box .thumb .mark {
    right: 10px;
    bottom: -5px;
    letter-spacing: 1px;
    font-size: 45px;
  }
  .category .box-wrapper .box .thumb img {
    display: block;
    width: 85%;
    height: auto;
    margin: 0 auto;
  }
  .category .box-wrapper .box ul {
    padding: 20px 5% 30px;
  }
  .category .box-wrapper .box ul li {
    font-size: 4vw;
    padding: 2px 15px;
  }
  .category .box-wrapper .box ul li::before {
    top: -2px;
    font-size: 0.7em;
    padding: 0 10px 0 0;
  }
  .category .box-wrapper .box .explain .caption {
    margin: 0 0 20px 0;
  }
  .category .box-wrapper .box .explain .caption p {
    border-radius: 100px;
    font-size: 4.25vw;
    padding: 5px 20px 5px 20px;
  }
  .category .box-wrapper .box .explain .line {
    margin: 10px 0 0 0;
  }
  .category .box-wrapper .box .explain .line p {
    font-size: 5vw;
    padding: 4px 15px 4px 15px;
  }
  .category .box-wrapper .box .explain .icon {
    width: 25vw;
    margin: 20px auto 0;
  }
  .category .box-wrapper .box:nth-child(3n) {
    margin: 50px 3% 10px 0;
  }
  .category .box-wrapper .box:nth-child(2n) {
    margin: 50px 0 10px 0;
  }
  .category .box-wrapper .box:nth-child(6) {
    background: none;
  }
}

.category .custome{
margin-top:20px;
  font-size: 1.2rem;
  text-align: center !important;
}

.accordion .title .border{
  position: relative;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  width: 1.8px;
  height: 100px;
  margin: 0 auto;
  overflow: hidden;
}

.accordion .title .border::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: moveDot 2s linear infinite;
}

@keyframes moveDot {
  0% {
      top: -10px;
      opacity: 0;
  }
  10% {
      opacity: 1;
  }
  90% {
      opacity: 1;color: #0d1b42;
      letter-spacing: 2px;
      font-size: 42px;
  }
  100% {
      top: 100%;
      opacity: 0;
  }
}

.accordion .en{
  text-align: center;
}

.accordion .title .en p{
  display: inline-block;
  font-family: "Antonio";
  background: linear-gradient(90deg, #3c766f, #5d9a92);

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
  font-size: 20px;
}

.accordion .title h2{
  text-align: center;
  margin: 10px 0 0 0;
  color: #0d1b42;
    letter-spacing: 2px;
    font-size: 42px;
    margin-bottom: 40px;
}
.accordion .title h2 .catch{
  color: #0d1b42;
  letter-spacing: 2px;
  font-size: 42px;
}

.accordion .title h2 .catch .grade{
  display: inline;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.cta {
  overflow: hidden;
  position: relative;
  padding: 10px 0 50px 0;
  margin: 50px 0;
}
.cta .back {
  font-family: "Jost";
  font-weight: 400;
  text-align: center;
}
.cta .back p {
  display: inline-block;
  line-height: 1;
  background: linear-gradient(90deg, #567f93 0%, #5d9a92 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  font-size: 104px;
  width: 100%;
}
.cta::before {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #567f93 0%, #5d9a92 100%);
  content: "";
  width: 100%;
  height: 50%;
}
.cta .box {
  position: relative;
  box-shadow: rgba(238, 173, 173, 0.4) 0 7px 29px 0;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  width: 1280px;
  margin: -20px auto 0;
  padding: 10px 10px 10px 10px;
}
.cta .box .inner {
  background: #ffffff;
  padding: 30px 0 30px 0;
}
.cta .box .inner .title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.cta .box .inner .title .thumb {
  position: relative;
  width: 150px;
}

.cta .box .inner .title .thumb img {
  border-radius: 50%;
  width: 100%;
  height: auto;
  animation: poyon 2s ease-out infinite;
  opacity: 1;
}

.cta .box .inner .title .right img {
  animation-delay: 0s;
}

.cta .box .inner .title .left img {
  animation-delay: 0.2s;
}


.cta .box .inner .title .text {
  text-align: center;
  padding: 0 30px 0 30px;
}
.cta .box .inner .title .text h2 {
  text-align: center;
}
.cta .box .inner .title .text h2 .catch {
  color: #343434;
  line-height: 1.3;
  letter-spacing: 0.5px;
  font-size: 42px;
}
.cta .box .inner .title .text h2 .catch .grade {
  display: inline-block;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta .box .inner .title .text .sub {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 0 0;
}
.cta .box .inner .title .text .sub .icon {
  line-height: 0;
  width: 30px;
  height: auto;
}
.cta .box .inner .title .text .sub .catch {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 24px;
  padding: 0 0 0 10px;
  display: inline-block;
  background: linear-gradient(90deg, #3c766f, #5d9a92);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta .box .inner .marks {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0 0;
}
.cta .box .inner .marks .mark {
  position: relative;
  color: #3c766f;
  box-shadow: rgba(238, 173, 173, 0.4) 0 7px 29px 0;
  background: #ffffff;
  font-size: 16px;
  margin: 0 20px 0 0;
  padding: 8px 30px 8px 30px;
}
.cta .box .inner .marks .mark::before {
  position: absolute;
  z-index: 2;
  opacity: 0.9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-width: 3px;
  border-style: solid;
  border-image: linear-gradient(90deg, #3c766f, #5d9a92);
  -o-border-image: linear-gradient(90deg, #3c766f, #5d9a92);
  border-image-slice: 1;
  content: "";
  width: calc(100% - 3px);
  height: calc(100% - 3px);
}
.cta .box .inner .marks .mark:last-child {
  margin: 0 0 0 0;
}
.cta .box .inner .block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px 0 40px;
}

  .cta .box .inner .block .right .button {
    width: 100%;
    max-width: none; /* 任意：幅制限を解除 */
  }

.cta .box .inner .block .right .button a {
  display: block;
  border-radius: 100px;
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
  background: linear-gradient(90deg, #2e8d03 0%, #4bae00 100%);
  text-decoration: none;
  padding: 5px 20px 20px 20px;
}
.cta .box .inner .block .right .button a .sub {
  text-align: center;
  display: block;
  margin: -20px 0 0 0;
}
.cta .box .inner .block .right .button a .sub .inner {
  display: inline-block;
  color: #2e8d03;
  border: solid 3px #2e8d03;
  border-radius: 100px;
  background: #ffffff;
  padding: 3px 20px 3px 20px;
  font-size: 16px;
}
.cta .box .inner .block .right .button a .main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 0 0;
}
.cta .box .inner .block .right .button a .main .icon {
  width: 45px;
  height: auto;
}
.cta .box .inner .block .right .button a .main .catch {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  font-size: 24px;
}
.cta .box .inner .block .right .button a .main .arrow {
  width: 35px;
  height: auto;
}
.cta .box .inner .caution {
  margin: 45px 0 0 0;
}
.cta .box .inner .caution p {
  text-align: center;
  font-size: 11px;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .cta {
    padding: 10px 0 50px 0;
  }
  .cta .back p {
    line-height: 1;
    letter-spacing: 2px;
    font-size: 7vw;
  }
  .cta::before {
    width: 100%;
    height: 50%;
  }
  .cta .box {
    width: 94%;
    margin: -20px auto 0;
    padding: 7px;
  }
  .cta .box .inner {
    background: #ffffff;
    padding: 30px 0 30px 0;
  }
  .cta .box .inner .title {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cta .box .inner .title .thumb {
    width: 150px;
  }
  .cta .box .inner .title .thumb::before {
    border: solid 3px #567f93;
    width: 90%;
    height: 90%;
  }
  .cta .box .inner .title .thumb img {
    width: 100%;
    height: auto;
  }
  .cta .box .inner .title .text {
    text-align: center;
    padding: 0 30px 0 30px;
  }
  .cta .box .inner .title .text h2 {
    text-align: center;
  }
  .cta .box .inner .title .text h2 .catch {
    line-height: 1.3;
    letter-spacing: 0.5px;
    font-size: 42px;
  }
  .cta .box .inner .title .text h2 .catch span {
    display: inline-block;
  }
  .cta .box .inner .title .text .sub {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 0 0;
  }
  .cta .box .inner .title .text .sub .icon {
    line-height: 0;
    width: 30px;
    height: auto;
  }
  .cta .box .inner .title .text .sub .catch {
    display: inline-block;
    letter-spacing: 1px;
    font-size: 24px;
    padding: 0 0 0 10px;
  }
  .cta .box .inner .marks {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 0 0;
  }
  .cta .box .inner .marks .mark {
    font-size: 16px;
    margin: 0 20px 0 0;
    padding: 5px 30px 5px 30px;
  }
  .cta .box .inner .marks .mark:last-child {
    margin: 0 0 0 0;
  }
  .cta .box .inner .block {
    padding: 30px 40px 0 40px;
  }
  .cta .box .inner .block .left {
    width: 45%;
    padding: 0 5% 0 0;
  }
  .cta .box .inner .block .left .semi-title {
    display: flex;
    align-items: center;
  }
  .cta .box .inner .block .left .semi-title img {
    line-height: 0;
    width: 80px;
    height: auto;
  }
  .cta .box .inner .block .left .semi-title .cover {
    padding: 0 0 0 10px;
  }
  .cta .box .inner .block .left .semi-title .cover .online {
    line-height: 1.1;
    font-size: 16px;
  }
  .cta .box .inner .block .left .semi-title .cover .catch {
    font-size: 24px;
  }
  .cta .box .inner .block .left .sentence p {
    line-height: 1.8;
    font-size: 15px;
    margin: 15px 0 0 0;
  }
  .cta .box .inner .block .right {
    width: 50%;
  }
  .cta .box .inner .block .right .button {
    width: 100%;
    padding: 20px 0 10px 0;
  }
  .cta .box .inner .block .right .button a {
    display: block;
    border-radius: 100px;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    text-decoration: none;
    padding: 5px 20px 20px 20px;
  }
  .cta .box .inner .block .right .button a .sub {
    text-align: center;
    margin: -20px 0 0 0;
  }
  .cta .box .inner .block .right .button a .sub .inner {
    display: inline-block;
    border-radius: 100px;
    background: #ffffff;
    padding: 3px 20px 3px 20px;
  }
  .cta .box .inner .block .right .button a .main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 0 0;
  }
  .cta .box .inner .block .right .button a .main .icon {
    width: 45px;
    height: auto;
  }
  .cta .box .inner .block .right .button a .main .catch {
    color: #ffffff;
    line-height: 1.3;
    text-align: center;
    font-size: 24px;
  }
  .cta .box .inner .block .right .button a .main .arrow {
    width: 35px;
    height: auto;
  }
  .cta .box .inner .caution {
    margin: 45px 0 0 0;
  }
  .cta .box .inner .caution p {
    text-align: center;
    font-size: 11px;
  }
} /* 1024px～1280px responsive-close */
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .cta {
    padding: 30px 0 50px 0;
  }
  .cta .back p {
    line-height: 1;
    letter-spacing: 2px;
    font-size: 10vw;
  }
  .cta::before {
    width: 100%;
    height: 50%;
  }
  .cta .box {
    width: 92%;
    margin: -20px auto 0;
    padding: 10px;
  }
  .cta .box .inner {
    padding: 30px 0 30px 0;
  }
  .cta .box .inner .title .thumb {
    width: 16.5vw;
    height: auto;
    margin: 0 20px 0 0;
  }
  .cta .box .inner .title .thumb.left {
    order: 1;
  }
  .cta .box .inner .title .thumb.right {
    order: 2;
    margin: 0 0 0 0;
  }
  .cta .box .inner .title .text {
    order: 3;
    width: 100%;
    padding: 10px 30px 0 30px;
  }
  .cta .box .inner .title .text h2 .catch {
    line-height: 1.3;
    letter-spacing: 0.5px;
    font-size: 4.5vw;
  }
  .cta .box .inner .title .text h2 .catch .sp-disblock {
    display: none;
  }
  .cta .box .inner .title .text .sub {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 0 0;
  }
  .cta .box .inner .title .text .sub .icon {
    line-height: 0;
    width: 5vw;
    height: auto;
  }
  .cta .box .inner .title .text .sub .catch {
    letter-spacing: 1px;
    font-size: 3vw;
    padding: 0 0 0 10px;
  }
  .cta .box .inner .title .text .sub .catch .sp-disblock {
    display: block;
  }
  .cta .box .inner .title .text .sub .catch .sp-disblock:last-child {
    display: none;
  }
  .cta .box .inner .marks {
    margin: 20px 0 0 0;
  }
  .cta .box .inner .marks .mark {
    border-radius: 100px;
    font-size: 2.2vw;
    margin: 0 15px 0 0;
    padding: 5px 20px 5px 20px;
  }
  .cta .box .inner .marks .mark:last-child {
    margin: 0 0 0 0;
  }
  .cta .box .inner .block {
    padding: 30px 20px 0 20px;
  }
  .cta .box .inner .block .left {
    width: 52.5%;
    padding: 0 5% 0 0;
  }
  .cta .box .inner .block .left .semi-title img {
    line-height: 0;
    width: 8vw;
    height: auto;
  }
  .cta .box .inner .block .left .semi-title .cover {
    padding: 0 0 0 10px;
  }
  .cta .box .inner .block .left .semi-title .cover .online {
    line-height: 1.1;
    font-size: 1.8vw;
  }
  .cta .box .inner .block .left .semi-title .cover .catch {
    font-size: 2.5vw;
  }
  .cta .box .inner .block .left .sentence p {
    line-height: 1.8;
    font-size: 1.75vw;
    margin: 15px 0 0 0;
  }
  .cta .box .inner .block .right {
    width: 47.5%;
    padding: 20px 0 0 0;
  }
  .cta .box .inner .block .right .button {
    width: 100%;
  }
  .cta .box .inner .block .right .button a {
    display: block;
    text-decoration: none;
    padding: 5px 20px 20px 20px;
  }
  .cta .box .inner .block .right .button a .sub {
    text-align: center;
    margin: -20px 0 0 0;
  }
  .cta .box .inner .block .right .button a .sub p {
    border-radius: 100px;
    font-size: 1.65vw;
    padding: 3px 20px 3px 20px;
  }
  .cta .box .inner .block .right .button a .main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 0 0;
  }
  .cta .box .inner .block .right .button a .main .icon {
    width: 4vw;
    height: auto;
  }
  .cta .box .inner .block .right .button a .main .catch {
    line-height: 1.3;
    font-size: 2.25vw;
  }
  .cta .box .inner .block .right .button a .main .arrow {
    width: 3vw;
    height: auto;
  }
  .cta .box .inner .caution {
    margin: 45px 0 0 0;
  }
  .cta .box .inner .caution p {
    text-align: center;
    font-size: 11px;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .cta {
    padding: 10px 0 50px 0;
  }
  .cta .back p {
    line-height: 1.5;
    letter-spacing: 2px;
    font-size: 12.5vw;
  }
  .cta::before {
    width: 100%;
    height: 50%;
  }
  .cta .box {
    width: 92%;
    margin: -20px auto 0;
    padding: 7px 7px 7px 7px;
  }
  .cta .box .inner {
    background: #ffffff;
    padding: 20px 0 30px 0;
  }
  .cta .box .inner .title {
    align-items: center;
    justify-content: center;
  }
  .cta .box .inner .title .thumb {
    width: 25vw;
    height: auto;
    margin: 0 20px 0 0;
  }
  .cta .box .inner .title .thumb.left {
    order: 1;
  }
  .cta .box .inner .title .thumb.right {
    order: 2;
    margin: 0 0 0 0;
  }
  .cta .box .inner .title .text {
    order: 3;
    padding: 30px 10px 10px 10px;
  }
  .cta .box .inner .title .text h2 .catch {
    line-height: 1.3;
    letter-spacing: 0.5px;
    font-size: 7vw;
  }
  .cta .box .inner .title .text .sub {
    display: flex;
    margin: 25px 0 0 0;
  }
  .cta .box .inner .title .text .sub .icon {
    width: 8vw;
    height: auto;
  }
  .cta .box .inner .title .text .sub .catch {
    line-height: 1.35;
    letter-spacing: 1px;
    font-size: 4.75vw;
    padding: 0 0 0 10px;
  }
  .cta .box .inner .marks {
    display: block;
    text-align: center;
    margin: 0 0 0 0;
  }
  .cta .box .inner .marks .mark {
    display: inline-block;
    letter-spacing: 0;
    font-size: 4.25vw;
    margin: 10px 0 0 0;
    padding: 5px 20px 5px 20px;
  }
  .cta .box .inner .marks .mark:last-child {
    margin: 10px 0 0 0;
  }
  .cta .box .inner .block {
    display: block;
    padding: 30px 20px 0 20px;
  }
  .cta .box .inner .block .left {
    width: 100%;
    padding: 0 0 0 0;
  }
  .cta .box .inner .block .left .semi-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .cta .box .inner .block .left .semi-title img {
    line-height: 0;
    width: 15vw;
    height: auto;
  }
  .cta .box .inner .block .left .semi-title .cover {
    padding: 0 0 0 10px;
  }
  .cta .box .inner .block .left .semi-title .cover .online {
    line-height: 1.1;
    font-size: 3.75vw;
  }
  .cta .box .inner .block .left .semi-title .cover .catch {
    font-size: 5.25vw;
  }
  .cta .box .inner .block .left .sentence p {
    line-height: 1.5;
    font-size: 3.75vw;
    margin: 15px 0 0 0;
  }
  .cta .right .button {
    display: block; /* ← inline-block だと幅が縮まるので block に */
    width: 90%;     /* ← 必要な幅に調整（例：90%） */
    max-width: 1000px; /* ← 必要に応じて上限幅を設定 */
    margin: 0 auto; /* ← 中央寄せ */
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    background: linear-gradient(90deg, #e2611b, #f2a02b);
    padding: 5px 50px 10px 50px;
  }
  .cta .box .inner .block .right .button a {
    display: block;
    border-radius: 100px;
    text-decoration: none;
    padding: 5px 15px 20px 15px;
  }
  .cta .box .inner .block .right .button a .sub {
    text-align: center;
    margin: -20px 0 0 0;
  }
  .cta .box .inner .block .right .button a .sub p {
    border-radius: 100px;
    font-size: 4vw;
    padding: 3px 20px 3px 20px;
  }
  .cta .box .inner .block .right .button a .main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 0 0;
  }
  .cta .box .inner .block .right .button a .main .icon {
    width: 9vw;
    height: auto;
  }
  .cta .box .inner .block .right .button a .main .catch {
    line-height: 1.3;
    font-size: 5.25vw;
  }
  .cta .box .inner .block .right .button a .main .arrow {
    width: 7vw;
    height: auto;
  }
  .cta .box .inner .caution {
    margin: 45px 0 0 0;
  }
  .cta .box .inner .caution p {
    text-align: center;
    font-size: 11px;
  }
}

.cta .right .button {
  display: block; /* ← inline-block だと幅が縮まるので block に */
  width: 90%;     /* ← 必要な幅に調整（例：90%） */
  max-width: 600px; /* ← 必要に応じて上限幅を設定 */
  margin: 0 auto; /* ← 中央寄せ */
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
  background: linear-gradient(90deg, #e2611b, #f2a02b);
  padding: 5px 50px 10px 50px;
}
.cta .right .button .sub {
  text-align: center;
  margin: 0 0 0 0;
}
.cta .right .button .sub p {
  display: inline-block;
  border: solid 2px #e97a21;
  border-radius: 10px;
  background: #ffffff;
  padding: 0 30px 0 30px;
}
.cta .right .button .sub p span {
  font-weight: 700;
  background: linear-gradient(90deg, #e2611b, #f2a02b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 15px;
}
.cta .right .button .main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 0 0 0;
}
.cta .right .button .main .icon {
  width: 25px;
}
.cta .right .button .main p {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  padding: 0 10px 0 10px;
}
.cta .right .button .main .arrow {
  width: 20px;
}
.cta .box .inner .block {
  display: block;
}

.cta .box .inner .block .right {
  width: 100%;
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .cta .right .button{
    padding: 5px 13px 10px 13px;
  }
}


.footer {
  padding: 2rem;
  font-size: 15px;
  color: #3c766f;
  background-image: radial-gradient(at 87% 78%, hsl(168, 68%, 86%) 0px, transparent 50%), radial-gradient(at 19% 43%, hsl(120, 100%, 98%) 0px, transparent 50%), radial-gradient(at 80% 100%, hsl(132, 87%, 96%) 0px, transparent 50%);
  background-color: hsl(70, 64%, 96%);
  padding: 50px 100px 60px 100px;
}

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

  .footer {
    padding: 50px 10px 60px 10px;
  }
  .footer img{
    width: 60px;
    height: 60px;
  }
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer a {
  color: #3c766f;
  text-decoration: none;
}
.footer .footer_hr {
  border: none;
  border-top: 2px solid #3c766f;
  margin: 20px 0;
}
.footer a:hover {
  color: #e73742;
}

.footer__navi {
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer__navi li {
  display: inline-block;
}

.footer__navi li:not(:last-child) {
  margin-right: 16px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {

  .mx-justify-between {
    justify-content: space-between;
  }

  .copyright {
    text-align: left;
  }
}




.wrap {
  animation: fadein 3s forwards;
}

@keyframes fadein {
  0% {opacity: 0}
  100% {opacity: 1}
}

.bg {
  width: 100%;
  height: 100vh;
}



@charset "UTF-8";
/* tab menu css */
/* =========================================================================  */
/* Tab Menu Type 01 */
/* ========================================================================= */
.tab-menu.type-01 {
  position: relative;
  z-index: 2;
  font-family: Murecho, sans-serif;
  max-width: 138rem;
  margin: 30px auto 0;
  padding: 0 2%;
}
.tab-menu.type-01 .tab-menu-container .tab-menu-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tab-menu.type-01 .tab-menu-container .tab-menu-buttons button {
  color: #fff;
  border-radius: 5px 5px 0 0;
  background-color: #3c766f;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, transform 0.2s;
  transition: background-color 0.3s, transform 0.2s, -webkit-transform 0.2s;
  font-size: 1.8rem;
  margin: 0 1rem 0 0;
  padding: 1rem 2rem;
}
.tab-menu.type-01 .tab-menu-container .tab-menu-buttons button:hover {
  color: #3c766f;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  background-color: #ffd8cf;
}
.tab-menu.type-01 .tab-menu-container .tab-menu-buttons button.is-active {
  color: #fff;
  background-color: #231815;
}
.tab-menu.type-01 .tab-menu-container .tab-menu-buttons button:last-child {
  margin: 0;
}
.tab-menu.type-01 .tab-menu-container .tab-menu-contents {
  position: relative;
  min-height: 100px; /* 高さを固定してガクつきを防ぐ */
}
.tab-menu.type-01 .tab-menu-container .tab-menu-contents .content {
  visibility: hidden; /* 完全に非表示に */
  position: absolute;
  z-index: 0;
  opacity: 0;
  left: 0;
  top: 0;
  border: solid 3px #3c766f;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
          box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
  background: #fff;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  width: 100%;
  padding: 5.5rem;
}
.tab-menu.type-01 .tab-menu-container .tab-menu-contents .content.is-active {
  visibility: visible;
  position: relative;
  z-index: 1;
  opacity: 1;
}
.tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .thumb {
  width: 40rem;
  height: 30rem;
}
.tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text {
  width: calc(100% - 40rem);
  padding: 0 0 0 4.5rem;
}
.tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 2.2rem;
}
.tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text h4 .mark {
  display: inline-block;
  color: #3c766f;
  border: solid 3px #3c766f;
  font-size: 2rem;
  margin: 0 1rem 0 0;
  padding: 0 2rem;
}
.tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text h4 .catch {
  letter-spacing: 2px;
  font-size: 2rem;
}
.tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text h3 {
  font-size: 2.8rem;
  margin: 2rem 0 0;
}
.tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text h3 span {
  color: #e3c766fc5c3f;
}
.tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text .sentence {
  margin: 1.5rem 0 0;
}
.tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text .sentence p {
  color: #343434;
  line-height: 2.2;
  letter-spacing: 0;
  font-size: 1.7rem;
  padding: 1rem 0;
}
.tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text .sentence p .bold {
  color: #000;
  font-weight: 500;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(小型PC)までのモニタで適用	◆

start---------------------------------------------------------------------------- */
@media screen and (width >= 1024px) and (width <= 1280px) {
  .tab-menu.type-01 {
    max-width: 100%;
    margin: 30px auto 0;
    padding: 0 2%;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-buttons button {
    border-radius: 5px 5px 0 0;
    font-size: 1.6rem;
    margin: 0 1rem 0 0;
    padding: 1rem 2rem;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-buttons button:hover {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents {
    min-height: 100px; /* 高さを固定してガクつきを防ぐ */
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content {
    padding: 5.5rem;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner{
    display: block;
  }
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .thumb {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .thumb img {
    width: 100%;
    height: auto;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text {
    width: 100%;
    padding: 0 0 0 4.5rem;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text h4 {
    display: block;
    font-size: 2.2rem;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text h4 .mark {
    font-size: 2rem;
    margin: 0 1rem 0 0;
    padding: 0 2rem;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text h4 .catch {
    letter-spacing: 2px;
    font-size: 2rem;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text h3 {
    font-size: 2.8rem;
    margin: 2rem 0 0;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text .sentence {
    margin: 1.5rem 0 0;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text .sentence p {
    line-height: 2.2;
    letter-spacing: 0;
    font-size: 1.7rem;
    padding: 1rem 0;
  }
} /* 1024px～1280px responsive-close */
/* end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start---------------------------------------------------------------------------- */
@media screen and (width >= 768px) and (width <= 1023px) {
  .tab-menu.type-01 {
    max-width: 100%;
    margin: 30px auto 0;
    padding: 0 2%;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-buttons button {
    border-radius: 5px 5px 0 0;
    font-size: 1.8rem;
    margin: 0 1rem 0 0;
    padding: 1rem 3rem;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-buttons button:hover {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents {
    min-height: 100px; /* 高さを固定してガクつきを防ぐ */
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content {
    padding: 3.5rem;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner{
    display: block;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .thumb {
    width: 100%;
    height: auto;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .thumb img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text {
    width: 100%;
    padding: 0 0 0 3.5rem;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text h4 {
    display: block;
    font-size: 2rem;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text h4 .mark {
    font-size: 1.9rem;
    margin: 0 1rem 0 0;
    padding: 0 1.9rem;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text h4 .catch {
    letter-spacing: 2px;
    font-size: 1.9rem;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text h3 {
    font-size: 2.6rem;
    margin: 2rem 0 0;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text .sentence {
    margin: 1.5rem 0 0;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text .sentence p {
    line-height: 2.2;
    letter-spacing: 0;
    font-size: 1.6rem;
    padding: 1rem 0;
  }
} /* 768px～1023px responsive-closed */
/* end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start---------------------------------------------------------------------------- */
@media screen and (width <= 767px) {
  .tab-menu.type-01 {
    max-width: 100%;
    margin: 30px auto 0;
    padding: 0 3%;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-buttons button {
    border-radius: 5px 5px 0 0;
    font-size: 1.4rem;
    margin: 0 1rem 0 0;
    padding: 1rem 0.5rem;
  }



  .tab-menu.type-01 .tab-menu-container .tab-menu-buttons button:hover {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents {
    min-height: 100px; /* 高さを固定してガクつきを防ぐ */
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content {
    padding: 1.5rem;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner {
    display: block;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .thumb {
    width: 100%;
    height: auto;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .thumb img {
    width: 100%;
    height: auto;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text {
    width: calc(100% - 0rem);
    padding: 0rem 0;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text h4 {
    display: block;
    font-size: 2rem;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text h4 .mark {
    font-size: 1.5rem;
    margin: 0 1rem 0 0;
    padding: 0 1.9rem;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text h4 .catch {
    letter-spacing: 2px;
    font-size: 2rem;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text h3 {
    font-size: 1.8rem;
    margin: 2rem 0 0;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text .sentence {
    margin: 1.5rem 0 0;
  }
  .tab-menu.type-01 .tab-menu-container .tab-menu-contents .content .content-inner .text .sentence p {
    line-height: 2.2;
    letter-spacing: 0;
    font-size: 1rem;
    padding: 1rem 0;
  }
} /* 767px responsive-closed */
/* end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/