/* Meyer’s Reset CSS v2.0 */
/* http://meyerweb.com/eric/tools/css/reset/ */
/* License: none (public domain) */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.floatbtn {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 999;
}
.floatbtn img {
  min-width: 100px;
  width: 20vw;
  max-width: 200px;
}
.floatbtn div {
  display: block;
  text-decoration: none;
}
.floatbtn:hover {
  opacity: 0.85;
}
.FV {
  height: 600px; /* 全画面表示 */
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(../images/backimg01.png);
}
.fvbox1 {
  right: 20px;
  height: 500px;
  width: 100vw;
  max-width: 900px;
  position: absolute;
  border-radius: 20px;
  background: url(../images/FV.png);
  background-position: 70% 15%;
}
.fvbox2 {
  left: 10%;
  top: 30%;
  position: absolute;
}
.fvbox2 img {
  width: 40%;
  min-width: 400px;
}
@media (max-width: 960px) {
  .fvbox1 {
    right: 5vw;
    width: 90vw;
    height: 500px;
    position: absolute;
    border-radius: 20px;
    background: url(../images/FV.png);
    background-position: 70% 20%;
  }
  .fvbox2 {
    left: 3%;
    top: 20%;
    position: absolute;
  }
  .fvbox2 img {
    width: 70%;
    min-width: 200px;
  }
}
@media (max-width: 768px) {
  .FV {
    height: 550px; /* 全画面表示 */
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .fvbox1 {
    top: 100px;
    right: 0px;
    width: 80vw;
    height: 450px;
    position: absolute;
    border-radius: 20px 0px 0px 20px;
    background: url(../images/FV.png);
    background-position: 65% -30px;
    background-size: auto 600px;
  }
  .fvbox2 {
    left: 5%;
    top: 90px;
    position: absolute;
  }
  .fvbox2 img {
    width: 60%;
    min-width: 100px;
  }
}
/* ベーススタイル */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}
header h1 {
  font-size: 2.5em;
}
header p {
  font-size: 1.2em;
  margin-top: 10px;
}
.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background: #333;
  color: #fff;
  text-decoration: none;
  margin-top: 20px;
  border-radius: 5px;
}
.services h2, .contact h2 {
  text-align: center;
  font-size: 2em;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.card {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 5px;
  width: 100%;
  max-width: 300px;
  text-align: center;
}
.contact form button {
  background: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
footer {
  background: #FF5800;
  color: #fff;
  text-align: center;
  padding: 20px 0px;
}
/* レスポンシブスタイル */
@media (max-width: 768px) {
  header h1 {
    font-size: 2em;
  }
  .service-cards {
    flex-direction: column;
    align-items: center;
  }
  .cta-button {
    font-size: 1em;
  }
}
--- /* リセット */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
/* ベーススタイル */
header {
  color: #707070;
  padding: 20px 0px;
  text-align: left;
}
.header-content {
  display: flex;
  align-items: center;
  margin: 0px auto;
  padding: 0px 20px;
}
/* ロゴ画像 */
.logo {
  width: 220px; /* ロゴのサイズ */
  height: auto;
  margin-right: 20px; /* テキストとの間の余白 */
}
/* テキスト部分 */
.header-text h1 {
  font-size: 1.5em;
  margin-bottom: 5px;
}
.header-text p {
  font-size: 1em;
}
/* レスポンシブスタイル */
@media (max-width: 768px) {
  .header-content {}
  .logo {
    width: 120px; /* ロゴのサイズ */
    height: auto;
    margin-right: 20px; /* テキストとの間の余白 */
  }
  .header-text p {
    font-size: 0.7em;
  }
}
/* 見出し */
.section01 {
  margin: 0px auto;
  padding: 10px 0px;
  background-color: #FF5800;
  color: #fff;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
}
.section02 {
  margin: 0px auto;
  padding: 10px 0px;
  background-color: #732C0E;
  color: #fff;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
}
.section03 {
  margin: 0px auto;
  padding: 10px 0px;
  background-color: #FF5800;
  color: #fff;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  width: 90%;
  max-width: 1160px;
}
.section04 {
  margin: 0 auto;
  padding: 10px 0px;
  background-color: #FFEEC9;
  color: #707070;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  width: 90%;
  max-width: 1160px;
}
/* 選ばれる理由 */
.reason {
  background-color: #FFEEC9;
}
.reason-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0px;
  background: #FFEEC9;
}
.reason-box {
  background: #FFFEFD;
  padding: 30px;
  border-radius: 5px;
  width: 100%;
  max-width: 570px;
  text-align: center;
  border-radius: 20px;
  position: relative;
}

.reason-icon{
  left: -2%;
  top:-2%;
  min-width: 60px;
  width: 20%;
  max-width: 100px;
  
  position: absolute;}


.reason-box p {
  padding-top: 20px;
  text-align: left;
}

@media (min-width: 960px) {.reason-box h3 {
height: 100px;
  }}

@media (max-width: 960px) {.reason-box h3 {
padding-bottom: 10px;
  }}

.reason-box h3 {
  margin-left: 15%;
  font-size: 1.5em;
  color: #732C0E;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  text-align: left;
}
.reason-box img {
  width: 100%;
}
.reason-box strong {
  background: #F5FF00;
}
.reason-title {}
/* セクション区切り */
.section-arrow {
  background: #FFF7EF;
  position: relative;
  height: 100px;
}
.section-arrow:before {
  content: "";
  position: absolute;
  height: 100px;
  width: 100%;
  clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
  background-color: #FFEEC9;
  top: 0px;
}
/* セクション区切り */
.section-arrow {
  background: #FFF7EF;
  position: relative;
  height: 100px;
}
.section-arrow:before {
  content: "";
  position: absolute;
  height: 100px;
  width: 100%;
  clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
  background-color: #FFEEC9;
  top: 0px;
}
.arrow {
  position: relative;
}
.arrow-02 {
  position: relative;
  padding-bottom: 30px;
  background: #FFEEC9;
}
.arrow-03 {
  position: relative;
  padding-bottom: 30px;
  background: #FFEEC9;
}
.arrow-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
}
.arrow-text h2 {
  text-align: center;
  color: #707070;
  font-size:min(5.5vw, 2em);
}
.arrow-text .under {
  border-bottom: dashed 2px #707070;
}
.section-arrow02 {
  background: #FFEEC9;
  position: relative;
  height: 140px;
}
.section-arrow02:before {
  content: "";
  position: absolute;
  height: 140px;
  width: 100%;
  clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
  background-color: #FFFFFF;
  top: 0px;
}
.section-arrow03 {
  background: #FFEEC9;
  position: relative;
  height: 140px;
}
.section-arrow03:before {
  content: "";
  position: absolute;
  height: 140px;
  width: 100%;
  clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
  background-color: #FFF7EF;
  top: 0px;
}
.contact01 {
  background: #FFF7EF;
}
.contact01 .container {
  background: #FFF7EF;
}
.contact01 .container h2 {
  color: #FF5800;
  font-size: 2em;
  text-align: center;
}
.contact01 .container p {
  text-align: center;
  padding: 10px 0px;
}
/* ボタンのスタイル */
.btn-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 20px 0px 40px 0px;
}
.btn-box img {
  width: 90%;
  border-radius: 16px;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
  position: relative;
  top: 0px;
}
.btn-box img:hover {
  top: -10px;
  transition: 0.3s;
}
.btn-box {
  border-radius: 5px;
  width: 100%;
  max-width: 550px;
  text-align: center;
  border-radius: 20px;
}
.insecurity01 {
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  text-align: center;
  background: #ffffff;
  padding: 20px;
}
.insecurity-cards {
  padding: 30px;
  background: #F2F2F2;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
.insecurity-card01 {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
}
.insecurity-card01 img {
  width: 100%;
}
.insecurity-card02 {
  width: 100%;
  max-width: 570px;
  text-align: left;
}
.insecurity-card02 img {
  width: 100%;
}
.insecurity02 {
  background: #ffffff;
  padding-bottom: 30px;
}
.contact form button {
  background: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.features01 {
  background: #FFEEC9;
}
.features-cards {
  padding: 30px 0px 0px 0px;
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.features-card01 {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
}
.features-card01 img {
  width: 100%;
}
.features-card02 {
  width: 100%;
  max-width: 570px;
  text-align: left;
}
.features-card02 h3 {
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  font-size: 1.5em;
  color: #732C0E;
  padding: 20px;
}
.features-card02 p {
  padding: 0px 20px 20px 20px;
}
.features-card02 img {
  width: 100%;
}
.features01-top {
  background: #FFEEC9;
  padding-top: 20px;
}
.features-cards-top {
  border-radius: 20px 20px 0px 0px;
  padding: 30px 0px 0px 0px;
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.features01-bot {
  background: #FFEEC9;
  padding-bottom: 50px;
}
.features-cards-bot {
  border-radius: 0px 0px 20px 20px;
  padding: 30px 0px 30px 0px;
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.features02 h2 {
  text-align: center;
  font-size: 2em;
}
.features02 {
  background: #FFEEC9;
}
.voice-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  background: #FFF7EF;
  padding-bottom: 30px;
}
.voice-card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  width: 100%;
  max-width: 300px;
  text-align: center;
}
.voice-card img {
  width: 30%;
  padding-bottom: 10px;
}
.voice-card .name {
  padding-bottom: 10px;
  text-align: center;
}
.voice-card .coment {
  padding-bottom: 10px;
  text-align: left;
}
.section05 {
  margin: 0px auto;
  padding: 10px 0px;
  color: #707070;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  width: 90%;
  max-width: 1160px;
}
.section05 h2 {
  text-align: center;
  font-size: 2em;
}
.voice {
  background-color: #FFF7EF;
}
.contact02 {
  background: #FFEEC9;
  padding-bottom: 30px;
}
.contact02 .container {
  background: #ffffff;
  border-radius: 20px;
  padding:0px 20px;
}

.contact02 .container h2 {
  color: #FF5800;
  font-size: 2em;
  text-align: center;
  padding: 30px 0px 0px 0px;
}
.contact02 .container p {
  text-align: center;
  padding: 10px 20px;
}
/* ボタンのスタイル */
.tell-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 0px 0px 40px 0px;
}
.tell-box img {
  width: 90%;
  border-radius: 16px;
  position: relative;
  top: 0px;
}
.tell-box {
  border-radius: 5px;
  width: 100%;
  max-width: 550px;
  text-align: center;
  border-radius: 20px;
}
.tell-box p {
  font-size: 1.5em;
}
.caption-FV {
  border-radius: 20px;
  padding: 30px 0px 0px 0px;
  background: #FFFEFD;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.caption-card01 {
  max-width: 250px;
}
.caption-card01 img {
  width: 100%;
}
.caption-card02 {
  width: 100%;
  max-width: 700px;
  text-align: left;
}
.caption-card02 p {
  text-align: left;
  padding: 10% 20px 10% 20px;
}
.caption-top {
  background: #FFF7EF;
  padding: 20px 0px 40px 0px;
}
.caption-title {
  margin: 0px auto;
  padding: 10px 0px;
  background-color: #FFF7EF;
  color: #fff;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
}
.caption-title h2 {
  padding: 0px 20px;
  font-size: 2.3em;
  color: #656565;
}
.caption-title h2 strong {
  color: #FF5800;
}