@charset "utf-8";
/* CSS Document */

/* ------------------------
   CSS Reset（簡易版）
------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ------------------------
   変数（カスタムプロパティ）
------------------------ */
:root {
  font-main: 'Oswald', 'Noto Sans JP', sans-serif;
  spacing: 1rem;
  radius: 8px;
}

/* ------------------------
   ベーススタイル
------------------------ */
body {
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
	letter-spacing: 0.03em;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

li{
	list-style: none;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
	opacity: 0.5;
}

/* PC（幅 1024ppx 以上）で表示 */
@media screen and (min-width: 1024px) {
	.sp-only {
    display: none !important;
  }
  .pc-only {
    display: block;
  }
}

/* スマホ（幅 1023px 以下）で表示 */
@media screen and (max-width: 1023px) {
  .sp-only {
    display: block;
  }
	.pc-only {
    display: none !important;
  }
}

h2{
	text-shadow: 0.5px 0 0 #000, -0.5px 0 0 #000;
	text-align: center;
	font-size: clamp(35px, 4.5vw, 78px);
	font-weight: bold;
	letter-spacing: 0.2vw;
}

@media (max-width: 768px) {
	h2{
		font-size: 11vw;
	}
}

h2 span{
	text-shadow:none;
	font-size: clamp(16px, 1vw, 26px);
	display: block;
}

@media (max-width: 768px) {
	h2 span{
		font-size: 3.5vw;
	}
}

.popup-img {
  cursor: zoom-in;
  transition: 0.3s;
}

.overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ------------------------
   ボタン
------------------------ */

header .button01{
		position: absolute;
  bottom: 3vw;
  left: 9vw;
}

@media (max-width: 768px) {
	header .button01{
		display: inline-block;
		font-size: 5.6vw;
		bottom: -16vw;
		right: 7vw;
		left: 7vw;
		padding: 3vw 2vw;
	}
}

#plan .buttonbox,#our .buttonbox{
 display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2vw;
  margin: 3vw auto;
}

#plan .buttonbox a,#our .buttonbox a{
	display: inline-block;
  text-align: center;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  font-size: clamp(16px, 2vw, 29px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  box-sizing: border-box;
}

 .button01{
	 font-weight: bold;
	text-align: center;
	display: block;
  background: linear-gradient(to bottom, #307E00, #091A00);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font-size: clamp(16px, 2vw, 29px);
  transition: all 0.3s ease;
}

.button01 img{
	float: left;
	width: clamp(20px, 4vw, 69px);
  height: auto;
}

@media (max-width: 768px) {
	.button01 img{
		width: 13vw;
	}
}

.button01 span{
	color: #FCCB3F;
}

.button01 small{
	font-size: clamp(10px, 1vw, 14px);
	display: block;
}

@media (max-width: 768px) {
	.button01 small{
		font-size: 3vw;
	}
}

 .button02{
	 font-weight: bold;
	text-align: center;
	display: block;
  background: linear-gradient(to bottom, #1F6D89, #00101A);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font-size: clamp(16px, 2vw, 29px);
  transition: all 0.3s ease;
	
}

.button02 img{
	float: left;
	width: clamp(20px, 4vw, 55px);
  height: auto;
	margin: 0.2vw 1vw 0 0;
}

@media (max-width: 768px) {
    #stf .button02 img{
	float: left;
	margin: 0 2vw 0 0;
        width: 14vw;
}
    #stf .button02{
        padding: 5vw 3vw 4vw 3vw;
        line-height: 1.1;
        text-align: left;
        font-size: 4.5vw;
    }
    
    #stf .button02 small{
        font-size: 2vw;
        line-height: 3;
    }
}

