@charset "UTF-8";

/* --- 共通設定 --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: min(100px, 9.09vw);
}

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
span,
a,
li,
th,
td {
  font-family: "Zen Old Mincho", serif;
}

p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 2;
}

.en {
  font-family: "EB Garamond", serif;
}

.en2 {
  font-family: "Caveat", cursive;
}

li {
  list-style: none;
}

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

a:hover {
  opacity: 0.8;
}

/* --- コンテナ設定 --- */
img {
  max-width: 100%;
  height: auto;
  border-style: none;
  display: block;
}

/* 消してる要素 */
.sp,
.sp-fixed-footer {
  display: none;
}

/* アニメーションの動き */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

/* 画面に入った時に付与するクラス */
.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ヘッダー */
#header {
  position: fixed;
  top: min(44px, 3.06vw);
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-container {
  padding: 0 min(70px, 4.86vw);
}

.header-box {
  height: min(72px, 5vw);
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: min(5px, 0.35vw);
}

.header-logo img {
  width: min(205px, 14.24vw);
  height: auto;
}

.header-logo span {
  color: #fe605a;
  font-size: min(40px, 2.78vw);
  font-weight: bold;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-btn {
  position: relative;
  height: min(64px, 4.44vw);
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.3;
  overflow: hidden;
}

.header-btn::before {
  content: "";
  position: absolute;
  top: min(5px, 0.35vw);
  left: min(5px, 0.35vw);
  right: min(5px, 0.35vw);
  bottom: min(5px, 0.35vw);
  border: 1px solid #fff;
  pointer-events: none;
}

.header-btn::after {
  content: "";
  position: absolute;
  right: min(5px, 0.35vw);
  bottom: min(5px, 0.35vw);
  width: min(8px, 0.56vw);
  height: min(8px, 0.56vw);
  background: url(../image/part1.png) no-repeat right bottom / contain;
  pointer-events: none;
}

.header-btn1 {
  width: min(166px, 11.53vw);
  background: url(../image/top-back2.png) no-repeat center / 100% 100%;
  font-size: min(16px, 1.11vw);
}

.header-btn2 {
  width: min(180px, 12.5vw);
  background: url(../image/top-back1.png) no-repeat center / 100% 100%;
  font-size: min(20px, 1.39vw);
}

.sp-menu-btn {
  width: min(64px, 4.44vw);
  height: min(64px, 4.44vw);
  border: none;
  background: #43d3cf;
  position: relative;
  z-index: 100;
  cursor: pointer;
  margin-left: min(15px, 1.04vw);
}

.sp-menu-btn span {
  position: absolute;
  left: min(18px, 1.25vw);
  width: min(28px, 1.94vw);
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

.sp-menu-btn span:nth-child(1) {
  top: min(21px, 1.46vw);
}
.sp-menu-btn span:nth-child(2) {
  top: min(31px, 2.15vw);
}
.sp-menu-btn span:nth-child(3) {
  top: min(41px, 2.85vw);
}

.sp-menu-btn.is-active span:nth-child(1) {
  top: min(31px, 2.15vw);
  transform: rotate(45deg);
}

.sp-menu-btn.is-active span:nth-child(2) {
  opacity: 0;
}

.sp-menu-btn.is-active span:nth-child(3) {
  top: min(31px, 2.15vw);
  transform: rotate(-45deg);
}

.sp-nav {
  position: fixed;
  top: 0;
  right: min(-720px, -50vw);
  width: min(720px, 50vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: min(25px, 1.74vw);
  background: rgba(255, 255, 255, 0.8);
  transition: 0.4s;
  padding: 0 min(125px, 8.68vw);
}

.sp-nav.is-active {
  right: 0;
}

.sp-nav ul {
  list-style: none;
}

.sp-nav li {
  padding: min(15px, 1.04vw) 0;
}

.sp-nav li a {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: min(24px, 1.67vw);
}

.header-link {
  display: flex;
  align-items: center;
  gap: min(20px, 1.39vw);
}

.header-inst {
  width: min(34px, 2.36vw);
  height: auto;
}

/* トップ */
.main-v {
  position: relative;
  width: 100%;
  height: calc(845 / 1440 * 100vw);
  overflow: hidden;
}

.main-v-slider {
  position: absolute;
  inset: 0;
}

.slide-img {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide-img.is-active {
  opacity: 1;
}

.slide1 {
  background-image: url(../image/top-img1.png);
}

.slide2 {
  background-image: url(../image/top-img2.png);
}

.slide3 {
  background-image: url(../image/top-img3.png);
}

.main-v-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.main-v-title {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../image/top-back5.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: min(60px, 4.17vw) 0 min(136px, 9.44vw) min(80px, 5.56vw);
}

.main-v-title-box {
  width: min(525px, 36.46vw);
  text-align: center;
  margin-left: min(26px, 1.81vw);
  margin-bottom: min(10px, 0.69vw);
}

.main-v-title p {
  font-size: min(40px, 2.78vw);
  font-weight: bold;
  font-family: "Zen Old Mincho", serif;
  color: #fe605a;
  line-height: 1.8;
}

.main-v-title img {
  width: 100%;
  height: auto;
  margin-top: min(10px, 0.69vw);
}

.main-v-title h1 {
  font-size: min(64px, 4.44vw);
  font-weight: 500;
  line-height: 1.4;
}

.main-v-title h1 span {
  font-size: min(80px, 5.56vw);
}

.main-v-title h1 span:first-child {
  color: #40d3c8;
}

.main-v-title h1 span:last-child {
  color: #ff851b;
}

.main-v-box {
  position: absolute;
  right: min(70px, 4.86vw);
  bottom: min(20px, 1.39vw);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: min(15px, 1.04vw);
}

.main-v-item {
  width: min(252px, 17.5vw);
  height: min(252px, 17.5vw);
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-v-item:nth-child(odd) {
  background-image: url(../image/top-back11.png), url(../image/top-back9.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.main-v-item:nth-child(even) {
  background-image: url(../image/top-back11.png), url(../image/top-back10.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.main-v-item span {
  text-align: center;
  font-size: min(24px, 1.67vw);
  color: #fff;
}

.main-v-en {
  position: absolute;
  right: 0;
  bottom: max(-40px, -2.78vw);
  z-index: 5;
}

.main-v-en span {
  font-size: min(128px, 8.89vw);
  color: #faffbf;
}

/* p1-a */
.p1-a-box {
  background-image:
    url(../image/part3.png), url(../image/part4.png),
    url(../image/top-back6.png);
  background-repeat: no-repeat;
  background-size:
    min(384px, 26.67vw) auto,
    min(384px, 26.67vw) auto,
    cover;
  background-position:
    top left,
    bottom right,
    center;
  padding: min(107px, 7.43vw) 0 min(150px, 10.42vw);
}

.p1-a-text {
  text-align: center;
}

.p1-a-text p {
  font-size: min(20px, 1.39vw);
}

.p1-a-item-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(20px, 1.39vw);
  margin-top: min(34px, 2.36vw);
}

.p1-a-item {
  text-align: center;
  background-color: #fff;
  padding: min(20px, 1.39vw) 0;
  border: 2px solid #40d3c8;
}

.p1-a-item1 {
  width: min(541px, 37.57vw);
}

.p1-a-item2 {
  width: min(648px, 45vw);
}

.p1-a-item span {
  font-size: min(32px, 2.22vw);
  color: #40d3c8;
}

/* p1-b */
.p1-b-box {
  background-image: url(../image/top-back7.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  gap: min(24px, 1.67vw) min(15px, 1.04vw);
  padding: min(110px, 7.64vw) 0;
}

.p1-b-item {
  width: min(301px, 20.9vw);
  height: min(302px, 20.97vw);
  display: flex;
  justify-content: center;
  align-items: center;
}

.p1-b-item:nth-child(odd) {
  background-image: url(../image/top-back11.png), url(../image/top-back9.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.p1-b-item:nth-child(even) {
  background-image: url(../image/top-back11.png), url(../image/top-back10.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.p1-b-item span {
  text-align: center;
  font-size: min(20px, 1.39vw);
  color: #fff;
  line-height: 2;
}

/* p1-c */
.p1-c-box {
  background-image: url(../image/top-back8.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: min(100px, 6.94vw) 0;
}

.p1-c-text {
  text-align: center;
}

.p1-c-text p {
  font-size: min(20px, 1.39vw);
}

/* p1-d */
.p1-d-box {
  display: flex;
  justify-content: center;
  gap: min(24px, 1.67vw);
  background-image: url(../image/top-back12.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: min(60px, 4.17vw) 0 min(24px, 1.67vw);
}

.p1-d-box2.p1-d-box {
  background-image: none;
}

.p1-d-box2.reverse {
  flex-direction: row-reverse;
}

.p1-d-item {
  width: min(660px, 45.83vw);
}

.p1-d-span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p1-d-span .en2 {
  position: relative;
  z-index: 5;
  font-size: min(24px, 1.67vw);
  color: #fe605a;
  margin-right: max(-30px, -2.08vw);
  margin-top: min(5px, 0.35vw);
}

.p1-d-span span {
  font-size: min(96px, 6.67vw);
  color: #40d3c8;
}

.p1-d-title {
  text-align: center;
  border-bottom: 2px dashed #40d3c8;
}

.p1-d-title h3 {
  font-size: min(36px, 2.5vw);
  font-weight: 500;
  line-height: 2;
}

.p1-d-text {
  text-align: center;
  margin-top: min(15px, 1.04vw);
}

.p1-d-text p {
  font-size: min(20px, 1.39vw);
}

.p1-d-img {
  position: relative;
  width: min(596px, 41.39vw);
}

.p1-d-img::before {
  content: "";
  position: absolute;
  top: min(24px, 1.67vw);
  left: min(24px, 1.67vw);
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(60, 122, 202, 0.5),
    rgba(56, 210, 107, 0.5)
  );
  z-index: 0;
}

.reverse .p1-d-img::before {
  left: auto;
  right: min(24px, 1.67vw);
}

.p1-d-img img {
  display: block;
  position: relative;
  z-index: 1;
}

.p1-d-box3 {
  position: relative;
  background-image: url(../image/top-back13.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: min(56px, 3.89vw) 0 min(120px, 8.33vw);
  margin-top: min(130px, 9.03vw);
}

.p1-d-box3 .p1-d-item {
  margin: 0 auto;
}

.p1-d-img2 {
  width: min(200px, 13.89vw);
  position: absolute;
  top: max(-233px, -16.18vw);
  right: 0;
  z-index: 10;
}

.p1-d-box4 {
  display: flex;
  justify-content: center;
  gap: min(106px, 7.36vw);
  margin-top: min(50px, 3.47vw);
  margin-bottom: min(244px, 16.94vw);
}

.p1-d-box4 .p1-d-item {
  width: min(498px, 34.58vw);
}

.p1-d-img3 {
  width: 100%;
  margin-top: min(36px, 2.5vw);
}

.p1-d-box5 {
  position: relative;
}

.p1-d-box5 .p1-d-item {
  width: min(507px, 35.21vw);
}

.p1-d-box5 .p1-d-img2 {
  top: min(-90px, -6.25vw);
  right: auto;
  left: 0;
}

/* p1-e */
.p1-e-container {
  padding-top: min(52px, 3.61vw);
  padding-bottom: min(120px, 8.33vw);
}

.p1-e-table {
  width: min(1280px, 88.89vw);
  margin: min(78px, 5.42vw) auto 0;
}

.p1-e-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.p1-e-table th,
.p1-e-table td {
  padding: min(20px, 1.39vw);
  font-size: min(20px, 1.39vw);
  font-weight: 400;
  text-align: left;
  vertical-align: middle;
}

.p1-e-table th {
  width: 40%;
  background: #ffffb3;
  border-bottom: 1px solid #777;
}

.p1-e-table td {
  width: 60%;
  background: #fff;
  border-bottom: 1px solid #777;
}

.p1-e-table tr:first-child th,
.p1-e-table tr:first-child td {
  border-top: 1px solid #777;
}

/* テンプレートパーツ */
.temple-box {
  background-image: url(../image/top-back14.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: min(55px, 3.82vw) 0;
}

.tebple-item {
  width: min(1280px, 88.89vw);
  margin: 0 auto;
}

.tebple-text {
  text-align: center;
  background-color: #fff;
  padding: min(37px, 2.57vw) 0;
}

.tebple-text p {
  font-size: min(20px, 1.39vw);
}

.tebple-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(32px, 2.22vw);
  background-image: url(../image/top-back20.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: min(31px, 2.15vw) 0;
}

.tebple-botan {
  width: min(382px, 26.53vw);
  height: min(108px, 7.5vw);
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  padding: min(8px, 0.56vw);
}

.tebple-botan1 {
  background-image: url(../image/top-back21.png);
}

.tebple-botan2 {
  background-image: url(../image/top-back22.png);
}

.tebple-botan a {
  width: 100%;
  height: 100%;
  font-size: min(24px, 1.67vw);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(7px, 0.49vw);
  border: 1px solid #fff;
}

.tebple-botan a img {
  width: min(24px, 1.67vw);
  height: auto;
}

.tebple-botan .tebple-img {
  width: min(12px, 0.83vw);
  height: auto;
  position: absolute;
  right: min(8px, 0.56vw);
  bottom: min(8px, 0.56vw);
  z-index: 10;
}

.tebple-botan2 .tebple-img {
  right: 0;
  bottom: 0;
}

.tebple-botan2 a {
  position: relative;
}

.tebple-botan2 a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: min(73px, 5.07vw);
  transform: translateY(-50%);
  width: min(33px, 2.29vw);
  height: min(33px, 2.29vw);
  background: url(../image/part7.png) no-repeat center / contain;
}

/* p1-f */
.p1-f-container {
  background-image: url(../image/top-back15.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center max(-80px, -5.56vw);
}

.p1-f-box {
  width: min(1280px, 88.89vw);
  margin: min(85px, 5.9vw) auto 0;
}

.p1-f-title h3 {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: min(36px, 2.5vw);
  font-weight: 500;
  color: #fe605a;
}

.p1-f-title h3::before,
.p1-f-title h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #fe605a;
}

.p1-f-title h3::before {
  margin-right: min(30px, 2.08vw);
}

.p1-f-title h3::after {
  margin-left: min(30px, 2.08vw);
}

.p1-f-item-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: min(40px, 2.78vw);
  margin-top: min(30px, 2.08vw);
}

.p1-f-item {
  width: min(412px, 28.61vw);
  height: min(451px, 31.32vw);
  background-color: #fff;
  box-shadow: 0 0 10px rgba(163, 163, 163, 0.25);
  padding: min(32px, 2.22vw) min(24px, 1.67vw);
}

.p1-f-span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p1-f-span .en2 {
  position: relative;
  z-index: 5;
  font-size: min(24px, 1.67vw);
  color: #fe605a;
  margin-right: max(-20px, -1.39vw);
  margin-top: min(5px, 0.35vw);
}

.p1-f-span span {
  font-size: min(64px, 4.44vw);
  color: #40d3c8;
}

.p1-f-text {
  margin-top: min(14px, 0.97vw);
}

.p1-f-text h4 {
  text-align: center;
  font-size: min(24px, 1.67vw);
  font-weight: 400;
  color: #40d3c8;
  line-height: 1.6;
}

.p1-f-text p {
  font-size: min(20px, 1.39vw);
  line-height: 1.6;
  padding-top: min(10px, 0.69vw);
}

.p1-f-box2 {
  padding-bottom: min(183px, 12.71vw);
}

/* p1-g */
.p1-g-container {
  margin-top: max(-117px, -8.13vw);
}

.p1-g .h2-title {
  background-color: #fff;
}

.p1-g-box {
  width: min(1280px, 88.89vw);
  margin: min(80px, 5.56vw) auto 0;
}

.p1-g-item-box {
  width: min(1210px, 84.03vw);
  position: relative;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 0 12px rgba(143, 143, 143, 0.25);
  padding: min(45px, 3.13vw) min(38px, 2.64vw) min(45px, 3.13vw)
    min(62px, 4.31vw);
  margin-left: auto;
  margin-top: min(40px, 2.78vw);
}

.p1-g-item-box:first-child {
  margin-top: 0;
}

.p1-g-span {
  width: min(106px, 7.36vw);
  height: min(106px, 7.36vw);
  position: absolute;
  top: 50%;
  left: max(-64px, -4.44vw);
  z-index: 10;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../image/top-back18.png), url(../image/top-back16.png);
  background-repeat: no-repeat;
  background-size:
    min(97px, 6.74vw) auto,
    100% 100%;
  background-position: center;
}

.p1-g-item-box:nth-child(odd) .p1-g-span {
  background-image: url(../image/top-back18.png), url(../image/top-back16.png);
}

.p1-g-item-box:nth-child(even) .p1-g-span {
  background-image: url(../image/top-back18.png), url(../image/top-back17.png);
}

.p1-g-span span {
  display: inline-block;
  font-size: min(64px, 4.44vw);
  color: #fff;
  margin-bottom: min(5px, 0.35vw);
}

.p1-g-item {
  width: min(786px, 54.58vw);
}

.p1-g-item h3 {
  font-size: min(32px, 2.22vw);
  font-weight: 500;
  line-height: 2;
}

.p1-g-item p {
  font-size: min(20px, 1.39vw);
  line-height: 1.4;
  padding-top: min(13px, 0.9vw);
  border-top: 1px solid #40d3c8;
}

.p1-g-item .p1-g-p {
  padding-top: min(15px, 1.04vw);
  border-top: none;
}

.p1-g-img {
  width: min(285px, 19.79vw);
}

/* p1-h */
.p1-h-container {
  padding-top: min(80px, 5.56vw);
}

.p1-h-box {
  width: min(1280px, 88.89vw);
  margin: min(80px, 5.56vw) auto 0;
}

.p1-h-item {
  width: 100%;
  margin-top: min(40px, 2.78vw);
}

.p1-h-item:first-child {
  margin-top: 0;
}

.qa-q {
  display: flex;
  align-items: stretch;
  cursor: pointer;
}

.qa-mark {
  width: min(71px, 4.93vw);
  height: min(71px, 4.93vw);
  flex-shrink: 0;
  background: url(../image/top-back19.png) no-repeat center / cover;
  color: #fff;
  font-size: min(40px, 2.78vw);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: serif;
}

.qa-content {
  flex: 1;
  height: min(71px, 4.93vw);
  padding-left: min(30px, 2.08vw);
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qa-question {
  font-size: min(20px, 1.39vw);
  line-height: 1.8;
  cursor: pointer;
}

.qa-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  font-size: min(38px, 2.64vw);
  color: #000;
  cursor: pointer;
  flex-shrink: 0;
}

.qa-a {
  display: none;
  padding: min(30px, 2.08vw) min(50px, 3.47vw) 0 min(50px, 3.47vw);
}

.qa-answer {
  font-size: min(20px, 1.39vw);
  line-height: 1.4;
}

.qa-item.is-open .qa-a {
  display: block;
}

.qa-item.is-open .qa-btn {
  font-size: min(34px, 2.36vw);
}

/* p1-i */
.p1-i-container {
  padding-top: min(100px, 6.94vw);
}

.p1-i-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: min(78px, 5.42vw);
  margin-top: min(68px, 4.72vw);
}

.p1-i-item {
  width: min(553px, 38.4vw);
}

.p1-i-img {
  width: min(334px, 23.2vw);
  margin: 0 auto;
}

.p1-i-text {
  margin-top: min(10px, 0.69vw);
}

.p1-i-text h3 {
  text-align: center;
  font-size: min(24px, 1.67vw);
  font-weight: 500;
  line-height: 2;
}

.p1-i-text p {
  font-size: min(16px, 1.11vw);
  line-height: 1.6;
  padding-top: min(13px, 0.9vw);
  border-top: 2px dashed #40d3c8;
  margin-top: min(13px, 0.9vw);
}

/* p1-j */
.p1-j-container {
  padding-top: min(80px, 5.56vw);
}

.p1-j-box {
  width: min(1280px, 88.89vw);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: min(65px, 4.51vw) auto 0;
}

.p1-j-table {
  width: min(742px, 51.53vw);
}

.p1-j-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.p1-j-table th,
.p1-j-table td {
  font-size: min(20px, 1.39vw);
  font-weight: 400;
  line-height: 1.5;
  vertical-align: top;
  padding: min(10px, 0.69vw) 0 min(10px, 0.69vw) min(20px, 1.39vw);
  border-bottom: 1px solid #000;
}

.p1-j-table th {
  width: min(145px, 10.07vw);
  background: #faffb2;
  text-align: left;
}

.p1-j-table td {
  background: #fff;
}

.p1-j-img {
  width: min(501px, 34.79vw);
}

/* p1-k */
.p1-k-container {
  padding-top: min(80px, 5.56vw);
}

.p1-k-box {
  width: 100%;
  height: min(521px, 36.18vw);
}

.p1-k-box iframe {
  width: 100%;
  height: 100%;
}

/* コピーライト */
.copy-right {
  text-align: center;
  background-color: #fff;
  padding: min(10px, 0.69vw) 0;
}

.copy-right p {
  font-size: min(14px, 0.97vw);
  line-height: 2;
}

/* トップに戻るボタン */
.page-top {
  position: fixed;
  right: min(80px, 5.56vw);
  bottom: min(80px, 5.56vw);
  width: min(80px, 5.56vw);
  height: min(80px, 5.56vw);
  background-color: #40d3c8;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 99;
}

.page-top img {
  width: min(30px, 2.08vw);
  height: auto;
  display: block;
}

.page-top.is-show {
  opacity: 1;
  visibility: visible;
}

.page-top:hover {
  opacity: 0.8;
}
/* 共通 */
.h2-title {
  background-image: url(../image/part5.png), url(../image/part5.png);
  background-repeat: no-repeat;
  background-size: min(365px, 25.35vw) auto;
  background-position:
    top right,
    bottom left;
  text-align: center;
  padding-top: min(72px, 5vw);
  padding-bottom: min(16px, 1.11vw);
}

.h2-title h2 {
  font-size: min(96px, 6.67vw);
  font-weight: 500;
  color: #40d3c8;
  letter-spacing: 0.07em;
}

.h2-title span {
  display: block;
  font-size: min(32px, 2.22vw);
  padding-bottom: min(50px, 3.47vw);
  border-bottom: 1px solid #40d3c8;
}

/* お知らせ内容 1100で可変 */
.single-container {
  width: 100%;
  padding: min(60px, 5.45vw) 0;
}

.single-box {
  width: min(1000px, 90.91vw);
  margin: 0 auto;
}

.single-title {
  font-size: min(32px, 2.91vw);
  font-weight: 600;
  margin-bottom: min(30px, 2.73vw);
  line-height: 1.4;
}

.single-img {
  width: 100%;
  max-width: min(600px, 54.55vw);
  margin-bottom: min(40px, 3.64vw);
}

.single-img img {
  width: 100%;
  height: auto;
  display: block;
}

.single-content {
  font-size: min(16px, 1.45vw);
  line-height: 1.8;
  color: #333;
}

.single-content img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  /* 全体 */
  p {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    line-height: 1.6;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /* ヘッダー */
  #header {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  .header-container {
    padding: 0 13px;
  }

  .header-box {
    height: 76px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .header-logo img {
    width: 139px;
    height: auto;
  }

  .header-logo span {
    color: #fe605a;
    font-size: 22px;
    font-weight: bold;
  }

  .header-right {
    display: flex;
    align-items: center;
  }

  .header-box .header-btn {
    display: none;
  }

  .header-btn {
    position: relative;
    height: 64px;
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.3;
    overflow: hidden;
  }

  .header-btn::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid #fff;
    pointer-events: none;
  }

  .header-btn::after {
    content: "";
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 8px;
    height: 8px;
    background: url(../image/part1.png) no-repeat right bottom / contain;
    pointer-events: none;
  }

  .header-btn1 {
    width: 166px;
    background: url(../image/top-back2.png) no-repeat center / 100% 100%;
    font-size: 16px;
  }

  .header-btn2 {
    width: 180px;
    background: url(../image/top-back1.png) no-repeat center / 100% 100%;
    font-size: 20px;
  }

  .sp-menu-btn {
    width: 53px;
    height: 53px;
    border: none;
    background: #43d3cf;
    position: relative;
    z-index: 100;
    cursor: pointer;
    margin-left: 0;
  }

  .sp-menu-btn span {
    position: absolute;
    left: 15px;
    width: 23px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
  }

  .sp-menu-btn span:nth-child(1) {
    top: 17px;
  }

  .sp-menu-btn span:nth-child(2) {
    top: 25px;
  }

  .sp-menu-btn span:nth-child(3) {
    top: 33px;
  }

  .sp-menu-btn.is-active span:nth-child(1) {
    top: 25px;
    transform: rotate(45deg);
  }

  .sp-menu-btn.is-active span:nth-child(2) {
    opacity: 0;
  }

  .sp-menu-btn.is-active span:nth-child(3) {
    top: 25px;
    transform: rotate(-45deg);
  }

  .sp-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.8);
    transition: 0.4s;
    padding: 0 20px;
  }

  .sp-nav.is-active {
    right: 0;
  }

  .sp-nav ul {
    list-style: none;
  }

  .sp-nav li {
    padding: 10px 0;
  }

  .sp-nav li a {
    display: block;
    color: #000;
    text-decoration: none;
    font-size: 16px;
  }

  .header-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .header-inst {
    width: 34px;
    height: auto;
  }

  /* トップ */
  .main-v {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
  }

  .main-v-slider {
    position: absolute;
    inset: 0;
  }

  .slide-img {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 1s ease;
  }

  .slide-img.is-active {
    opacity: 1;
  }

  .slide1 {
    background-image: url(../image/top-img1.png);
  }

  .slide2 {
    background-image: url(../image/top-img2.png);
  }

  .slide3 {
    background-image: url(../image/top-img3.png);
  }

  .main-v-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
  }

  .main-v-title {
    width: 375px;
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: url(../image/top-back5.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 65px 0 68px 20px;
  }

  .main-v-title-box {
    width: 273px;
    text-align: center;
    margin-left: 20px;
    margin-bottom: 10px;
  }

  .main-v-title p {
    font-size: 20px;
    font-weight: bold;
    font-family: "Zen Old Mincho", serif;
    color: #fe605a;
    line-height: 1.8;
  }

  .main-v-title img {
    width: 100%;
    height: auto;
    margin-top: 10px;
  }

  .main-v-title h1 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
  }

  .main-v-title h1 span {
    font-size: 40px;
  }

  .main-v-title h1 span:first-child {
    color: #40d3c8;
  }

  .main-v-title h1 span:last-child {
    color: #ff851b;
  }

  .main-v-box {
    position: absolute;
    right: auto;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px;
  }

  .main-v-item {
    width: 149px;
    height: 149px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .main-v-item:nth-child(odd) {
    background-image: url(../image/top-back11.png), url(../image/top-back9.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .main-v-item:nth-child(even) {
    background-image:
      url(../image/top-back11.png), url(../image/top-back10.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .main-v-item span {
    text-align: center;
    font-size: 17px;
    color: #fff;
  }

  .main-v-en {
    position: absolute;
    right: auto;
    left: 0;
    bottom: -10px;
    z-index: 5;
  }

  .main-v-en span {
    font-size: 32px;
    color: #faffbf;
  }

  /* p1-a */
  .p1-a-box {
    background-image:
      url(../image/part3.png), url(../image/part4.png),
      url(../image/top-back6.png);
    background-repeat: no-repeat;
    background-size:
      100px auto,
      100px auto,
      cover;
    background-position:
      top left,
      bottom right,
      center;
    padding: 28px 0 43px;
  }

  .p1-a-text {
    width: 92%;
    text-align: left;
    margin: 0 auto;
  }

  .p1-a-text p {
    font-size: 12px;
  }

  .p1-a-item-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
  }

  .p1-a-item {
    text-align: center;
    background-color: #fff;
    padding: 5px 0;
    border: 1px solid #40d3c8;
  }

  .p1-a-item1 {
    width: 255px;
  }

  .p1-a-item2 {
    width: 255px;
  }

  .p1-a-item span {
    font-size: 12px;
    color: #40d3c8;
  }

  /* p1-b */
  .p1-b-box {
    background-image: url(../image/top-back7.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 10px;
    padding: 24px 0;
  }

  .p1-b-item {
    width: 165px;
    height: 166px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .p1-b-item:nth-child(odd) {
    background-image: url(../image/top-back11.png), url(../image/top-back9.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .p1-b-item:nth-child(even) {
    background-image:
      url(../image/top-back11.png), url(../image/top-back10.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .p1-b-item span {
    text-align: center;
    font-size: 12px;
    color: #fff;
    line-height: 2;
  }

  /* p1-c */
  .p1-c-box {
    background-image: url(../image/top-back8.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 43px 0;
  }

  .p1-c-text {
    width: 92%;
    text-align: left;
    margin: 0 auto;
  }

  .p1-c-text p {
    font-size: 12px;
  }

  /* p1-d */
  .p1-d-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-image: url(../image/sp-img5.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top;
    padding: 20px 0;
  }

  .p1-d-box2.p1-d-box {
    background-image: none;
  }

  .p1-d-box2.reverse {
    flex-direction: column;
  }

  .p1-d-item {
    width: 92%;
    margin: 0 auto;
  }

  .p1-d-span {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .p1-d-span .en2 {
    position: relative;
    z-index: 5;
    font-size: 12px;
    color: #fe605a;
    margin-right: -10px;
    margin-top: 5px;
  }

  .p1-d-span span {
    font-size: 48px;
    color: #40d3c8;
  }

  .p1-d-title {
    text-align: center;
    border-bottom: 2px dashed #40d3c8;
  }

  .p1-d-title h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 2;
  }

  .p1-d-text {
    text-align: left;
    margin-top: 10px;
  }

  .p1-d-text p {
    font-size: 12px;
  }

  .p1-d-img {
    position: relative;
    max-width: 400px;
    width: 92%;
    margin: 0 auto;
  }

  .p1-d-img::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(60, 122, 202, 0.5),
      rgba(56, 210, 107, 0.5)
    );
    z-index: 0;
  }

  .reverse .p1-d-img::before {
    left: auto;
    right: 12px;
  }

  .p1-d-img img {
    display: block;
    position: relative;
    z-index: 1;
  }

  .p1-d-box3 {
    position: relative;
    background-image: url(../image/top-img20.png), url(../image/top-back13.png);
    background-repeat: no-repeat;
    background-size:
      100px auto,
      cover;
    background-position:
      top right,
      top 24px center;
    padding: 24px 0 70px;
    margin-top: 10px;
  }

  .p1-d-box3 .p1-d-item {
    margin: 0 auto;
  }

  .p1-d-img2 {
    display: none;
  }

  .p1-d-box4 {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px auto;
  }

  .p1-d-box4 .p1-d-item {
    width: 100%;
  }

  .p1-d-box4 .p1-d-title {
    width: 90%;
    margin: 0 auto;
  }

  .p1-d-box4 .p1-d-text {
    text-align: center;
  }

  .p1-d-img3 {
    max-width: 400px;
    width: 90%;
    margin: 20px auto 0;
  }

  .p1-d-box5 {
    position: relative;
    background-image: url(../image/top-img21.png), url(../image/sp-img5.png);
    background-repeat: no-repeat;
    background-size:
      100px auto,
      100% auto;
    background-position:
      top left,
      top 24px left;
    padding-top: 24px;
  }

  .p1-d-box5 .p1-d-item {
    width: 80%;
    margin: 0 auto;
  }

  .p1-d-box5 .p1-d-text {
    text-align: center;
  }

  .p1-d-box5 .p1-d-img2 {
    display: none;
  }

  /* p1-e */
  .p1-e-container {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .p1-e-table {
    width: 92%;
    margin: 20px auto 0;
  }

  .p1-e-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .p1-e-table th,
  .p1-e-table td {
    padding: 10px;
    font-size: 12px;
    font-weight: 400;
    text-align: left;
    vertical-align: middle;
  }

  .p1-e-table th {
    width: 140px;
    background: #ffffb3;
    border-bottom: 1px solid #777;
  }

  .p1-e-table td {
    width: auto;
    background: #fff;
    border-bottom: 1px solid #777;
  }

  .p1-e-table tr:first-child th,
  .p1-e-table tr:first-child td {
    border-top: 1px solid #777;
  }

  /* テンプレートパーツ */
  .temple-box {
    background-image: url(../image/top-back14.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 22px 0;
  }

  .tebple-item {
    width: 92%;
    margin: 0 auto;
  }

  .tebple-text {
    text-align: center;
    background-color: #fff;
    padding: 24px 4% 18px;
  }

  .tebple-text p {
    font-size: 12px;
  }

  .tebple-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    background-image: url(../image/top-back20.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom;
    padding: 0 0 70px;
  }

  .tebple-botan {
    width: 173px;
    height: 49px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4px;
  }

  .tebple-botan1 {
    background-image: url(../image/top-back21.png);
  }

  .tebple-botan2 {
    background-image: url(../image/top-back22.png);
  }

  .tebple-botan a {
    width: 100%;
    height: 100%;
    font-size: 10px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    border: 1px solid #fff;
  }

  .tebple-botan a img {
    width: 11px;
    height: auto;
  }

  .tebple-botan .tebple-img {
    width: 5px;
    height: auto;
    position: absolute;
    right: 4px;
    bottom: 4px;
    z-index: 10;
  }

  .tebple-botan2 .tebple-img {
    right: 0;
    bottom: 0;
  }

  .tebple-botan2 a {
    position: relative;
  }

  .tebple-botan2 a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: url(../image/part7.png) no-repeat center / contain;
  }

  /* p1-f */
  .p1-f-container {
    background-image: url(../image/sp-img6.png), url(../image/sp-img6.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position:
      bottom 376px left,
      top 223px left;
    margin-top: 24px;
  }

  .p1-f-box {
    width: 92%;
    margin: 20px auto 0;
  }

  .p1-f-title h3 {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: #fe605a;
  }

  .p1-f-title h3::before,
  .p1-f-title h3::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #fe605a;
  }

  .p1-f-title h3::before {
    margin-right: 10px;
  }

  .p1-f-title h3::after {
    margin-left: 10px;
  }

  .p1-f-item-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    margin-top: 16px;
  }

  .p1-f-item {
    max-width: 400px;
    width: 70%;
    height: auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(163, 163, 163, 0.25);
    padding: 26px 13px;
  }

  .p1-f-span {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .p1-f-span .en2 {
    position: relative;
    z-index: 5;
    font-size: 14px;
    color: #fe605a;
    margin-right: -10px;
    margin-top: 5px;
  }

  .p1-f-span span {
    font-size: 37px;
    color: #40d3c8;
  }

  .p1-f-text {
    margin-top: 0;
  }

  .p1-f-text h4 {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #40d3c8;
    line-height: 1.6;
  }

  .p1-f-text p {
    font-size: 12px;
    line-height: 1.6;
    padding-top: 10px;
  }

  .p1-f-box2 {
    padding-bottom: 0;
  }

  /* p1-g */
  .p1-g-container {
    margin-top: 0;
  }

  .p1-g .h2-title {
    background-color: #fff;
  }

  .p1-g-box {
    width: 92%;
    margin: 30px auto 0;
  }

  .p1-g-item-box {
    max-width: 400px;
    width: 100%;
    position: relative;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    box-shadow: 0 0 12px rgba(143, 143, 143, 0.25);
    padding: 30px 10px 20px;
    margin: 42px auto 0;
  }

  .p1-g-item-box:first-child {
    margin-top: 0;
  }

  .p1-g-span {
    width: 44px;
    height: 44px;
    position: absolute;
    top: -22px;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    background-image:
      url(../image/top-back18.png), url(../image/top-back16.png);
    background-repeat: no-repeat;
    background-size:
      40px auto,
      100% 100%;
    background-position: center;
  }

  .p1-g-item-box:nth-child(odd) .p1-g-span {
    background-image:
      url(../image/top-back18.png), url(../image/top-back16.png);
  }

  .p1-g-item-box:nth-child(even) .p1-g-span {
    background-image:
      url(../image/top-back18.png), url(../image/top-back17.png);
  }

  .p1-g-span span {
    display: inline-block;
    font-size: 26px;
    color: #fff;
    margin-bottom: 0;
  }

  .p1-g-item {
    width: 100%;
  }

  .p1-g-item h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
  }

  .p1-g-item p {
    font-size: 12px;
    line-height: 1.4;
    padding-top: 10px;
    border-top: 1px solid #40d3c8;
  }

  .p1-g-item .p1-g-p {
    padding-top: 0;
    border-top: none;
  }

  .p1-g-img {
    max-width: 400px;
    width: 40%;
  }

  /* p1-h */
  .p1-h-container {
    padding-top: 16px;
  }

  .p1-h-box {
    width: 92%;
    margin: 20px auto 0;
  }

  .p1-h-item {
    width: 100%;
    margin-top: 40px;
  }

  .p1-h-item:first-child {
    margin-top: 0;
  }

  .qa-q {
    display: flex;
    align-items: stretch;
    cursor: pointer;
  }

  .qa-mark {
    width: 37px;
    height: 37px;
    flex-shrink: 0;
    background: url(../image/top-back19.png) no-repeat center / cover;
    color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: serif;
  }

  .qa-content {
    flex: 1;
    height: 37px;
    padding-left: 8px;
    border-bottom: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .qa-question {
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer;
  }

  .qa-btn {
    width: 37px;
    height: 37px;
    border: none;
    background: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
    flex-shrink: 0;
  }

  .qa-a {
    display: none;
    padding: 7px 3px 0 0;
  }

  .qa-answer {
    font-size: 12px;
    line-height: 1.4;
  }

  .qa-item.is-open .qa-a {
    display: block;
  }

  .qa-item.is-open .qa-btn {
    font-size: 20px;
  }

  /* p1-i */
  .p1-i-container {
    padding-top: 30px;
  }

  .p1-i-box {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 20px auto 0;
  }

  .p1-i-item {
    width: 100%;
  }

  .p1-i-img {
    max-width: 300px;
    width: 70%;
    margin: 0 auto;
  }

  .p1-i-text {
    margin-top: 10px;
  }

  .p1-i-text h3 {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
  }

  .p1-i-text p {
    font-size: 10px;
    line-height: 1.6;
    padding-top: 10px;
    border-top: 2px dashed #40d3c8;
    margin-top: 10px;
  }

  /* p1-j */
  .p1-j-container {
    padding-top: 0;
  }

  .p1-j-box {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 20px auto 0;
  }

  .p1-j-table {
    width: 100%;
  }

  .p1-j-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .p1-j-table th,
  .p1-j-table td {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    vertical-align: top;
    padding: 12px 5px;
    border-bottom: 1px solid #000;
  }

  .p1-j-table th {
    width: 70px;
    background: #faffb2;
    text-align: left;
  }

  .p1-j-table td {
    background: #fff;
  }

  .p1-j-img {
    max-width: 300px;
    width: 70%;
  }

  /* p1-k */
  .p1-k-container {
    padding-top: 20px;
  }

  .p1-k-box {
    width: 100%;
    height: 136px;
  }

  .p1-k-box iframe {
    width: 100%;
    height: 100%;
  }

  /* コピーライト */
  .copy-right {
    text-align: center;
    background-color: #fff;
    padding: 4px 0;
  }

  .copy-right p {
    font-size: 10px;
    line-height: 2;
  }

  /* トップに戻るボタン */
  .page-top {
    position: fixed;
    right: 12px;
    bottom: 80px;
    width: 56px;
    height: 56px;
    background-color: #40d3c8;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 99;
  }

  .page-top img {
    width: 20px;
    height: auto;
    display: block;
  }

  .page-top.is-show {
    opacity: 1;
    visibility: visible;
  }

  .page-top:hover {
    opacity: 0.8;
  }
  /* 共通 */
  .h2-title {
    background-image: url(../image/part5.png), url(../image/part5.png);
    background-repeat: no-repeat;
    background-size: 95px auto;
    background-position:
      top right,
      bottom left;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 6px;
  }

  .h2-title h2 {
    font-size: 25px;
    font-weight: 500;
    color: #40d3c8;
    letter-spacing: 0.07em;
  }

  .h2-title span {
    display: block;
    font-size: 12px;
    line-height: 2;
    padding-bottom: 0;
    border-bottom: 1px solid #40d3c8;
  }

  /* お知らせ内容 1100で可変 */
  .single-container {
    width: 100%;
    padding: 40px 0;
  }

  .single-box {
    width: 94%;
    margin: 0 auto;
  }

  .single-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .single-img {
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
  }

  .single-img img {
    width: 100%;
    height: auto;
    display: block;
  }

  .single-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
  }

  .single-content img {
    max-width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 375px) {
  /* 全体 */
  body {
    padding-bottom: 60px;
  }

  /* ヘッダー */
  .sp-nav .header-btn {
    display: none;
  }

  /* トップ */
  .slide1 {
    background-image: url(../image/sp-img1.png);
  }

  .slide2 {
    background-image: url(../image/sp-img2.png);
  }

  .slide3 {
    background-image: url(../image/sp-img1.png);
  }

  .p1-b-box {
    background-image: url(../image/sp-img4.png);
  }

  /* 固定フッター */
  .sp-fixed-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  }

  .sp-fixed-footer .header-btn {
    flex: 1;
    height: 60px;
    border-radius: 0;
    margin: 0;
  }
}
