@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, a, li, span {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 2px;
}

p {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 2px;
}

li {
  list-style: none;
}

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

a:hover {
  opacity: .8;
}


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

/* 消してる要素 */
.sp-br, .sp-img, .p1-m-logo2, .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);
}


/* ヘッダー */
.sp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: min(100px, 8.33vw);
  background-color: #fff;
  z-index: 9999;
}

.sp-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-left: min(13px, 1.08vw);
}

.header-box1 {
  display: flex;
  align-items: center;
  gap: min(25px, 2.08vw);
}

.sp-header-logo img {
  width: min(317px, 26.42vw);
  height: auto;
}

.header-img1 img {
  width: min(180px, 15vw);
  height: auto;
}

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

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

.header-tel a {
  display: flex;
  align-items: center;
  gap: min(10px, 0.83vw);
}

.header-tel img {
  width: min(26px, 2.17vw);
  height: auto;
}

.header-tel span {
  font-size: min(26px, 2.17vw);
  font-weight: bold;
}

.line {
  margin: 0 min(25px, 2.08vw);
}

.line img {
  width: min(37px, 3.08vw);
  height: auto;
}

.inst {
  margin-right: min(25px, 2.08vw);
}

.inst img {
  width: min(29px, 2.42vw);
  height: auto;
}

.web img {
  width: min(100px, 8.33vw);
  height: auto;
}

/* ハンバーガーボタン */
.sp-menu-btn {
  position: relative;
  width: min(100px, 8.33vw);
  height: min(100px, 8.33vw);
  background-color: #005A66;
  border: none;
  cursor: pointer;
  z-index: 1000;
  padding: 0;
}

.sp-menu-btn span {
  position: absolute;
  left: 50%;
  width: min(59px, 4.92vw);
  height: min(4px, 0.33vw);
  background-color: #fff;
  transition: 0.3s;
  transform: translateX(-50%);
}

.sp-menu-btn span:nth-child(1) { top: min(22px, 1.83vw); }
.sp-menu-btn span:nth-child(2) { top: min(38px, 3.17vw); }
.sp-menu-btn span:nth-child(3) { top: min(54px, 4.5vw); }

.sp-menu-btn::after {
  content: "MENU";
  position: absolute;
  bottom: min(10px, 0.83vw);
  left: 0;
  width: 100%;
  color: #fff;
  font-size: min(20px, 1.67vw);
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
}

.sp-menu-btn.is-active span:nth-child(1) {
  top: min(38px, 3.17vw);
  transform: translateX(-50%) rotate(45deg);
}

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

.sp-menu-btn.is-active span:nth-child(3) {
  top: min(38px, 3.17vw);
  transform: translateX(-50%) rotate(-45deg);
}

/* 全画面メニュー */
.sp-header-nav {
  position: fixed;
  top: min(100px, 8.33vw);
  right: max(-644px, -53.67vw);
  width: min(644px, 53.67vw);
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  transition: 0.4s;
  padding: min(80px, 6.67vw);
  z-index: 999;
}

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

.sp-nav-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp-nav-list li {
  width: 50%;
  box-sizing: border-box;
}

.sp-nav-list li a {
  display: flex;
  align-items: center;
  gap: min(13px, 1.08vw);
  padding: min(20px, 1.67vw) 0;
}

.sp-nav-list li a img {
  width: min(15px, 1.25vw);
  height: auto;
}

.sp-nav-list li a span {
  font-size: min(16px, 1.33vw);
}

.nav-link {
  margin-top: min(50px, 4.17vw);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(35px, 2.92vw) min(10px, 0.83vw);
  justify-items: center;
  align-items: center;
}

.nav-img1 {
  width: 100%;
}

.nav-img1 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.nav-img1 img {
  display: block;
}

.nav-img1:nth-child(1) img {
  width: min(172px, 14.33vw);
  height: auto;
}

.nav-img1:nth-child(2) img {
  width: min(198px, 16.5vw);
  height: auto;
}

.nav-img1:nth-child(3) img {
  width: min(215px, 17.92vw);
  height: auto;
}

.nav-img1:nth-child(4) img {
  width: min(215px, 17.92vw);
  height: auto;
}


/* トップ */
.main-v {
  width: 100%;
  height: 100vh;
  background-color: #D9D9D9;
  padding: min(100px, 8.33vw) min(45px, 3.75vw) min(70px, 5.83vw);
}