.button02 small{
	font-size: clamp(10px, 1vw, 14px);
	display: block;
	white-space: nowrap;
}

 .button03{
	 font-weight: bold;
	text-align: center;
	display: block;
  background: linear-gradient(to bottom, #681F89, #0C001A);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font-size: clamp(16px, 2vw, 29px);
  transition: all 0.3s ease;
	
}

.button03 img{
	float: left;
	width: clamp(20px, 4vw, 68px);
  height: auto;
	margin: 0.5vw 0.2vw 0 0;
}

.button03 small{
	font-size: clamp(10px, 1vw, 14px);
	display: block;
}


/* ------------------------
   header
------------------------ */

header{
	background-image:url("../img/fv.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1440 / 720; /* ← 元画像比率を維持 */
  width: 100%;
	position: relative;
}

@media (max-width: 768px) {
  header{
	  text-align: center;
    background-image:url("../img/fv_sp.png");
      min-height: 80vh;
  }
}

header .logo{
	float: left;
	margin: 30px 5% 0 2%;
}

@media (max-width: 768px) {
  header .logo{
    margin:7vw 5% 0 3vw;
	  width: 40vw;
  }
}

header .logo-p{
	background-color: #002961;
	color: #fff;
	border-radius: 19px;
	display: inline-block;
	padding: 2px 12px;
	margin: 64px auto;
    line-height: 1.4;
}

@media (max-width: 768px) {
	header .logo-p{
		margin: 5vw auto;
		font-size: 3.5vw;
	}
}

header .snsbox {
    position:relative;
    top: 0.8vw;
  display: inline-flex;
  gap: 1vw;
    margin: 0 auto 0 2vw;
}

@media screen and (max-width: 768px) {
	header .snsbox {
    justify-content: center;
    width: 50%;
    gap: 6vw;
        position: none;
  }
}

header .snsbox img {
  width: clamp(24px, 3vw, 48px);
  height: auto;
}

@media screen and (max-width: 768px) {
	header .snsbox img {
    width: 10vw;
  }
}

header h1{
	text-shadow: 0.5px 0 0 #000, -0.5px 0 0 #000;
	clear: both;
	font-size: clamp(35px, 4.5vw, 70px);
	font-weight: bold;
	color: #000;
	line-height: 1.2;
	margin: 4vw auto 0 6%;
}

@media (max-width: 768px) {
	header h1{
		margin: 4vw auto 0 auto;
		font-size: 10vw;
	}
}

header .sub{
	margin: 20px auto 0 6%;
	font-weight: bold;
	font-size: clamp(16px, 1.5vw, 26px);
}

@media (max-width: 768px) {
	header .sub{
		font-size: 5vw;
		padding: 0 ;
		margin: 4vw auto;
	}
}

.sun {
  width: 121px;
  height: 118px;
  position: absolute;
  top: 8px;
  right: 8px;
  pointer-events: none;
}

@media (max-width: 768px) {
	.sun {
  width: 20vw;
  height: 20vw;
  top: 3vw;
  right: 3vw;
}
}

/* ------------------------
   nav
------------------------ */

.hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 5;
  right: 30px;
  top: 30px;
  width: 75px;
  height: 75px;
  cursor: pointer;
  text-align: center;
	border: 2px solid #002961;
  border-radius: 50%;
  background: #fff;
}

@media (max-width: 768px) {
	.hamburger {
		width: 13vw;
		height: 13vw;
		top: 6.8vw;
		right: 6.5vw;
	}
}

.hamburger span {
  position: relative;
  width: 20px;
  height: 2px;
  background: #002961;
  transition: 0.3s ease-in-out;
}

.menu-label {
  margin-top: 15px;
  font-size: 12px;
  color: #002961;
}

@media (max-width: 768px) {
	.menu-label {
		font-size: 2.5vw;
	}
}

.hamburger span:nth-child(1) {
  top: 2px;
}
.hamburger span:nth-child(2) {
  top: 8px;
}
.hamburger span:nth-child(3) {
  top: 13px;
}

.hamburger.active span:nth-child(1) {
  top : 7px;
  left: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
  top : 5px;
  left: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(3) {
  top: 3px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 4;
  top  : 0;
  right : 0;
  color: #fff;
  background: rgba( 0,41,97,0.6 );
  text-align: center;
  width: 25%;
	height: 100%;
  transform: translateY(-100%);
  transition: all 0.6s;
    overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
	nav.globalMenuSp {
		width: 70%;
	}
}

nav.globalMenuSp ul {
  margin: 120px auto 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li:nth-child(1) {
  margin: 120px auto 0 auto;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 80%;
    margin: 0 auto;
    transition: .4s all;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}

nav.globalMenuSp.active {
  opacity: 100;
  display: block;
   transform: translateY(0%);
}

/* ------------------------
   FIX
------------------------ */

#fix {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

#fix .top {
  position: fixed;
  right: 2vw;
  bottom: calc(6vh + 70px);
  background: #EA6B02;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 0.5rem;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

#fix .top .arrow {
  font-size: 1.5rem;
  line-height: 1;
    width: 1.5vw;
}

#fix .top .text{
    font-size:  1rem;
}

#fix .fix-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

#fix .fix-inner p {
  font-weight: bold;
  background: #E00000;
  color: #fff;
  padding: 10px;
  margin: 0;
  font-size: clamp(12px, 3vw, 16px);
  flex-shrink: 0;
}

#fix .fix-inner p span {
  background: #fff;
  color: #E00000;
  padding: 2px 5px;
  margin-right: 5px;
}

#fix .box01 {
  background: #FFCB3F;
  width: 100%;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

#fix .box01 p {
  font-weight: bold;
  background: #E00000;
  color: #fff;
  padding: 1vw;
  margin: 0;
  font-size: clamp(12px, 3vw, 16px);
}

