@charset "UTF-8";
/* =BreakPoint
--------------------------------------------------------------
PC and TABLET ( and SP landscape )
@media ( min-width: 601px ){

PC ( and TABLET landscape )
@media ( min-width: 961px ){

TABLET ( and SP landscape )
@media ( min-width: 601px ) and ( max-width: 960px ){

TABLET and SP ( not TABLET landscape )
@media ( max-width: 960px ){

SP ( only portrait )
@media ( max-width: 600px ){

over
@media ( min-width: 1101px ){

under
@media ( max-width: 1100px ){
--------------------------------------------------------------
*/
* {
	margin:0;
	padding:0;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.mb1 {margin-bottom: 1rem;}
.mb2 {margin-bottom: 2rem;}
.mb3 {margin-bottom: 3rem;}

        /* スピナーを消すためのCSS */
        input[type=number]::-webkit-outer-spin-button,
        input[type=number]::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        input[type=number] {
            -moz-appearance: textfield;
            appearance: textfield;
        }

button {
  color: #ffffff; /* ボタンの文字色 */
  border: none; /* ボタンのボーダーをなくす */
  padding: 10px 20px; /* ボタンの内側の余白 */
  text-align: center; /* テキストを中央揃え */
  text-decoration: none; /* リンクの下線をなくす */
  display: inline-block; /* ボタンをインラインブロック要素として表示 */
  font-size: 16px; /* フォントサイズ */
  cursor: pointer; /* カーソルをポインターに変更 */
  border-radius: 10px; /* ボタンの角を丸める */
  width: calc(50% - 2rem);
  margin: 10px;
  max-width: 334px;
}
.arrow_r {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.arrow_r:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 5px;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
button {
    width: 90%;
    margin: 0.5rem auto;
    max-width: 275px;
  }
}
h1 {text-align: center;}
h1 img {
	max-width: 750px;
	width: 100%;
}
.btn01 {
	background: #e50012;
}
.btn02 {
	background: #009fe8;
}
.btn {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
@media screen and (max-width: 767px) {
.btn p {
    text-align: left;
}
}

.form input{
	width: 100%;
	border: 1px solid #000;
	width: 50%;
	max-width: 800px;
	margin: 20px auto;
	display: block;
	height: 30px;
	line-height: 50px;
	font-size: 16px;
    background: #ffffff;
}
.btn_sample a{
	display: block;
	background-color: #009fe8;
	color: #fff;
	width: 80%;
    max-width: 500px;
	margin: 20px auto 50px;
	padding: 15px 10px;
	text-align: center;
	font-weight: bold;
    border-radius: 50px;
}
.btn_entry a{
	display: block;
	background-color: #e50012;
	color: #fff;
	width: 80%;
    max-width: 500px;
	margin: 5px auto 60px;
	padding: 15px 10px;
	text-align: center;
	font-weight: bold;
    border-radius: 50px;
}
.btn_link a{
	display: block;
	background-color: #e50012;
	color: #fff;
	width: 80%;
    max-width: 500px;
	margin: 20px auto;
	padding: 15px 10px;
	text-align: center;
	font-weight: bold;
    border-radius: 50px;
}
.check-result{
	text-align: center;
	font-size: 20px;
	color: #f00;
}
/*CVボタン*/
@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.btn2,
a.btn2,
button.btn2 {
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
p {
    line-height: 1.4;
}
.read2{
	line-height: 1.6; 
	font-size: 17px; 
	margin-bottom:2rem;
}
 @media screen and (max-width: 600px) {
.read2{
	font-size: 16px; 
}
}
/*フロー*/
.flow {
     width: 100%;
     max-width: 980px;
     margin: 0 auto 3rem;
 }
.flow h3 {
    background-color: #009fe8;
    color: #ffffff;
    padding: 6px;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.6;
}
 .flexbox {
     display: flex;
 }
 .box1 {
     width: 30%;
     border-radius: 10px;
     border: 3px solid #009fe8;
 }
.box1 .step {   
    display: inline-block;
    background: #009fe8;
    color: #ffffff;
    padding: 3px 15px;
}
.box1 .step span {   
    font-size: 20px;
    padding-left: 3px;
}
.box1 .txt {   
    padding: 10px;
    text-align: left;
     font-size: 15px;
    line-height: 1.4;
}
 .box2 {
     width: 5%;
     text-align: center;
 }
 @media screen and (min-width: 601px) {
.box2 {
     display: flex;
     align-items: center;
    padding: 0.5rem;
     }
.box2 img {
        width: 100%;        
     }
.mobile_zoukan {
        display: none;
    }
}
 @media screen and (max-width: 600px) {
     .flexbox {
         display: block;
     }
     .box1 {
         width: 90%;
         margin: 0 auto;
     }
     .box1 img {
          width: 60%;
     }
     .box2 {
         width: 100%;
         margin: 10px auto;
         height: 50px;
     }
   .box2 img {
          transform:rotate(90deg);
          transform-origin:40px 40px; 
}
}
.atn2 {
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: 1rem;
    line-height: 1.6;
	font-size: 15px;
}

/*フロー2*/
.illustration-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.illustration {
  width: 200px;
  text-align: center;
  margin-bottom: 20px;
}

.illustration img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.illustration p {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

/*フロー3*/
.gallery {
    display: flex;
    flex-direction: column;
    gap: 10px; /* 行間の隙間 */
	margin-bottom: 3rem;
}

.row {
    display: flex;
    gap: 10px; /* 画像間の隙間 */
}

.gallery img {
    width:50%;
    height: auto;
    object-fit: cover;
}

/* スマートフォン向けのスタイル */
@media (max-width: 767px) {
    .row {
        flex-direction: column;
    }
.gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
}

/*アコーディオン*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 1em;
	display: block;
	color: #fff;
	background:#009fe8;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:10px 0 0 ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}