.main-v-container {
  width: 100%;
  height: 100%;
  background-image: url(../image/top-back1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  position: relative;
}

.main-v-title {
  position: absolute;
  left: min(40px, 3.33vw);
  bottom: min(40px, 3.33vw);
}

.main-v-title p {
  font-size: min(40px, 3.33vw);
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #fff;
}

.main-v-title h1 {
  font-size: min(50px, 4.17vw);
  line-height: 1.6;
  color: #fff;
}

.p1-a-container {
  padding-top: min(46px, 3.41vw);
  padding-bottom: min(42px, 3.11vw);
}

.p1-a-img {
  width: min(1278px, 94.67vw);
  height: auto;
  margin: 0 auto;
}

.p1-b {
  background-image: url(../image/top-back2.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p1-b-container {
  padding-top: min(36px, 2.67vw);
  padding-bottom: min(104px, 7.7vw);
}

.p1-b-box {
  width: min(1270px, 94.07vw);
  display: flex;
  justify-content: space-between;
  margin: min(100px, 7.41vw) auto 0;
}

.p1-b-item {
  width: min(527px, 39.04vw);
  margin-top: min(60px, 4.44vw);
}

.p1-b-item p {
  font-size: min(16px, 1.19vw);
  color: #fff;
  line-height: 2;
}

.p1-b-move {
  width: min(700px, 51.85vw);
}

.p1-c {
  background-image: url(../image/top-back3.png), linear-gradient(to left, #005A66, #51A7DD);
  background-repeat: no-repeat;
  background-size: auto 100%, cover;
  background-position: left, center;
}

.p1-c-container {
  padding: min(45px, 3.6vw) 0;
}

.p1-c-box {
  width: min(1140px, 91.2vw);
  display: flex;
  justify-content: flex-end;
  margin: min(20px, 1.6vw) auto 0;
}

.p1-c-item {
  width: min(500px, 40.0vw);
}

.p1-c-title h3 {
  font-size: min(64px, 5.12vw);
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
}

.p1-c-title h3 span {
  font-size: min(30px, 2.4vw);
}

.p1-c-text {
  margin-top: min(30px, 2.4vw);
}

.p1-c-text p {
  font-size: min(16px, 1.28vw);
  color: #fff;
  line-height: 2;
}

.p1-d {
  background-image: url(../image/top-back4.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p1-d-container {
  padding-top: min(100px, 7.41vw);
  padding-bottom: min(76px, 5.63vw);
}

.p1-d-box {
  width: min(1260px, 93.33vw);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(60px, 4.44vw);
  margin: min(70px, 5.19vw) auto 0;
}

.p1-d-item {
  width: min(378px, 28.0vw);
  background-color: #005A66;
}

.p1-d-title {
  display: flex;
  align-items: center;
  gap: min(25px, 1.85vw);
  padding: min(5px, 0.37vw) 0;
  border-bottom: 1px solid #FFE340;
  margin: 0 min(23px, 1.7vw);
}

.p1-d-item:first-child .p1-d-title {
  align-items: flex-end;
}

.p1-d-title span {
  font-size: min(60px, 4.44vw);
  font-weight: 400;
  color: #FFE340;
  line-height: 1;
}

.p1-d-title h3 {
  font-size: min(30px, 2.14vw);
  font-weight: 400;
  color: #FFE340;
  margin: 0;
  line-height: 1.3;
}

.p1-d-text {
  margin: min(20px, 1.48vw) min(9px, 0.67vw) min(30px, 2.22vw);
}

.p1-d-text p {
  font-size: min(16px, 1.19vw);
  color: #fff;
  line-height: 2;
}

.p1-e {
  background-image: url(../image/top-back5.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p1-e-container {
  padding-top: min(140px, 10.77vw);
  padding-bottom: min(150px, 11.54vw);
}

.p1-e-box {
  width: min(1200px, 92.31vw);
  margin: min(64px, 4.92vw) auto 0;
}

.p1-e-item-box {
  background-color: #fff;
  padding: min(15px, 1.15vw);
  margin-bottom: min(64px, 4.92vw);
}

.p1-e-item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border: 1px solid #1E7017;
}

.p1-e-text {
  flex: 1;
  padding: min(24px, 1.85vw) min(34px, 2.62vw);
}

.p1-e-title {
  display: flex;
  align-items: center;
  gap: min(44px, 3.38vw);
  padding-bottom: min(15px, 1.15vw);
  border-bottom: 1px solid #333;
}

.p1-e-namber span {
  font-size: min(16px, 1.23vw);
  color: #FFA82E;
}

.p1-e-namber p {
  font-size: min(50px, 3.85vw);
  font-family: "Noto Serif JP", serif;
  color: #FFA82E;
  line-height: 1;
}

.p1-e-h3 h3 {
  font-size: min(24px, 1.85vw);
  color: #333;
  line-height: 1.8;
}

.p1-e-p {
  margin-top: min(24px, 1.85vw);
}

.p1-e-p p {
  font-size: min(16px, 1.23vw);
  line-height: 2;
}

.p1-e-img {
  width: min(455px, 35vw);
  display: flex;
  flex-direction: column;
}

.p1-e-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p1-e-img.p1-e-img2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(68px, 5.23vw);
}

.p1-e-img2 img:first-child {
  width: min(398px, 30.62vw);
  height: auto;
  object-fit: cover;
}

.p1-e-img2 img:last-child {
  width: min(395px, 30.38vw);
  height: auto;
  object-fit: cover;
}

.p1-e-title2 {
  text-align: center;
}

.p1-e-title2 h3 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: min(20px, 1.54vw);
  font-size: min(30px, 2.31vw);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #fff;
}

.p1-e-title2 h3::before {
  content: "";
  display: block;
  width: min(31px, 2.38vw);
  height: min(31px, 2.38vw);
  background-image: url(../image/part5.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p1-e-title2 h3::after {
  content: "";
  display: block;
  width: min(31px, 2.38vw);
  height: min(31px, 2.38vw);
  background-image: url(../image/part6.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p1-e-img3 {
  width: min(616px, 47.38vw);
  margin: min(32px, 2.46vw) auto 0;
}

.p1-f {
  background-image: url(../image/top-back6.png);
  background-repeat: no-repeat;
  background-size: cover;  
}

.p1-f-container {
  padding-top: min(10px, 0.83vw);
  padding-bottom: min(110px, 9.17vw);
}

.p1-f-box {
  margin-top: min(50px, 4.17vw);
}

.p1-f-text {
  text-align: center;
  margin-top: min(35px, 2.92vw);
}

.p1-f-text p {
  display: inline-block;
  text-align: left;
  font-size: min(16px, 1.33vw);
  color: #fff;
  line-height: 2;
}

.p1-f-img {
  width: min(180px, 15vw);
  height: auto;
  margin: min(18px, 1.5vw) auto min(30px, 2.5vw);
}

.p1-f-table1, .p1-f-table2, .p1-f-table3 {
  width: min(987px, 82.25vw);
  margin: min(40px, 3.33vw) auto 0;
  overflow-x: auto;
}

.p1-f-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  table-layout: fixed;
}

.p1-f-table th, 
.p1-f-table td {
  border: 1px solid #51A7DD;
  padding: min(15px, 1.25vw) min(5px, 0.42vw);
  text-align: center;
  font-size: min(16px, 1.33vw);
  line-height: 1.6;
  color: #333;
  vertical-align: middle;
}

.p1-f-table thead th:first-child,
.p1-f-table tbody th {
  background-color: #E8F6FF;
  font-weight: normal;
}

.p1-f-table thead th {
  background-color: #fff;
}

.p1-f-table .txt-red {
  color: #D2232A;
  font-weight: bold;
}

.p1-f-table span {
  font-size: min(16px, 1.33vw);
  display: block;
}

.p1-f-table .txt-left {
  text-align: center;
}

.p1-f-table .txt-left .inner {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

.p1-f-table1 .p1-f-table thead th:first-child { width: min(157px, 13.08vw); }
.p1-f-table1 .p1-f-table tbody th { width: min(140px, 11.67vw); }
.p1-f-table1 .p1-f-table .txt-red { font-size: min(20px, 1.67vw); }
.p1-f-table1 .p1-f-table td[colspan="4"] { font-weight: 500; }

.p1-f-table2 .p1-f-table thead th:first-child { width: min(330px, 27.5vw); }
.p1-f-table2 .p1-f-table .txt-red { font-size: min(24px, 2vw); }
.p1-f-table2 p { 
  font-size: min(16px, 1.33vw); 
  color: #fff; 
  line-height: 2; 
  margin-top: min(10px, 0.83vw); 
}

.p1-f-table3 .p1-f-table th, 
.p1-f-table3 .p1-f-table td { padding: min(10px, 0.83vw) min(5px, 0.42vw); }
.p1-f-table3 .p1-f-table thead th:first-child { width: min(250px, 20.83vw); }
.p1-f-table3 .p1-f-table .txt-red { font-size: min(24px, 2vw); }

.p1-g {
  background-image: linear-gradient(to right, #54AD4D, #1E7017);
}

.p1-g-container {
  padding-top: min(60px, 4.44vw);
  padding-bottom: min(80px, 5.93vw);
}

.p1-g-text {
  text-align: center;
  margin: min(50px, 3.7vw) 0 min(40px, 2.96vw);
}

.p1-g-text p {
  font-size: min(16px, 1.19vw);
  color: #fff;
}

.p1-g-text p span {
  font-size: min(20px, 1.48vw);
  color: #FFE340;
}

.p1-g-box {
  width: min(1270px, 94.07vw);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.p1-g-item {
  width: min(195px, 14.44vw);
  background-color: #fff;
  padding: min(7px, 0.52vw) min(11px, 0.81vw);
  border: min(4px, 0.3vw) solid #1E7017;
  border-radius: min(20px, 1.48vw);
}

.p1-g-number span {
  font-size: min(24px, 1.78vw);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #C81619;
}

.p1-g-p p {
  font-size: min(16px, 1.19vw);
  line-height: 1.8;
  letter-spacing: normal;
}

.p1-h-container {
  padding: min(40px, 3.33vw) 0;
}

.p1-h-box {
  width: min(1070px, 89.17vw);
  border: min(2px, 0.17vw) solid #005A66;
  margin: 0 auto;
}

.p1-h-title {
  text-align: center;
  margin-top: min(27px, 2.25vw);
}

.p1-h-title h2 {
  font-size: min(24px, 2vw);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #005A66;
}

.p1-h-text {
  height: min(210px, 17.5vw);
  overflow-y: scroll;
  overflow-x: hidden;
  margin: min(30px, 2.5vw) min(20px, 1.67vw) min(27px, 2.25vw) min(60px, 5vw);
}

.p1-h-text::-webkit-scrollbar {
  width: min(6px, 0.5vw);
  display: block;
}

.p1-h-text::-webkit-scrollbar-thumb {
  background-color: #51A7DD;
  border-radius: 0;
}

.p1-h-text::-webkit-scrollbar-track {
  background: transparent;
}

.p1-h-text ul li {
  font-size: min(16px, 1.23vw);
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  padding: min(5px, 0.38vw) 0;
}

.p1-h-text ul li span {
  font-size: min(16px, 1.23vw);
  font-family: "Noto Sans JP", sans-serif;
  color: #51A7DD;
}

.p1-i {
 background-image: linear-gradient(to right, #51A7DD, #005A66); 
}

.p1-i-container {
  padding-top: min(40px, 2.96vw);
  padding-bottom: min(120px, 8.89vw);
}

.p1-i-box {
  width: min(1270px, 94.07vw);
  margin: min(70px, 5.19vw) auto 0;
}

.p1-i-q {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: min(40px, 2.96vw);
  padding-left: min(94px, 6.96vw);
  cursor: pointer;
  background: #fff;
}

.q-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(70px, 5.19vw);
  height: min(70px, 5.19vw);
  background-color: #C31B1E;
  color: #fff;
  font-size: min(30px, 2.22vw);
}

.p1-i-q h3 {
  height: min(56px, 4.15vw);
  display: flex;
  align-items: center;
  font-size: min(24px, 1.78vw);
  font-weight: 500;
  color: #333;
  margin: 0;
  padding: 0;
}

.toggle-icon {
  position: absolute;
  right: min(20px, 1.48vw);
  width: 16px;
  height: 16px;
}

.toggle-icon::before,
.toggle-icon::after {
  content: "";
  position: absolute;
  background-color: #C31B1E;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.toggle-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.toggle-icon::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p1-i-item.is-open .toggle-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.p1-i-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  overflow: hidden;
}

.p1-i-item.is-open .p1-i-a {
  grid-template-rows: 1fr;
  opacity: 1;
}

.p1-i-a-inner {
  display: flex;
  min-height: 0;
  padding: 0 min(20px, 1.48vw) 0 min(94px, 6.96vw);
  transition: padding 0.4s ease;
}

.p1-i-item.is-open .p1-i-a-inner {
  padding-bottom: min(60px, 4.44vw);
}

.p1-i-a-inner span {
  font-size: min(16px, 1.19vw);
  color: #fff;
  padding-right: min(15px, 1.11vw);
}

.p1-i-a-inner p {
  font-size: min(16px, 1.19vw);
  color: #fff;
  margin: 0;
}

.p1-j {
  background-image: linear-gradient(to right, #54AD4D, #1E7017);
}

.p1-j-container {
  position: relative;
  padding-top: min(80px, 5.93vw);
  padding-bottom: min(147px, 10.89vw);
}

.p1-j .h2-title {
  position: relative;
  z-index: 2;
}

.p1-j-box {
  width: min(1270px, 94.07vw);
  position: relative;
  z-index: 2;
  margin: min(54px, 4vw) auto 0;
}

.p1-j-item-box {
  display: flex;
}

.p1-j-item-box:nth-of-type(2) {
  margin-top: min(90px, 6.67vw);
}

.p1-j-img {
  width: min(533px, 39.48vw);
  height: auto;
}

.p1-j-item {
  flex: 1;
  margin-top: min(44px, 3.26vw);
}

.p1-j-title {
  padding-left: min(105px, 7.78vw);
  padding-bottom: min(32px, 2.37vw);
  border-bottom: 1px solid #fff;
}

.p1-j-title h3 {
  font-size: min(40px, 2.96vw);
  font-weight: 400;
  color: #fff;
}

.p1-j-title span {
  font-size: min(24px, 1.78vw);
  color: #fff;
}

.p1-j-p {
  padding-top: min(16px, 1.19vw);
  padding-left: min(105px, 7.78vw);
}

.p1-j-p p {
  font-size: min(16px, 1.19vw);
  color: #fff;
  line-height: 2;
  letter-spacing: normal;
}

.p1-j-item-box:last-child .p1-j-p p:last-child {
  padding-top: min(40px, 2.96vw);
}

.p1-j-text {
  text-align: right;
  position: absolute;
  top: max(-28px, -2.07vw);
  right: 0;
  z-index: 1;
}

.p1-j-text p {
  font-size: min(200px, 14.81vw);
  font-weight: 700;
  color: #399932;
  line-height: 1;
  letter-spacing: normal;
  opacity: .5;
}

.p1-k-container {
  padding-top: min(35px, 2.59vw);
  padding-bottom: min(80px, 5.93vw);
}

.p1-k-box {
  width: min(1280px, 94.81vw);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 auto;
}

.p1-k-img {
  width: min(616px, 45.63vw);
  height: auto;
}

.p1-l {
 background-image: linear-gradient(to right, #51A7DD, #005A66); 
}

.p1-l-container {
  padding-top: min(57px, 4.38vw);
  padding-bottom: min(106px, 8.15vw);
}

.p1-l-box {
  width: min(1200px, 92.31vw);
  display: flex;
  justify-content: space-between;
  margin: min(35px, 2.69vw) auto 0;
}

.p1-l-item {
  width: min(460px, 35.38vw);
}

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

.p1-l-table table {
  width: 100%;
  border-collapse: collapse;
}

.p1-l-table table tr th, 
.p1-l-table table tr td {
  text-align: left;
  font-size: min(16px, 1.23vw);
  font-weight: 400;
  color: #fff;
  padding: min(10px, 0.77vw) 0;
  border-bottom: 1px solid #fff;
}

.p1-l-table table tr td {
  padding-left: min(80px, 6.15vw);
}

.p1-l-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: min(70px, 5.38vw);
}

.p1-l-img {
  width: min(180px, 13.85vw);
  height: auto;
}

.p1-l-tel a {
  display: flex;
  align-items: center;
  gap: min(7px, 0.54vw);
  padding: min(6px, 0.46vw) min(15px, 1.15vw);
  border: 1px solid #fff;
  border-radius: 30px;
}

.p1-l-tel a img {
  width: min(26px, 2vw);
  height: auto;
}

.p1-l-tel a span {
  font-size: min(26px, 2vw);
  color: #fff;
}

.p1-l-map iframe {
  width: min(640px, 49.23vw);
  height: min(422px, 32.46vw);
}

.p1-l-box2 {
  width: min(867px, 66.69vw);
  margin: min(90px, 6.92vw) auto 0;
}

.p1-l-img2 {
  margin-top: min(46px, 3.54vw);
}

.p1-l-img2 img {
  width: 100%;
  height: auto;
}

.p1-m {
  background-image: url(../image/top-back7.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p1-m-container {
  padding-top: min(50px, 3.7vw);
  padding-bottom: min(90px, 6.67vw);
}

.p1-m-box {
  width: min(1250px, 92.59vw);
  display: flex;
  justify-content: space-between;
  margin: min(70px, 5.19vw) auto 0;
}

.p1-m-item {
  width: min(560px, 41.48vw);
}

.p1-m-text p {
  font-size: min(16px, 1.19vw);
  color: #fff;
  line-height: 2;
}

.p1-m-tel {
  display: flex;
  justify-content: center;
  margin: min(35px, 2.59vw) 0;
}

.p1-m-tel a {
  display: flex;
  align-items: center;
  gap: min(7px, 0.52vw);
  padding: min(6px, 0.44vw) min(15px, 1.11vw);
  border: 1px solid #fff;
  border-radius: min(30px, 2.22vw);
}

.p1-m-tel a img {
  width: min(26px, 1.93vw);
  height: auto;
}

.p1-m-tel a span {
  font-size: min(26px, 1.93vw);
  color: #fff;
}

.p1-m-link-box {
  width: min(460px, 34.07vw);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: min(38px, 2.81vw) min(20px, 1.48vw);
  margin: 0 auto;
}

.p1-m-img1 {
  height: auto;
}

.p1-m-img1 a img {
  width: 100%;
  height: auto;
  display: block;
}

.p1-m-img1:nth-of-type(1) {
  width: min(215px, 15.93vw);
}

.p1-m-img1:nth-of-type(2) {
  width: min(215px, 15.93vw);
}

.p1-m-img1:nth-of-type(3) {
  width: min(172px, 12.74vw);
  margin-left: min(22px, 1.63vw);
}

.p1-m-img1:nth-of-type(4) {
  width: min(198px, 14.67vw);
}

.p1-m-logo {
  width: min(422px, 31.26vw);
  height: auto;
  margin: min(42px, 3.11vw) auto;
}

div.p1-m-contact {
  width: min(562px, 41.63vw);
}

.p1-m-contact table.p1-m-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
}

.p1-m-contact table.p1-m-table th {
  width: min(164px, 12.15vw);
  text-align: left;
  vertical-align: top;
  padding: min(15px, 1.11vw) 0;
  color: #fff;
  font-size: min(16px, 1.19vw);
  font-weight: 400;
  border-bottom: 1px solid #fff;
}

.p1-m-contact table.p1-m-table td {
  padding: min(15px, 1.11vw) 0 min(20px, 1.48vw);
  border-bottom: 1px solid #fff;
}

.p1-m-contact .wpcf7-form-control-wrap input.wpcf7-text,
.p1-m-contact .wpcf7-form-control-wrap input.wpcf7-tel,
.p1-m-contact .wpcf7-form-control-wrap textarea.wpcf7-textarea {
  width: 100%;
  background-color: #e5e5e5;
  border: 1px solid #ccc;
  border-radius: min(10px, 0.74vw);
  padding: min(15px, 1.11vw) min(20px, 1.48vw);
  font-size: min(16px, 1.19vw);
  color: #333;
  box-sizing: border-box;
}

.p1-m-contact .wpcf7-form-control-wrap textarea.wpcf7-textarea {
  height: min(150px, 11.11vw);
  display: block;
}

.p1-m-contact div.form-submit {
  text-align: center;
  margin-top: min(30px, 2.22vw);
}

.p1-m-contact div.form-submit button.submit-btn-bg {
  display: inline-block;
  width: min(215px, 15.93vw);
  height: min(50px, 3.7vw);
  background-image: url(../image/part13.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  appearance: none;
}

.p1-m-contact div.form-submit button.submit-btn-bg:hover {
  opacity: 0.8;
}

.p1-m-contact span.wpcf7-form-control-wrap {
  display: block;
}


/* フッター */
.footer-nav {
  width: min(937px, 85.18vw);
  padding-top: min(60px, 5.45vw);
  padding-bottom: min(40px, 3.64vw);
  margin: 0 auto;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(25px, 2.27vw) min(45px, 4.09vw);
}

.footer-nav li a {
  display: flex;
  align-items: center;
  gap: min(8px, 0.73vw);
}

.footer-nav li a img {
  width: min(10px, 0.91vw);
  height: auto;
}

.footer-nav li a span {
  font-size: min(16px, 1.45vw);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: normal;
}

.copy-right {
  text-align: center;
  background-image: linear-gradient(to right, #005A66, #00B4CC); 
  padding: min(17px, 1.55vw) 0;
}

.copy-right p {
  font-size: min(16px, 1.45vw);
  color: #fff;
  letter-spacing: normal;
}

#footer-totop {
  position: fixed;
  right: min(30px, 2.22vw);
  bottom: min(107px, 7.93vw);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

#footer-totop.is-show {
  opacity: 1;
  visibility: visible;
}

#footer-totop a {
  display: block;
  width: min(60px, 4.44vw);
  height: min(60px, 4.44vw);
  text-decoration: none;
}

#footer-totop img {
  width: 100%;
  height: auto;
  display: block;
}

#footer-totop a:hover {
  opacity: 0.8;
}








/* 共通 */
.h2-title {
  text-align: center;
  position: relative;
  padding-top: min(63px, 5.25vw); 
}

.h2-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(5px, 0.42vw);
  height: min(53px, 4.42vw);
  background-color: #FFE340;
}

.h2-title h2 {
  font-size: min(40px, 3.33vw);
  color: #FFE340;
  margin: 0;
}

.h2-title p {
  font-size: min(24px, 1.78vw);
  color: #fff;
}






@media screen and (max-width: 767px) {
  /* 全体 */
  .sp-br, .sp-img {
    display: block;
  }

  .pc-img {
    display: none;
  }

  p {
    letter-spacing: normal;
  }


  /* ヘッダー */
  .sp-header {
    height: 50px;
  }

  .sp-header-inner {
    padding-left: 5px;
    padding-right: 5px;
  }

  .header-box1 {
    gap: 0;
  }

  .sp-header-logo img {
    width: 143px;
  }

  .header-img1 {
    display: none;
  }

  .header-tel {
    display: none;
  }

  .line {
    margin: 0 10px 0 0;
  }

  .line img {
    width: 22px;
  }

  .inst {
    margin-right: 17px;
  }

  .inst img {
    width: 17px;
  }

  .web {
    display: none;
  }

  /* ハンバーガーボタン */
  .sp-menu-btn {
    width: 40px;
    height: 40px;
  }

  .sp-menu-btn span {
    width: 22px;
    height: 1.5px;
  }

  .sp-menu-btn span:nth-child(1) { 
    top: 9px; 
  }
  .sp-menu-btn span:nth-child(2) { 
    top: 15px; 
  }
  .sp-menu-btn span:nth-child(3) { 
    top: 21px; 
  }

  .sp-menu-btn::after {
    bottom: 7px;
    font-size: 8px;
  }

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

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

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

  /* 全画面メニュー */
  .sp-header-nav {
    top: 50px;
    right: -100%;
    width: 100%;
    padding: 40px;
  }

  .sp-nav-list li {
    width: 50%;
  }

  .sp-nav-list li a {
    gap: 10px;
    padding: 5px 0;
  }

  .sp-nav-list li a img {
    width: 10px;
    height: auto;
  }

  .sp-nav-list li a span {
    font-size: 16px;
  }

  .nav-link {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 5px;
    justify-items: center;
    align-items: center;
  }

  .nav-img1:nth-child(1) img {
    width: 120px;
    height: auto;
  }

  .nav-img1:nth-child(2) img {
    width: 140px;
    height: auto;
  }

  .nav-img1:nth-child(3) img {
    width: 150px;
    height: auto;
  }

  .nav-img1:nth-child(4) img {
    width: 150px;
    height: auto;
  }


  /* トップ */
  .main-v {
    padding: 50px 19px 56px;
  }

  .main-v-title {
    left: 13px;
    bottom: auto;
    top: 44px;
  }

  .main-v-title p {
    font-size: 30px;
  }

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

  .p1-a-container {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .p1-a-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .p1-b-container {
    padding-top: 38px;
    padding-bottom: 75px;
  }

  .p1-b-box {
    width: 92%;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin: 33px auto 0;
  }

  .p1-b-item {
    width: 100%;
    margin-top: 0;
  }

  .p1-b-item p {
    font-size: 16px;
  }

  .p1-b-move {
    max-width: 400px;
    width: 100%;
  }

  .p1-c-container {
    padding: 40px 0 76px;
  }

  .p1-c-box {
    width: 92%;
    flex-direction: column;
    align-items: center;
    margin: 40px auto 0;
  }

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

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

  .p1-c-title h3 {
    font-size: 64px;
  }

  .p1-c-title h3 span {
    font-size: 30px;
  }

  .p1-c-text {
    margin-top: 22px;
  }

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

  .p1-d-container {
    padding-top: 45px;
    padding-bottom: 0;
  }

  .p1-d-box {
    width: 92%;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    margin: 46px auto 0;
  }

  .p1-d-item {
    max-width: 400px;
    width: 100%;
    background-color: #005A66;
  }

  .p1-d-title {
    gap: 20px;
    padding: 10px 0;
    margin: 0 14px;
  }

  .p1-d-item:first-child .p1-d-title {
    align-items: center;
  }

  .p1-d-title span {
    font-size: 40px;
  }

  .p1-d-title h3 {
    font-size: 24px;
  }

  .p1-d-text {
    margin: 12px 14px 23px;
  }

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

  .p1-e {
    background-image: url(../image/sp-top-back5.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
  }

  .p1-e-container {
    width: 92%;
    padding-top: 150px;
    padding-bottom: 113px;
    margin: 0 auto;
  }

  .p1-e-box {
    max-width: 400px;
    width: 100%;
    margin: 40px auto 0;
  }

  .p1-e-item-box {
    padding: 10px;
    margin-bottom: 32px;
  }

  .p1-e-item {
    flex-direction: column;
    align-items: center;
  }

  .p1-e-text {
    flex: 1;
    padding: 10px 8px 26px;
  }

  .p1-e-title {
    flex-direction: column;
    gap: 13px;
    padding-bottom: 15px;
  }

  .p1-e-namber span {
    font-size: 16px;
  }

  .p1-e-namber p {
    font-size: 50px;
  }

  .p1-e-h3 {
    margin-right: auto;
  }

  .p1-e-h3 h3 {
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: normal;
  }

  .p1-e-p {
    margin-top: 23px;
  }

  .p1-e-p p {
    font-size: 16px;
  }

  .p1-e-img {
    width: 100%;
  }

  .p1-e-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .p1-e-img.p1-e-img2 {
    gap: 50px;
    padding: 47px 0 40px;
  }

  .p1-e-img2 img:first-child {
    max-width: 298px;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .p1-e-img2 img:last-child {
    max-width: 299px;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .p1-e-title2 h3 {
    gap: 25px;
    font-size: 24px;
  }

  .p1-e-title2 h3::before {
    width: 31px;
    height: 31px;
  }

  .p1-e-title2 h3::after {
    width: 31px;
    height: 31px;
  }

  .p1-e-img3 {
    max-width: 400px;
    width: 100%;
    margin: 18px auto 0;
  }

  .p1-f-container {
    padding-top: 50px;
    padding-bottom: 110px;
  }

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

  .p1-f-box {
    margin-top: 70px;
  }

  .p1-f-text {
    width: 92%;
    text-align: center;
    margin: 46px auto 0;
  }

  .p1-f-text p {
    font-size: 16px;
  }

  .p1-f-img {
    width: 180px;
    height: auto;
    margin: 23px auto 30px;
  }

  .p1-f-table1, .p1-f-table2, .p1-f-table3 {
    width: calc(100% - 4%);
    margin: 30px 0 0 4%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .p1-f-table1 table, 
  .p1-f-table2 table, 
  .p1-f-table3 table {
    width: 987px;
    table-layout: fixed;
    border-collapse: collapse;
  }

  .p1-f-table th, 
  .p1-f-table td {
    border: 1px solid #51A7DD;
    padding: 15px 5px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    vertical-align: middle;
    box-sizing: border-box;
  }

  .p1-f-table thead th:first-child,
  .p1-f-table tbody th {
    background-color: #E8F6FF;
    font-weight: normal;
  }

  .p1-f-table thead th {
    background-color: #fff;
  }

  .p1-f-table .txt-red {
    color: #D2232A;
    font-weight: bold;
  }

  .p1-f-table span {
    font-size: 16px;
    display: block;
  }

  .p1-f-table .txt-left {
    text-align: center;
  }

  .p1-f-table .txt-left .inner {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
  }

  .p1-f-table1 .p1-f-table thead th:first-child { width: 157px; }
  .p1-f-table1 .p1-f-table tbody th { width: 140px; }
  .p1-f-table1 .p1-f-table .txt-red { font-size: 20px; }
  .p1-f-table1 .p1-f-table td[colspan="4"] { font-weight: 500; }

  .p1-f-table2 .p1-f-table thead th:first-child { width: 330px; }
  .p1-f-table2 .p1-f-table .txt-red { font-size: 24px; }
  .p1-f-table2 p { 
    white-space: nowrap;
    font-size: 16px; 
    color: #fff; 
    line-height: 2; 
    margin-top: 10px; 
  }

  .p1-f-table3 .p1-f-table th, 
  .p1-f-table3 .p1-f-table td { padding: 10px 5px; }
  .p1-f-table3 .p1-f-table thead th:first-child { width: 250px; }
  .p1-f-table3 .p1-f-table .txt-red { font-size: 24px; }

  .p1-g-container {
    width: 92%;
    padding-top: 12px;
    padding-bottom: 93px;
    margin: 0 auto;
  }

  .p1-g-text {
    text-align: left;
    margin: 22px 0 28px;
  }

  .p1-g-text p {
    font-size: 16px;
  }

  .p1-g-text p span {
    font-size: 20px;
  }

  .p1-g-box {
    width: 339px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 0;
  }

  .p1-g-item {
    width: 162px;
    padding: 0 5px 5px;
    border: 4px solid #1E7017;
    border-radius: 20px;
  }

  .p1-g-number span {
    font-size: 24px;
  }

  .p1-g-p p {
    font-size: 16px;
    letter-spacing: normal;
  }

  .p1-h-container {
    padding: 56px 0 38px;
  }

  .p1-h-box {
    width: 92%;
    border: 2px solid #005A66;
    margin: 0 auto;
  }

  .p1-h-title {
    margin-top: 14px;
  }

  .p1-h-title h2 {
    font-size: 24px;
  }

  .p1-h-text {
    height: 237px;
    margin: 12px 18px 33px 27px;
  }

  .p1-h-text::-webkit-scrollbar {
    width: 6px;
  }

  .p1-h-text ul li {
    font-size: 16px;
    padding: 5px 0;
  }

  .p1-h-text ul li span {
    font-size: 16px;
  }

  .p1-i-container {
    padding-top: 40px;
    padding-bottom: 82px;
  }

  .p1-i-box {
    width: 92%;
    margin: 70px auto 0;
  }

  .p1-i-q {
    margin-bottom: 37px;
    padding-left: 63px;
  }

  .q-icon {
    width: 50px;
    height: 65px;
    font-size: 24px;
  }

  .p1-i-q h3 {
    height: 56px;
    font-size: 18px;
  }

  .toggle-icon {
    position: absolute;
    right: 15px;
    width: 16px;
    height: 16px;
  }

  .toggle-icon::before,
  .toggle-icon::after {
    content: "";
    position: absolute;
    background-color: #C31B1E;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .toggle-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .toggle-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .p1-i-item.is-open .toggle-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
  }

  .p1-i-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    overflow: hidden;
  }

  .p1-i-item.is-open .p1-i-a {
    grid-template-rows: 1fr;
    opacity: 1;
  }

  .p1-i-a-inner {
    display: flex;
    min-height: 0;
    padding: 0 0 0 11px;
    transition: padding 0.4s ease;
  }

  .p1-i-item.is-open .p1-i-a-inner {
    padding-bottom: 37px;
  }

  .p1-i-a-inner span {
    font-size: 20px;
    padding-right: 20px;
  }

  .p1-i-a-inner p {
    font-size: 16px;
  }

  .p1-j-container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .p1-j-box {
    width: 92%;
    margin: 27px auto 0;
  }

  .p1-j-item-box {
    flex-direction: column;
  }

  .p1-j-item-box:nth-of-type(2) {
    margin-top: 85px;
  }

  .p1-j-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .p1-j-item {
    max-width: 400px;
    width: 100%;
    padding-top: 52px;
    position: relative;
    margin: 0 auto;
  }

  .p1-j-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15px;
    width: 1px;
    height: 35px;
    background-color: #fff;
  }

  .p1-j-title {
    padding-left: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .p1-j-title h3 {
    font-size: 32px;
  }

  .p1-j-title span {
    font-size: 20px;
  }

  .p1-j-p {
    padding-top: 16px;
    padding-left: 0;
  }

  .p1-j-p p {
    font-size: 16px;
  }

  .p1-j-item-box:last-child .p1-j-p p:last-child {
    padding-top: 40px;
  }

  .p1-j-text {
    top: 0;
  }

  .p1-j-text p {
    font-size: 100px;
  }

  .p1-k-container {
    padding-top: 43px;
    padding-bottom: 60px;
  }

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

  .p1-k-img {
    max-width: 400px;
    width: 100%;
    height: auto;
  }

  .p1-l-container {
    padding-top: 57px;
    padding-bottom: 63px;
  }

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

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

  .p1-l-table table tr th, 
  .p1-l-table table tr td {
    display: block;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #fff;
  }

  .p1-l-table table tr th {
    border-bottom: none;
    padding-bottom: 0;
  }

  .p1-l-table table tr td {
    padding-left: 0;
    padding-top: 0;
  }

  .p1-l-link {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
    margin-top: 34px;
  }

  .p1-l-img {
    width: 180px;
    height: auto;
  }

  .p1-l-tel a {
    gap: 7px;
    padding: 6px 15px;
    border: 1px solid #fff;
    border-radius: 30px;
  }

  .p1-l-tel a img {
    width: 26px;
    height: auto;
  }

  .p1-l-tel a span {
    font-size: 26px;
    color: #fff;
  }

  .p1-l-map {
    width: 100%;
  }

  .p1-l-map iframe {
    width: 100%;
    height: 313px;
  }

  .p1-l-box2 {
    width: 98%;
    margin: 80px auto 0;
  }

  .p1-l-box2 .h2-title h2 {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .p1-l-img2 {
    max-width: 400px;
    width: 92%;
    margin: 37px auto 0;
  }

  .p1-l-img2 img {
    width: 100%;
    height: auto;
  }

  .p1-m-container {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .p1-m-box {
    width: 92%;
    flex-direction: column;
    align-items: center;
    margin: 38px auto 0;
  }

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

  .p1-m-text p {
    font-size: 16px;
  }

  .p1-m-tel {
    margin: 50px 0 30px;
  }

  .p1-m-tel a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 15px;
    border: 1px solid #fff;
    border-radius: 30px;
  }

  .p1-m-tel a img {
    width: 26px;
    height: auto;
  }

  .p1-m-tel a span {
    font-size: 26px;
    color: #fff;
  }

  .p1-m-link-box {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
  }

  .p1-m-img1:nth-of-type(1) {
    width: 215px;
  }

  .p1-m-img1:nth-of-type(2) {
    width: 215px;
  }

  .p1-m-img1:nth-of-type(3) {
    width: 172px;
    margin-left: 0;
  }

  .p1-m-img1:nth-of-type(4) {
    width: 198px;
  }

  .p1-m-logo {
    display: none;
  }

  div.p1-m-contact {
    width: 100%;
  }

  .p1-m-contact table.p1-m-table th {
    width: 100%;
    display: block;
    text-align: left;
    padding: 15px 0 0;
    font-size: 16px;
    font-weight: 400;
    border-bottom: none;
  }

  .p1-m-contact table.p1-m-table td {
    display: block;
    padding: 5px 0 0;
    border-bottom: none;
  }

  .p1-m-contact .wpcf7-form-control-wrap input.wpcf7-text,
  .p1-m-contact .wpcf7-form-control-wrap input.wpcf7-tel,
  .p1-m-contact .wpcf7-form-control-wrap textarea.wpcf7-textarea {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    padding: 5px 10px;
    font-size: 16px;
  }

  .p1-m-contact .wpcf7-form-control-wrap textarea.wpcf7-textarea {
    height: 157px;
    display: block;
  }

  .p1-m-contact div.form-submit {
    margin-top: 30px;
  }

  .p1-m-contact div.form-submit button.submit-btn-bg {
    width: 215px;
    height: 50px;
    background-image: url(../image/part13.png);
  }

  .p1-m-logo2 {
    width: 311px;
    height: auto;
    display: block;
    margin: 60px auto;
  }



  /* 共通 */
  .h2-title {
    padding-top: 53px; 
  }

  .h2-title::before {
    width: 5px;
    height: 53px;
  }

  .h2-title h2 {
    font-size: 32px;
  }

  .h2-title p {
    font-size: 24px;
  }


  /* フッター */
  .footer-nav {
    width: 92%;
    padding-top: 30px;
    padding-bottom: 40px;
    margin: 0 auto;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .footer-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-nav li a img {
    width: 10px;
    height: auto;
  }

  .footer-nav li a span {
    font-size: 16px;
  }

  .copy-right {
    padding: 17px 0;
  }

  .copy-right p {
    font-size: 16px;
  }

  #footer-totop {
    display: none;
  }


  /* 固定フッター */
  .sp-fixed-footer {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
  }

  .sp-fixed-footer ul {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 60px;
  }

  .sp-fixed-footer li:nth-child(1) {
    flex: 0 0 40%;
    background-color: #004d56;
  }

  .sp-fixed-footer li:nth-child(2) {
    flex: 0 0 25%;
    background-color: #c8151d;
  }

  .sp-fixed-footer li:nth-child(3) {
    flex: 1;
    background-color: #00c300;
  }

  .sp-fixed-footer li:nth-child(4) {
    flex: 1;
  }

  .sp-fixed-footer li {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sp-fixed-footer a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    width: 100%;
    height: 100%;
  }

  .sp-fixed-footer li:nth-child(1) img,
  .sp-fixed-footer li:nth-child(2) img {
    height: 24px;
  }

  .sp-fixed-footer li:nth-child(3) img {
    height: 60px; 
  }

  .sp-fixed-footer li:nth-child(4) img {
    height: 60px;
  }

  .sp-fixed-footer span {
    font-size: 20px;
    margin-top: 2px;
    font-weight: bold;
    letter-spacing: normal;
  }

  body {
    padding-bottom: 60px;
  }





} 


@media screen and (max-width: 600px) {
  /* ヘッダー */
  .sp-nav-list {
    flex-direction: column;
  }

  .sp-nav-list li {
    width: 100%;
  }


  /* トップ */
  .main-v-container {
    background-image: url(../image/sp-top-back1.png);
  }

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

  .p1-c {
    background-image: url(../image/sp-top-back3.png), linear-gradient(to left, #005A66, #51A7DD);
    background-repeat: no-repeat;
    background-size: cover, cover;
    background-position: center, center;
  }

  .p1-d {
    background-image: url(../image/sp-top-back4.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
  }

  .p1-f {
    background-image: url(../image/sp-top-back6.png);
    background-repeat: no-repeat;
    background-size: cover;  
  }

  .p1-m {
    background-image: url(../image/sp-top-back7.png);
  }
  
}