#fix .box01 p span {
  background: #fff;
  color: #E00000;
  padding: 2px 5px;
  margin-right: 5px;
}

#fix .buttonbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
  justify-content: flex-start;
  min-width: 0;
}

#fix .buttonbox a {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: transform 0.2s;
    white-space: nowrap;
}

#fix .buttonbox a:hover {
  transform: scale(1.05);
}

#fix .buttonbox img{
    width: 1.5vw;
    margin: 0 0.3vw;
}

#fix .buttonbox .button02{
    width: auto;
}


@media screen and (max-width: 768px) {
  #fix .sp-only {
    display: flex;
    justify-content: space-between;
    gap: 1vw;
    margin: 0 1vw 1vw 1vw;
    flex-wrap: nowrap;
  }

  #fix .sp-only a {
    flex: 1 1 33%;
    font-size: 0.75rem;
    padding: 6px 4px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    flex-direction: row; /* 横並びに変更 */
    align-items: center; /* 中央揃え */
    justify-content: center;
    gap: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }

  #fix .sp-only a .text {
      font-size: 4vw;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

  #fix .sp-only a img {
    width: 4vw;
    margin: 0;
  }

  #fix .sp-only a small {
    font-size: 2vw;
    display: block;
  }

  #fix .sp-only a span {
    font-weight: bold;
    font-size: 4vw;
  }

    #fix .fix-inner{
        gap:0;
    }
    
  #fix .fix-inner p {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
    font-size: 4vw;
  }
}


/* ------------------------
   FUNCTION
------------------------ */

#fun{
	background-image:url("../img/bg01.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (max-width: 768px) {
	#fun{
		padding: 20vw 0 0 0;
	}
}

.fun01{
	margin: 0 auto;
	display: table;
	padding: 8vw 0 0 0;
}

@media (max-width: 768px) {
	.fun01{
	padding: 4vw 0 0 0;
}
}

.fun01 .box01{
	float: left;
	width: 45%;
	margin: 0 2.5vw;
}

@media (max-width: 768px) {
	.fun01 .box01{
		float: unset;
		width: 100%;
		margin: 0 auto;
	}
}

.fun01 .box02{
	margin: 0 auto 0 4vw;
}

@media (max-width: 768px) {
	.fun01 .box02{
		margin: 0 auto;
		display: table;
	}
}

.fun01 .box02 h2{
	float: left;
	margin: 2vw 1vw 0 3vw;
}

.fun01 .box01 .img01{
	width: clamp(20px, 12vw, 175px);
}

@media (max-width: 768px) {
	.fun01 .box01 .img01{
		width: 26vw;
	}
}

.fun01 dl{
	display: table;
	background-color: #FCF5EF;
	border-radius: 10px;
	padding: 4px;
	border: 2px solid #BEB8AA;
}

@media (max-width: 768px) {
	.fun01 dl{
		display: block;
		width: 90%;
		margin: 3vw auto 0 auto;
	}
}

.fun01 dl div{
	background: #FEFEFE;
	margin: 0;
	border: 1px solid #D8D4CD;
	padding: 5px;
	display:flow-root; 
}

.fun01 dl div:nth-child(1) {
	border-radius: 6px 6px 0 0;
}

.fun01 dl div:nth-child(4) {
	border-radius: 0 0 6px 6px;
}

.fun01 dl div:nth-child(3),.fun01 dl div:nth-child(4){
	background: #F2F2F2;
	
}

.fun01 dl div img{
	float: left;
	width: clamp(104px, 7vw, 156px);
}

@media (max-width: 768px) {
	.fun01 dl div img{
		width: 22vw;
	}
}

.fun01 dl div dt{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 900;
	width: 98%;
	margin: 0.3vw 0 0 0;
}

@media (max-width: 768px) {
	.fun01 dl div dt{
		font-size: 4vw;
	}
}

.fun01 dl div dd{
	width: 98%;
	font-size: clamp(9px, 1vw, 14px);
	display: table-cell;
}

@media (max-width: 768px) {
	.fun01 dl div dd{
		font-size: 2.5vw;
	}
}

.fun01 dl div dd p{
	font-size: clamp(12px, 1.2vw, 18px);
	font-weight: bold;
	color: #2D96C3;
	margin: 0 0 0.5vw 0;
}

@media (max-width: 768px) {
	.fun01 dl div dd p{
		font-size: 3vw;
	}
}

.fun02{
	clear: both;
    width: 80%;
	margin: 6vw auto;
}

@media (max-width: 768px) {
    .fun02{
    width: 100%;
}
}

.fun02 img{
	margin: 0 auto;
}

