@charset "utf-8";

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

1. Common
2. Header
3. Button
4. Footer
5. Section
    5-0. Section00
    5-1. Section01
    5-2. Section02
    5-3. Section03 - voice
    5-4. Section04
    5-5. Section05 - QA

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


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

    1. Common

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

html{
	font-size:62.5%;
}

body {
  margin: 0;
  background-color: #ffffff;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body { 
  background-color: #e9fdff; 
  background-size: cover;
  background-position: center;
}

.wrap {
  background-color: #fff;
  width: 100%;
  margin: 0 auto;
/*
  font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',sans-serif;
  -webkit-font-smoothing: antialiased;
*/
  overflow-wrap: break-word;
  text-align: justify;
  box-shadow: 1px 0 5px #ccc;
/*  overflow: hidden;*/
}

@media screen and (max-width:768px) {
  .wrap {
    width: 100%;
    font-size: 2rem;
  }
}

section{
  width: 100%;
}

.innerText{
  width: 54%;
  margin: 0 auto;
}

.align-center {
  text-align: center;
}
.align-right{
  text-align: right;  
}

img {
  width: 100%;
  height:auto;
  vertical-align: bottom;
}

figure{ margin: 0; }

p, a 
{
  font-size: 30px; 
  color: #21252b;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

a{
  text-decoration: none;
}

li { list-style: none; }
h1,h2,h3,p,ul { margin: 0 auto; }
ul{ padding: 0;}

.orange { color: #ef642e; }
.bold { font-weight: 800;}
.f-size120 { font-size:120%;}

@media screen and (max-width:1440px) {
  p, a 
  {
    font-size: 22px;
  }
}
@media screen and (max-width:768px) {
  .innerText{
    width: 85%;
  }
}
@media screen and (max-width:430px) {
  p, a 
  {
    font-size: 1.6rem;
  }
}

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

    2. Header

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

header {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px 8px 20px;
  background-color: #fff;
  position: relative;
  z-index: 1;
  width: 54%;
  margin: 0 auto;
}

header h1{
  width: 35%;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
}
header .logo{
  display: flex;
}
header a{
  width: 50%;
}

@media screen and (max-width:768px) {
  header{
    width: 95%;
  }
  header h1{
    width: 44%;
  }
}
@media screen and (max-width:430px) {
  header {
    padding: 15px 0 8px;
  }
}

/* --------------------

    3. Button

-------------------- */

/* --------------------

    4. Footer

-------------------- */
.footer {
  background: #0e2c8e;
  text-align: center;
  padding: 40px 140px;
  color: #9d8a7a;
  font-size: 15px;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.footer p{
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

@media screen and (max-width:768px) {
  .footer p{
    margin-bottom: 0.5em;
    margin-top: 0.5em;
  }
}
@media screen and (max-width:500px) {
  .footer {
    padding: 20px;
  }
}

@media screen and (max-width:431px) {
  .footer p {
    font-size: 1.2rem;
  }
}
.btn a:hover {
  opacity: .7
}

.pc-only{
  display: block;
}

@media screen and (max-width:719px) {  
  .sp-only{
    display: block;
  }
  
  .pc-only{
    display: none;
  }
}

/* --------------------

    5. Section

-------------------- */

/* --- 5-1. Section01 --- */
.sec01{
  background: url(../images/sec01/bg-h2.png) repeat;
  background-size: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0 0;
}

.sec01 h2{
  position: relative;
  width: 54%;
}

.sec01 .illust{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 45%;
  margin: 40px auto -5px;
}

@media screen and (max-width:1440px) {
  .sec01 .illust{
    width: 35%;
  }
}
@media screen and (max-width:768px) {
  .sec01 h2{
    width: 100%;
  }
}
@media screen and (max-width:428px) {
  .sec01{
    padding: 2rem 0 0;
  }
  .sec01 .illust{
    margin: 20px auto -5px;
  }
}
/* --- 5-2. Section02 --- */
.sec02-bg1{
  background: url(../images/sec02/bg.png);
  background-size: 100%;
  padding-bottom: 40px;
}
.sec02-bg2{
/*  background: url(../images/sec02/bg2.png) repeat-x;*/
  background-size: 100%;
  padding-top: 50px;
}

.sec02 .sec02-bg1 .innerText{
  padding: 30px 0 0;
}

.sec02 .text{
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 1px 1px 10px 0px #4e5657;
  padding: 45px;
}

.sec02 .pdf{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 90%;
  margin: 30px auto;
}
.pdf figure:nth-child(3){
  display: block;
}

@media screen and (max-width:768px) {
  .sec02-bg2{
    background: none;
  }
. sec02 .pdf{
    width: 100%;
  }
  .pdf figure:nth-child(3){
    display: none;
  }
}
@media screen and (max-width:430px) {
  .sec02 .text{
    border-radius: 10px;
    box-shadow: 1px 1px 5px 0px #4e5657;
    padding: 25px;
  }
  .sec02-bg2{
    padding-top: 2rem;
  }
}
@media screen and (max-width:390px) {
}

/* --- 5-3. Section03 --- */
.sec03 h2{
  background-color: #afe7ea;
  padding: 40px 0;
  margin-top: 60px;
  text-align: center;
}

.sec03 h2 img{
  width: 54%;
}

.sec03 iframe{
  background-color: #D0E0FC;
  width: 100%;
  height: 1450px;
  padding-top: 100px;
}
.teQAzf{
  width: 800px;
}
@media screen and (max-width:768px) {
  .sec03 iframe{
    padding-top: 40px;
  }
}
@media screen and (max-width:430px) {
  .sec03 h2{
    margin-top: 3rem;
    padding: 2rem 0;
  }
  .sec03 iframe{
    padding-top: 2rem;
  }
}
@media screen and (max-width:430px) {
  .sec03 iframe{
    height: 370vw;
  }
}
@media screen and (max-width:375px) {
  .sec03 iframe{
    height: 420vw;
  }
}
@media screen and (max-width:320px) {
  .sec03 iframe{
    height: 550vw;
  }
}
/* --- 5-4. Section04 --- */
.sec04 h2{
  background-color: #afe7ea;
  padding: 40px 0;
  margin-top: -5px;
  text-align: center;
}

.sec04 h2 img{
  width: 54%;
}

.sec04 .innerText {
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.sec04 .contents{
  margin: 40px auto;
}

.sec04 p{
  font-size: 23px;
}

.sec04 .tel, .close{
  margin: 0 auto;
}

.sec04 .tel a{
  font-size: 80px;
  display: block;
  margin-top: -20px;
}

.sec04 .tel p{
  text-align: center;
}

.sec04 .close p{
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 700;
  color: #ed5400;
}

.sec04 .close p:nth-child(3){
  margin-left: -10px;
}

.sec04 .close .last{
  font-size: 18px;
}

@media screen and (max-width:768px) {
  .sec04 h2{
    margin-top: -10px;
  }
  .sec04 h2 img{
    width: 100%;
  }
}
@media screen and (max-width:430px) {
  .sec04 h2{
    padding: 20px 0;
  }
  .sec04 p{
    font-size: 1.8rem;
  }
  .sec04 .tel a {
    font-size: 5rem;
    margin-top: -1rem;
  }
  .sec04 .contents {
    margin: 2rem auto;
  }
}