@media (max-width: 768px) {
	.fun02 img{
		margin: 0 auto 2vw auto;
		width: 90%;
	}
}

/* ------------------------
   PLAN
------------------------ */

#plan{
	background: #EFF8FC;
	padding: 5vw 0;
	display: flow-root;
}

@media screen and (max-width: 768px) {
	#plan{
		padding: 7vw 0 5vw 0;
	}
}

#plan .banner_box{
    width: 80%;
    background: #ffcb3f;
    margin: 0 auto 2vw auto;
    display: flex;
    padding: 0 0 1vw 0;
}

@media screen and (max-width: 768px) {
    #plan .banner_box{
    width: 90%;
        padding:0;
    }
}

#plan .banner_box img{
    width: 60%;
    margin: 0 auto;
    display: block;
}

@media screen and (max-width: 768px) {
    #plan .banner_box img{
    width: 100%;
    }
}

#plan .banner_text{
    text-align: center;
    width: 80%;
    margin: 0 auto;
    font-size: 1.3vw;
}

@media screen and (max-width: 768px) {
    #plan .banner_text{
    width: 90%;
        font-size: 4vw;
        margin: 0 auto 6vw auto;
}
}

#plan .banner_text small{
    color: #fff;
    background: #d25812;
    padding: 0.5em;
        font-weight: bold;
    font-size: clamp(10px, 1vw, 16px);
}

@media screen and (max-width: 768px) {
    #plan .banner_text small{
    font-size: 3vw;
}
}

#plan .box01{
	float: left;
	width: 33%;
	margin: 0 auto;
  height: 11.7vw;
    display: inline-table;
}

#plan .box01 img {
  width: clamp(100px, 18vw, 344px);
  height: auto;
    float: right;
}

@media screen and (max-width: 768px) {
	#plan .box01 img {
		width: 100%;
		bottom: -19vw;
		right: -2vw;
	}
}

#plan .box02{
	float: left;
	width: 30%;
	margin: 0 2vw;
}

@media screen and (max-width: 768px) {
	#plan .box02{
		float: none;
    width: 100%;
    margin: 0 auto 6vw auto;
	}
	
	#plan .box02 h2{
		margin: 0 29vw 0 0;
	}
}

#plan .toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 3vw auto;
  gap: 1vw;
    font-size: 1vw;
}

@media screen and (max-width: 768px) {
	#plan .toggle-wrap{
        display: block;
		font-size: 3.5vw;
        text-align: center;
		margin: 2vw auto 6vw auto;
	}
}

#plan .toggle-wrap input[type="radio"] {
  display: none;
}

#plan .toggle-wrap input[type="radio"]:checked + label::before {
    font-family: "Font Awesome 6 Free"; 
  content: "\f058";
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  border-radius: 50%;
  width: 1.2em;
  height: 1.2em;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

#plan .toggle-wrap label {
  cursor: pointer;
  background: #fff;
  border-radius: 22px;
  padding: 0.5vw 1.5vw;
  font-weight: bold;
  transition: background 0.3s;
     position: relative;
  padding-left: 2em;
  display: inline-block;
}

#plan .toggle-wrap label small {
  color: #fff;
  background: #C10000;
  border-radius: 6px;
  padding: 0.1vw 1vw;
  margin-left: 1vw;
}

#plan .toggle-wrap input#planA:checked ~ label[for="planA"] {
  background: #2C98CC;
  color: white;
}

#plan .toggle-wrap input#planB:checked ~ label[for="planB"] {
  background: #922CCC;
  color: white;
}

#plan .box03{
	color: #2C98CC;
	font-weight: bold;
	display: inline;
	width: 30%;
	margin: 0 auto;
	float: right;
	font-size: clamp(10px, 1vw, 14px);
}

@media screen and (max-width: 768px) {
	#plan .box03{
		text-align: center;
		width: 80%;
		margin: 6vw auto;
		font-size: 3vw;
		display: block;
		float: none;
	}
}

#plan .box03 img{
	width: clamp(100px, 21vw, 315px);
}

@media screen and (max-width: 768px) {
	#plan .box03 img{
		width: 100%;
	}
}

#plan ul{
	margin: 0 auto;
	width:  clamp(80%, 16vw, 68%);
	text-align: center;
	  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 1vw;
}

#plan ul li.recommended {
  position: relative;
	color: #2C98CC;
	border: 4px solid #2C98CC;
}

#plan ul li .badge {
  position: absolute;
  top: -28px;
  right: 6px;
  background: #2C98CC;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 5px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 10;
}

#plan .planB li .badge {
    background: #922CCC;
}

#plan .planB li.recommended{
    color: #922CCC;
	border: 4px solid #922CCC;
}

#plan ul li{
	flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
	width: clamp(150px, 16vw, 297px);
	float: left;
	background: #fff;
	border: 1px solid #CBC0B5;
	border-radius: 10px;
	margin: 0 1vw 0 0;
	padding: 2vw;
    vertical-align: top;
}

#plan .planA li{
    border: 2px solid #2C98CC;
}

#plan .planB li{
    border: 2px solid #922CCC;
}

#plan ul li:last-child {
	margin: 0;
}

#plan ul li img{
	margin: 0 auto;
    height: 57px;
}

#plan ul li h3{
	font-size: clamp(10px, 1vw, 14px);
	margin: 1vw auto;
    width: 100%;
}

@media screen and (max-width: 768px) {
	#plan ul li h3{
		font-size: 3vw;
	}
}

#plan ul li h3 span{
	font-size: clamp(20px, 3vw, 60px);
}

@media screen and (max-width: 768px) {
	#plan ul li h3 span{
		font-size: 10vw;
	}
}

#plan ul li mark{
    display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2vw;
  line-height: 1.2;
  white-space: nowrap;
	background: #EFEFEF;
	border-radius: 6px;
	border: 1px solid #707070;
	padding: 0 0.5vw;
	font-size: clamp(10px, 1vw, 14px);
    margin: 1vw 0;
    flex-shrink: 0;
 }

@media screen and (max-width: 768px) {
	#plan ul li mark{
	font-size: 3vw;
 }
}

#plan ul .recommended mark{
	background: #EFF8FC;
	border: 1px solid #2C98CC;
	color: #2C98CC;
 }

#plan .planB .recommended mark{
	background: #FAF3FF;
	border: 1px solid #922CCC;
	color: #922CCC;
 }

#plan ul .recommended p{
	color: #2C98CC;
}

#plan .planB .recommended p{
	color: #922CCC;
}

#plan ul li p{
	font-size: clamp(10px, 1vw, 14px);
	color: #004444;
	margin: 0 auto 2vw auto;
	text-align: left;
    flex-grow: 1;
	width: 90%;
}

@media screen and (max-width: 768px) {
	#plan ul li p{
		font-size: 3vw;
		margin: 5vw auto;
	}
}

#plan ul li .button04{
	font-size: clamp(10px, 1vw, 14px);
	color: #2C98CC;
	border: 1px solid #2C98CC;
	border-radius: 21px;
	padding: 0.5vw 0;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	#plan ul li .button04{
		font-size: 3vw;
	}
}

#plan .planB li .button04{
	border: 1px solid #922CCC;
    color: #922CCC;
}

#plan ul li .button05{
	font-size: clamp(10px, 1vw, 14px);
	color: #fff;
	background: #2C98CC;
	border: 1px solid #2C98CC;
	border-radius: 21px;
	padding: 0.5vw 0;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	#plan ul li .button05{
		font-size: 3vw;
	}
}

#plan .planB li .button05{
	background: #922CCC;
	border: 1px solid #922CCC;
}

@media screen and (max-width: 768px) {
  #plan ul {
	  width: 90%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  #plan ul::-webkit-scrollbar {
    display: none;
  }

  #plan ul li {
	  padding: 5vw;
    flex: 0 0 65%;
    margin-right: 10px;
    scroll-snap-align: start;
  }

  #plan ul li:last-child {
    margin-right: 20px;
  }
}


/* ------------------------
   INTRODUCTION
------------------------ */

#int{
	clear: both;
	margin: 6vw auto;
}

@media screen and (max-width: 768px) {
	#int{
		margin: 10vw auto;
	}
}

#int ol{
	width: 80%;
	display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 1vw;
	margin: 4vw auto;
}

@media screen and (max-width: 768px) {
	#int ol{
		margin: 8vw auto;
	}
}

#int ol li{
	position: relative;
  font-size: clamp(10px, 1vw, 14px);
  padding: 2vw 1.5vw 1.5vw 1.5vw;
  border: 1px solid #CBC0B6;
  border-radius: 10px;
  flex: 1;
  display: flow;
  flex-direction: column;
  justify-content: space-between;
	margin: 0 1vw;
}

#int ol li img{
	width: clamp(100px, 11vw, 199px);
	margin: 0.5vw auto;
}

@media screen and (max-width: 768px) {
	#int ol li img{
		width: 90%;
	}
}

#int ol li .step{
	text-align: center;
	font-size: clamp(10px, 1.5vw, 23px);
	line-height: 1;
}

@media screen and (max-width: 768px) {
	#int ol li .step{
		font-size: 3.5vw;
	}
}

#int ol li .step span{
	font-weight: bold;
	margin: 1vw 0 0 0;
	display: block;
	font-size: clamp(30px, 4vw, 60px);
	line-height: 0.5;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
	#int ol li .step span{
		font-size: 11vw;
        margin: 3vw auto 0 auto;
	}
}

#int ol li mark{
    display: list-item;
	font-weight: bold;
	background: #333;
	color: #fff;
	padding: 0.8vw 0.5vw;
	border-radius: 6px;
	text-align: center;
	margin: 2vw auto 0 auto;
    font-size: 0.85vw;
}

@media screen and (max-width: 768px) {
	#int ol li mark{
		font-size: 3vw;
		margin: 5vw auto;
		padding: 2vw 0.5vw;
	}
}

#int ol li:nth-of-type(-n+3)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -2.4vw;
  transform: translateY(-50%);
  width: clamp(20px, 2vw, 38px);
  height: clamp(20px, 2vw, 38px);
  background: url('../img/int_arrow.png') no-repeat center / contain;
  animation: moveRight 0.8s infinite;
  pointer-events: none;
  z-index: 2;
}

@media screen and (max-width: 768px) {
	#int ol li:nth-of-type(-n+3)::after {
		right: -8.4vw;
		width: 7vw;
		height: 7vw;
	}
}

@keyframes moveRight {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(6px);
  }
}

@media screen and (max-width: 768px) {
  #int ol {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 90%;
    padding-left: 4vw;
    padding-right: 4vw;
    gap: 4vw;
  }

  #int ol li {
	  font-size: 3vw;
	  padding: 5vw;
    flex: 0 0 70%;
    scroll-snap-align: start;
    margin: 0 6vw 0 0;
  }

  #int ol::-webkit-scrollbar {
    display: none;
  }
}


/* ------------------------
   FAQ
------------------------ */

#faq {
	padding: 6vw 0;
	background: #EFF8FC;
}

#faq dl {
	width: 70%;
  margin: 4vw auto;
}

@media screen and (max-width: 768px) {
	#faq dl {
		width: 90%;
	}
}

#faq div{
	background: #fff;
	border-radius: 20px;
	padding: 0.4vw 1vw;
	margin: 2vw auto;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

@media screen and (max-width: 768px) {
	#faq div{
		padding: 3vw;
		margin: 4vw auto;
	}
}

#faq dt{
	color: #2C98CC;
	font-weight: bold;
	font-size: clamp(15px, 4vw, 20px);
	border-bottom: 1px dashed #C9C9C9;
	padding: 0 0 1vw 0;
	  margin: 5px 0 20px 0;
	line-height: 2.5;
}

#faq dd{
	font-size: clamp(10px, 1vw, 14px);
	  margin: 20px 0;
}

#faq dt,
#faq dd {
  position: relative;
  padding-left: 3.5vw;
}

@media screen and (max-width: 768px) {
	#faq dt,
#faq dd {
	font-size: 3vw;
	padding: 0 0 0 8vw;
	}
}

/* Qマークの画像 */
#faq dt::before {
  content: '';
  background-image: url("../img/q.png"); /* Q画像のパス */
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(20px, 3vw, 66px);
  height: clamp(20px, 3vw, 62px);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	#faq dt::before{
		width: 7vw;
		height: 7vw;
	}
}

/* Aマークの画像 */
#faq dd::before {
  content: '';
  background-image: url('../img/a.png'); /* A画像のパス */
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(20px, 3vw, 66px);
  height: clamp(20px, 3vw, 62px);
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
	#faq dd::before{
		width: 7vw;
		height: 7vw;
	}
}

/* ------------------------
   SHAPE the FUTURE
------------------------ */

#stf{
	margin: 6vw auto;
}

@media screen and (max-width: 768px) {
	#stf{
	margin: 6vw auto 14vw auto;
}
}

#stf .box01{
	background: #FFFAEC;
	border-radius: 20px;
	border: 1px solid #E5DDC9;
	padding: 2vw;
	margin: 6vw auto;
	width: clamp(750px, 43vw, 1011px);
}

@media screen and (max-width: 768px) {
	#stf .box01{
		width: 90%;
		padding: 4vw;
	}
}

#stf .box02{
	background: #fff;
	border: 1px solid #E5DDC9;
	border-radius: 8px;
	position: relative;
}

#stf .box02 .img01{
	display: block;
  width: 100%;
  height: auto;
	padding: 2vw 2vw 0 2vw;
}

@media screen and (max-width: 768px) {
	#stf .box02 .img01{
		padding: 4vw 3vw 0 3vw;
	}
}

#stf .box03{
	background: #F2F2F2;
	border-radius: 0 0 8px 8px;
  padding: 1.5rem;
    color: #063F77;
}

@media screen and (max-width: 768px) {
	#stf .box03{
    padding: 5vw 4vw;
	}

    #stf .box03 p{
        font-size: 3vw;
    margin: 4vw auto;
    }
        #stf .add_line{
            text-align: center;
            display: table;
            margin: 0 auto;
        }

}

#stf .box04{
    border-bottom: dashed #c7c7c7 1px;
    padding: 0 0 1.5vw 0;
    margin: 0 0 1.5vw 0;
}

#stf .box04 img {
  float: left;
    margin: 0 2vw 0 0;
    width: 21%;
}

#stf .box04 p{
    font-size: 0.8rem;
    font-weight: bold;
    margin: 1vw 0 0 0;
}

#stf .box04 a.button02 {
  display: flow-root;
  background: linear-gradient(to bottom, #1F6D89, #00101A);
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.5rem;
  margin-bottom: 10px;
  align-items: center;
  gap: 10px;
}

#stf .box04 a.button02 img{
    margin: 0.3vw 0 0 1vw;
    width: auto;
 }

#stf .box04 a.button02 small {
  display: block;
  font-size: 0.8rem;
  margin-top: 5px;
  white-space: nowrap;
}

#stf .box05 a{
    float: left;
    margin: 0.8rem 2vw 0 0;
    width: 21%;
}

#stf .box05 p{
    font-size: 0.8rem;
}

/* ------------------------
   EVOLVING
------------------------ */

#evo{
	padding: 6vw 0;
	background: #EFF8FC;
}

@media screen and (max-width: 768px) {
	#evo{
		padding: 6vw 0 10vw 0;
	}
}

#evo .box01{
	font-family: 'Noto Sans JP', sans-serif;
	width: 65%;
	margin: 3vw auto;
	display: flex;
  align-items: center;
  gap: 2vw;
	padding: 0 4vw;
	color: #215978;
	background: #fff;
	border-radius: 13px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
	#evo .box01{
		width: 90%;
	}
}

#evo .box01 img {
  width: clamp(120px, 16vw, 200px);
  height: auto;
}

@media screen and (max-width: 768px) {
	#evo .box01 img {
		width: 20vw;
	}
}

#evo .box01 p {
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

@media screen and (max-width: 768px) {
	#evo .box01 p {
		font-size: 3vw;
		margin: 3vw auto;
	}
}

#evo .box02{
	font-family: 'Noto Sans JP', sans-serif;
	width: 75%;
	margin: 0 auto;
	padding: 5px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
	#evo .box02{
		width: 90%;
		padding: 1vw;
}
}

#evo .box02 dl {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

#evo .box03{
	display: flex;
  align-items: flex-start;
	box-sizing: border-box;
	width: 50%;
	padding: 1.5vw;
	border: 1px solid #B4B0A9;
 gap: 1vw;
  background: #fff;
}

#evo .box03 img {
  width: clamp(32px, 8.5vw, 118px);
  height: auto;
	flex-shrink: 0;
}

#evo .box03 .text {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}

#evo .box03 dt {
  font-weight: 900;
  font-size: clamp(16px, 1.5vw, 26px);
  margin: 0;
}

#evo .box03 dd {
  font-size: clamp(13px, 1.2vw, 16px);
  margin: 0;
  line-height: 1.5;
}

#evo .box03 dd span {
	font-size: clamp(13px, 1.2vw, 18px);
  display: block;
  font-weight: bold;
	margin: 0 0 0.5vw 0;
}

#evo .box03:nth-of-type(1){
	border-radius: 6px 0 0 0;
}

#evo .box03:nth-of-type(2){
	border-radius: 0 6px 0 0;
}

#evo .box03:nth-of-type(5){
	border-radius: 0 0 0 6px;
}

#evo .box03:nth-of-type(6){
	border-radius: 0 0 6px 0;
}

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

  #evo .box02 dl {
    flex-direction: column;
  }

  #evo .box03 {
    width: 100%;
    padding: 5vw 4vw;
    gap: 4vw;
  }
	
@media screen and (max-width: 768px) {
	#evo .box03 {
		padding: 3vw 2vw 4vw 0;
		gap: 2vw;
	}
}

  #evo .box03 dt {
    font-size: 5vw;
  }

  #evo .box03 dd {
    font-size: 3.5vw;
  }

  #evo .box03 dd span {
    font-size: 3.5vw;
    margin-bottom: 2vw;
  }

  #evo .box03 img {
    width: 19vw;
  }

  #evo .box03:nth-of-type(2),
  #evo .box03:nth-of-type(5){
    border-radius: 0;
  }
	
	#evo .box03:nth-of-type(1){
		border-radius:10px 10px 0 0;
	}
	
	#evo .box03:nth-of-type(6){
		border-radius:0 0 10px 10px;
	}
}


/* ------------------------
   OUR THOUGHT
------------------------ */

#our{
	position: relative;
	margin: 6vw auto 0 auto;
	border-bottom: 17px solid #FCCB3F;
}

@media screen and (max-width: 768px) {
	#our{
		margin: 0 auto;
		width: 100%;
	}
}

#our::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15vw;
  background: linear-gradient(to top, #DEF5FF, #fff);
  pointer-events: none;
	z-index: 0;
}

@media screen and (max-width: 768px) {
	#our::after {
		height: 64vw;
	}
}

#our .box01{
	text-align: center;
	padding: 7vw;
	background-image:url("../img/our_bg01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 65%;
	margin: 0 auto 5vw auto;
}

@media screen and (max-width: 768px) {
	#our .box01{
		width: 100%;
		padding: 10vw 5vw;
	}
}

#our .box01 h2{
	background: #fff;
	color: #11356A;
	text-align: center;
	display: inline-block;
	padding: 0 2vw;
	}

#our .box01 span{
	font-size: clamp(16px, 1vw, 26px);
	background: #fff;
	color: #11356A;
	text-align: center;
	display: inline-block;
	padding: 0 2vw;
	font-weight: bold;
	}

@media screen and (max-width: 768px) {
	#our .box01 span{
		font-size: 3.5vw;
	}
}

#our .box01 p{
	text-align: center;
	padding: 6.5vw 4vw;
	background: rgba(255, 255, 255, 0.9);
	margin: 4vw auto 0 auto;
}

@media screen and (max-width: 768px) {
	#our .box01 p{
		font-size: 3vw;
	}
}

#our .box02{
	text-align: center;
	position: relative;
  z-index: 2;
}

#our .box02 h3{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	display: inline-block;
	padding: 1vw 0;
	margin:4vw auto 2vw auto;
	font-size: clamp(16px, 2vw, 33px);
}

@media screen and (max-width: 768px) {
	#our .box02 h3{
		font-size: 4vw;
		padding: 2vw 0;
		width: 90%;
		margin: 5vw 0 6vw 0;
	}
	
	#our .box02 p{
		font-size: 3vw;
		margin: 0 0 6vw 0;
	}
}

#our .box02 img{
	margin: 0 auto;
	display: block;
  position: relative;
  z-index: 1;
}

/* ------------------------
   footer
------------------------ */

#footer{
	background: #FFFAEC;
  padding:4vw 5vw;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5vw;
}

#footer .logo {
  height: auto;
  object-fit: contain;
	margin: 0 10vw;
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

#footer .box01 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2vw;
  margin-bottom: 2vw;
}

#footer .follow {
  background: #505050;
  border-radius: 28px;
  color: #fff;
  display: inline-block;
  padding: 0.5vw 3vw;
  font-size: 1vw;
  white-space: nowrap;
}

#footer .snsbox img {
  height: 2.5vw;
  width: auto;
}

#footer .snsbox {
  display: flex;
  gap: 1.5vw;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 3vw;
}

#footer .box02,#footer .box03 {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
  text-align: left;
}

#footer .box02 a, #footer .box03 a {
  color: #2c2c2c;
  text-decoration: none;
  font-size: clamp(10px, 1vw, 16px);
}

#footer p{
	background: #505050;
	border-radius: 28px;
	color: #fff;
	display: inline-block;
	padding: 0.5vw 3vw;
	white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 5vw;
    text-align: center;
  }

  #footer .logo {
    margin: 0;
    width: 50%;
    height: auto;
  }

  .footer-right {
    width: 100%;
    align-items: center;
  }

  #footer .box01 {
    flex-direction: column;
    gap: 3vw;
    margin-bottom: 5vw;
  }

  #footer .follow {
    font-size: 3vw;
    padding: 1vw 5vw;
	  position: relative;
  }
	
	#footer .follow::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #505050;
}

  #footer .snsbox {
	  margin: 3vw 0 0 0;
    gap: 4vw;
  }

  #footer .snsbox img {
    height: 10vw;
	  margin: 0 1vw;
  }

  .footer-links {
    flex-direction: row;
    justify-content: center;
    gap: 5vw;
    flex-wrap: wrap;
  }

  #footer .box02,
  #footer .box03 {
	  width: 45%;
  display: flex;
  flex-direction: column;
    text-align: left;
    gap: 2vw;
	  margin: 2vw 0 6vw 0;
  }

  #footer .box02 a,
  #footer .box03 a {
    font-size: 3vw;
  }
}


footer{
	width: 100%;
	background: #292929;
	color: #fff;
	text-align: center;
}

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

/* ------------------------
   レスポンシブ対応（例）
------------------------ */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 1rem;
  }
}
