@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  font-size: 16px;
  color: #505050;
}

.site-header {
  min-width: 100%;
  background-color: #5AA8E7;
  border-radius: 0 0 150px 0;
  position: relative; /* サークルの絶対位置指定用 */
  transition: top 0.3s ease; /* スムーズな固定用のトランジション */
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 10px 20px;
  position: relative; /* サークルの親要素を基準にするためのrelative */
  background-color: #FFFFFF;
  /* サークルの背景を左上に移動 */
}
.site-header .container .circle-bg {
  position: absolute;
  top: -90px;
  left: -30px;
  width: 270px;
  height: 260px;
  background-color: #FFF9AF; /* 背景の飾りの黄色 */
  border-radius: 50%; /* 完全な円形に */
  z-index: 0; /* ロゴの背後に配置 */
  animation: rotate 10s linear infinite; /* 5秒で360度回転、無限ループ */
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.site-header .container .logo {
  display: flex;
  align-items: center;
}
.site-header .container .logo a {
  z-index: 1;
}
.site-header .container .logo a img {
  width: 180px;
  height: auto;
  margin-right: 10px;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .site-header .container .main-nav {
    display: none;
  }
}
.site-header .container .main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}
.site-header .container .main-nav ul li a {
  text-decoration: none;
  font-weight: bold;
}
.site-header .container .main-nav ul li:last-child {
  background-color: #EE6AA0;
  color: #FFF;
  padding: 5px 16px;
  border-radius: 20px;
  margin-left: 20px;
}
.site-header .container .main-nav ul li:last-child a {
  color: #FFF;
}
.site-header .container .main-nav ul li:last-child a:hover {
  color: #FFF;
}
.site-header .container .main-nav ul li:last-child a img {
  width: 20px;
  margin-right: 5px;
  vertical-align: middle;
}
.site-header .fixed-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
  border-radius: 15px;
  border-radius: 0;
}
.site-header .fixed-container .circle-bg {
  display: none;
}

.nav-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 60px;
  right: 20px;
  width: 80%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.nav-menu .nav-cont {
  width: 100%;
  padding: 30px;
  background-color: rgba(90, 168, 231, 0.9098039216);
  border-radius: 15px;
}
.nav-menu .nav-cont ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-menu .nav-cont ul li {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  background-color: #5AA8E7;
}
.nav-menu .nav-cont ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
}

/* ハンバーガーメニューのスタイル */
.hamburger-menu {
  display: none;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
}
.hamburger-menu span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px 0;
  background-color: #2E7ABD;
}

/* メディアクエリ: 640px以下でハンバーガーメニューを表示 */
@media screen and (max-width: 834px) {
  .hamburger-menu {
    display: block; /* ハンバーガーメニューを表示 */
  }
  .nav-menu.open {
    display: flex; /* 開いたらナビゲーションを表示 */
  }
}
.hero {
  text-align: center;
  padding: 0 20px;
  color: #fff;
}
.hero .hero_bg {
  background-image: url(/images/index/hd_img01.png);
  max-width: 1200px;
  margin: 0 auto;
  background-size: 60%;
  background-position-y: 21%;
  background-position-x: right;
  background-repeat: no-repeat;
  padding: 50px 0;
}
@media screen and (min-width: 641px) and (max-width: 834px) {
  .hero .hero_bg {
    background-position-y: 40px;
    background-size: 60%;
  }
}
.hero .hero_logo img {
  position: absolute;
  top: 90px;
  left: 20px;
}
.hero .hero_biz {
  background-image: url(/images/index/biz_bg.png);
  background-repeat: no-repeat;
  height: 76px;
  margin: 0 auto;
  width: 190px;
}
.hero p {
  color: #2E7ABD;
  font-weight: 700;
  padding: 0.7em;
  font-size: 24px;
  font-family: Zen Maru Gothic;
}
.hero .hero_cont {
  width: 100%;
}
.hero .hero_cont .hero_cont_text {
  width: 80%;
  text-align: left;
  margin-top: 1em;
}
.hero h1 {
  font-size: 96px;
  margin-bottom: 20px;
  font-family: Zen Maru Gothic;
  font-weight: 900;
  line-height: 1.2;
}
@media screen and (min-width: 641px) and (max-width: 834px) {
  .hero h1 {
    font-size: 10vw;
    text-shadow: 5px 3px 10px #5aa8e7;
    line-height: 1;
  }
  .hero h1 span.mvh1_48 {
    font-size: 6vw;
  }
  .hero h1 span.mvh1_64 {
    font-size: 9vw;
  }
  .hero h1 span.mvh1_yl {
    font-size: 128px;
  }
}
.hero h1 .mvh1_48 {
  font-size: 48px;
  font-weight: 900;
}
.hero h1 .mvh1_64 {
  font-size: 64px;
  font-weight: 900;
}
.hero h1 .mvh1_yl {
  color: #FBFF4E;
  font-weight: 900;
  font-size: 128px;
  display: inline-block; /* インライン要素でもアニメーションが適用されるように */
  animation: scale-up-down 4s infinite ease-in-out; /* アニメーションの適用 */
}
@keyframes scale-up-down {
  0% {
    transform: scale(1); /* 元のサイズ */
  }
  50% {
    transform: scale(1.1); /* 120%に拡大 */
  }
  100% {
    transform: scale(1); /* 元のサイズに戻る */
  }
}
.hero .info-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 25px;
}
@media screen and (max-width: 420px) {
  .hero .info-boxes {
    flex-direction: column;
  }
  .hero .info-boxes div.info-box {
    min-width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}
.hero .info-boxes .info-box {
  display: flex;
  flex-direction: row; /* アイコンとテキストを縦に並べる */
  justify-content: left;
  align-items: center;
  background-color: #fff;
  border-radius: 15px; /* 角を丸くする */
  padding: 10px 20px;
  width: calc(33.3333333333% - 20px);
  max-width: 280px;
  text-align: center;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2); /* 影をつけて立体感を */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* ホバー時のアニメーション */
}
@media screen and (max-width: 834px) {
  .hero .info-boxes .info-box {
    flex-direction: column;
    min-width: 180px;
  }
}
@media screen and (max-width: 640px) {
  .hero .info-boxes .info-box {
    flex-direction: column;
    min-width: 180px;
    width: calc(50% - 20px);
  }
}
.hero .info-boxes .info-box:hover {
  transform: translateY(-5px); /* ホバー時に浮き上がるエフェクト */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* ホバー時に影を強く */
}
.hero .info-boxes .info-box .info-icon {
  width: 45px; /* アイコンのサイズ */
  height: auto;
  margin: 10px; /* アイコンとテキストの間にスペース */
}
.hero .info-boxes .info-box span {
  color: #2E7ABD; /* テキストの青色 */
  font-size: 20px;
  font-weight: bold; /* 太字で目立たせる */
}
@media screen and (max-width: 640px) {
  .hero .hero_bg {
    background-image: none;
  }
  .hero .hero_bg .hero_cont .hero_biz {
    margin: 0 0 0 auto;
  }
  .hero .hero_bg .hero_cont .hero_cont_text {
    width: 100%;
  }
  .hero .hero_bg h1 {
    font-size: 13vw;
    line-height: 1;
  }
  .hero .hero_bg h1 .mvh1_48 {
    font-size: 8vw;
  }
  .hero .hero_bg h1 .mvh1_64 {
    font-size: 10vw;
  }
  .hero .hero_bg h1 .mvh1_yl {
    font-size: 20vw;
  }
}

#contents_wrap {
  padding: 0 10px;
  min-width: 320px;
}
#contents_wrap #contents {
  width: 100%;
}
#contents_wrap #contents #main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
#contents_wrap #contents #main #col_main {
  width: 100%;
}

section {
  margin-top: 50px;
}
section h2.mail.title {
  display: none;
}
section .h2_title article {
  margin-bottom: 50px;
}
section .h2_title article h2 {
  color: #2E7ABD;
  font-weight: 900;
  font-size: 36px;
}
@media screen and (max-width: 640px) {
  section .h2_title article h2 {
    font-size: 6vw;
  }
}
section .h2_title article h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: #2E7ABD; /* 青いライン */
  margin: 10px auto 16px;
}
section .h2_title article div {
  font-weight: bold;
}
section .jisseki_cont {
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  margin: 0 auto 80px auto;
}
section .jisseki_cont .box {
  width: calc(50% - 30px);
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
  border-radius: 15px;
  max-width: 460px;
}
@media screen and (max-width: 640px) {
  section .jisseki_cont {
    flex-direction: column;
  }
  section .jisseki_cont .box {
    width: 100%;
  }
}
section .cta-button {
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
  border-radius: 15px;
  align-items: center;
  padding: 15px 1em;
  background-color: #5AA8E7; /* メインの青いカラー */
  border-radius: 50px; /* 角を丸くする */
  text-decoration: none; /* アンダーラインを削除 */
  transition: background-color 0.3s ease, transform 0.3s ease; /* トランジションを設定 */
  cursor: pointer;
  margin: 30px auto 50px auto;
  max-width: 480px;
  width: 90%;
  animation: floating 3s ease-in-out infinite;
}
section .cta-button span {
  display: inline-block;
  animation: rotate 5s infinite;
}
@keyframes rotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg); /* 一回転 */
  }
}
section .cta-button:hover {
  background-color: #3498db; /* ホバー時に少し濃い青に */
  transform: translateY(-3px); /* ホバー時に少し浮かせる */
}
section .cta-button a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
section .cta-button a .cta-icon {
  margin-left: 15px;
  font-size: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}
section .cta-button a .cta-icon img {
  width: 20px;
  vertical-align: middle;
}
@media screen and (max-width: 380px) {
  section .cta-button a .cta-icon img {
    display: none;
  }
}
section .cta-button a:hover .cta-icon {
  transform: translateX(5px); /* ホバー時に矢印を右に動かす */
}
section .worry_cont_bg {
  background: linear-gradient(to right, rgba(90, 168, 231, 0.2705882353), #EBF6FF, rgba(90, 198, 231, 0.2705882353));
  margin: 80px calc(50% - 50vw) 0;
  padding: 50px 20px;
  min-height: 100vh;
}
section .worry_cont_bg .worry_cont {
  max-width: 1200px;
  margin: 0 auto 30px auto;
  display: flex;
  position: relative;
}
section .worry_cont_bg .worry_cont div.box > article > h3 {
  display: none;
}
section .worry_cont_bg .worry_cont .box:nth-child(1) {
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 80%;
  padding: 30px;
  position: relative;
}
section .worry_cont_bg .worry_cont .box:nth-child(1) img {
  max-width: 160px;
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
}
section .worry_cont_bg .worry_cont .box:nth-child(1) div {
  width: 100%;
}
section .worry_cont_bg .worry_cont .box:nth-child(1) div > h3 {
  font-size: 24px;
  font-weight: bold;
  color: #505050;
}
section .worry_cont_bg .worry_cont .box:nth-child(1) div > h3::after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px dashed #505050;
  margin: 10px auto 16px;
}
section .worry_cont_bg .worry_cont .box:nth-child(2) {
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
  border-radius: 15px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 80%;
  padding: 30px;
  margin-left: auto;
  transform: translatey(-20px);
  position: relative;
  overflow: inherit !important;
}
section .worry_cont_bg .worry_cont .box:nth-child(2) img {
  width: 160px;
  position: absolute;
  bottom: 10px;
}
section .worry_cont_bg .worry_cont .box:nth-child(2) div.worry_cont_text {
  font-size: 24px;
  color: #EE6AA0;
  font-weight: bold;
  margin-right: 7em;
}
@media screen and (max-width: 640px) {
  section .worry_cont_bg .worry_cont .box:nth-child(1) {
    flex-direction: column;
    width: 90%;
    gap: 20px;
  }
  section .worry_cont_bg .worry_cont .box:nth-child(1) img {
    margin: 0 auto;
    max-width: 140px;
  }
  section .worry_cont_bg .worry_cont .box:nth-child(1) div > h3 {
    font-size: 4.5vw;
  }
  section .worry_cont_bg .worry_cont .box:nth-child(2) {
    flex-direction: column;
    width: 90%;
    gap: 20px;
    transform: translateY(-10px);
  }
  section .worry_cont_bg .worry_cont .box:nth-child(2) img {
    position: relative;
    margin: 0 auto;
    max-width: 140px;
  }
  section .worry_cont_bg .worry_cont .box:nth-child(2) div.worry_cont_text {
    margin-right: 0;
    font-size: 16px;
  }
}
section .why_cont_bg {
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(/images/index/whybg1.png);
  background-size: cover;
  background-position: center;
  margin: 0 calc(50% - 50vw);
  padding: 50px 20px;
  min-height: 100vh;
}
section .why_cont_bg .why_cont_wrap {
  background-color: rgba(255, 255, 255, 0.7019607843);
  border-radius: 15px;
  max-width: 1070px;
  margin: 0 auto;
  padding: 50px 15px 60px 15px;
}
section .why_cont_bg .why_cont_wrap .why_cont {
  max-width: 1000px;
  margin: 0 auto;
  gap: 20px;
}
section .why_cont_bg .why_cont_wrap .why_cont div.box {
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
  border-radius: 15px;
  display: flex;
  flex-direction: row-reverse;
  padding: 20px 20px 30px 20px;
}
section .why_cont_bg .why_cont_wrap .why_cont div.box img {
  border: 5px solid #5AA8E7;
  max-width: 42vw;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 834px) {
  section .why_cont_bg .why_cont_wrap .why_cont div.box img {
    border: none;
  }
}
section .why_cont_bg .why_cont_wrap .why_cont div.box > div {
  width: 50%;
  padding: 15px;
  /* アニメーション用 */
  /* アニメーション用 */
}
section .why_cont_bg .why_cont_wrap .why_cont div.box > div .why_reason {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section .why_cont_bg .why_cont_wrap .why_cont div.box > div .why_reason span, section .why_cont_bg .why_cont_wrap .why_cont div.box > div .why_reason h3 {
  opacity: 0; /* 初期状態で非表示 */
  transform: translateY(20px); /* 少し下に */
  transition: opacity 0.8s ease, transform 0.8s ease; /* スムーズなアニメーション */
}
section .why_cont_bg .why_cont_wrap .why_cont div.box > div .why_reason.in-view span, section .why_cont_bg .why_cont_wrap .why_cont div.box > div .why_reason.in-view h3 {
  opacity: 1;
  transform: translateY(0);
}
section .why_cont_bg .why_cont_wrap .why_cont div.box > div .why_reason span {
  transition-delay: 0.3s; /* 遅れて表示 */
}
section .why_cont_bg .why_cont_wrap .why_cont div.box > div .why_reason h3 {
  transition-delay: 0.6s; /* さらに遅れて表示 */
}
section .why_cont_bg .why_cont_wrap .why_cont div.box > div .why_reason {
  text-align: center;
  max-width: 300px;
  margin: 15px auto 30px auto;
  position: relative;
  z-index: 0;
}
section .why_cont_bg .why_cont_wrap .why_cont div.box > div .why_reason::before {
  content: "";
  position: absolute;
  top: 95px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background-color: #FFE2EF;
  border-radius: 50%;
  z-index: -1;
}
section .why_cont_bg .why_cont_wrap .why_cont div.box > div .why_reason span {
  font-size: 24px;
  font-weight: bold;
}
section .why_cont_bg .why_cont_wrap .why_cont div.box > div .why_reason span > span {
  font-size: 48px;
  font-weight: bold;
}
section .why_cont_bg .why_cont_wrap .why_cont div.box > div .why_reason h3 {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  section .why_cont_bg .why_cont_wrap .why_cont div.box {
    flex-direction: column-reverse;
  }
  section .why_cont_bg .why_cont_wrap .why_cont div.box img {
    width: 100%;
    max-width: 100%;
  }
  section .why_cont_bg .why_cont_wrap .why_cont div.box div {
    width: 100%;
    max-width: 100%;
  }
}
section .adv_cont_bg {
  background: linear-gradient(to bottom, #FFEDED, #fff6f6, #ffffff);
  margin: 0 calc(50% - 50vw);
  padding: 50px 20px 20px 20px;
}
section .adv_cont_bg .adv_cont_wrap {
  padding: 50px 15px 30px 15px;
}
section .adv_cont_bg .adv_cont_wrap .adv_cont {
  max-width: 1000px;
  margin: 0 auto;
  gap: 35px;
  justify-content: center;
}
section .adv_cont_bg .adv_cont_wrap .adv_cont div.box {
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 20px 20px 30px 20px;
  border-radius: 0;
  width: calc(33.3333333333% - 35px);
  min-width: 280px;
}
section .adv_cont_bg .adv_cont_wrap .adv_cont div.box article {
  display: flex;
  flex-direction: column;
}
section .adv_cont_bg .adv_cont_wrap .adv_cont div.box article img {
  order: 2;
  margin: 20px auto;
}
section .adv_cont_bg .adv_cont_wrap .adv_cont div.box article h3 {
  order: 1;
  font-size: 24px;
  font-weight: bold;
  color: #2E7ABD;
  text-align: center;
  position: relative;
  display: inline-block;
  z-index: 0;
}
section .adv_cont_bg .adv_cont_wrap .adv_cont div.box article h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px; /* 文字の下に線を引くための位置調整 */
  width: 100%;
  height: 15px;
  background-color: rgba(255, 235, 59, 0.6431372549); /* アンダーラインの色（黄色） */
  z-index: -1; /* 文字の下に表示 */
}
section .adv_cont_bg .adv_cont_wrap .adv_cont div.box article div {
  order: 3;
}
@media screen and (min-width: 680px) and (max-width: 980px) {
  section .adv_cont_bg .adv_cont_wrap .adv_cont div.box {
    width: calc(50% - 35px);
  }
}
@media screen and (max-width: 680px) {
  section .adv_cont_bg .adv_cont_wrap .adv_cont div.box {
    width: 90%;
  }
}
section .faq_cont_bg {
  background: linear-gradient(to right, rgba(90, 168, 231, 0.2705882353), #EBF6FF, rgba(90, 198, 231, 0.2705882353));
  margin: 0 calc(50% - 50vw);
  padding: 50px 20px;
  min-height: 100vh;
}
section .faq_cont_bg .faq_cont_wrap {
  background-color: rgba(255, 255, 255, 0.7019607843);
  border-radius: 15px;
  max-width: 1070px;
  margin: 0 auto;
  padding: 50px 15px 60px 15px;
}
section .faq_cont_bg .faq_cont_wrap .faq_bg2 {
  background-color: #F4F4F4;
  max-width: 1000px;
  padding: 30px;
  border-radius: 15px;
}
@media screen and (max-width: 640px) {
  section .faq_cont_bg .faq_cont_wrap .faq_bg2 {
    padding: 0;
  }
  section .faq_cont_bg .faq_cont_wrap .faq_bg2 div.faq_cont {
    padding: 20px 10px;
  }
}
section .faq_cont_bg .faq_cont_wrap .faq_bg2 .faq_cont {
  max-width: 900px;
  margin: 10px auto;
  gap: 20px;
  background-color: #FFF;
  border: 2px solid #5AA8E7;
  padding: 1em;
}
section .faq_cont_bg .faq_cont_wrap .faq_bg2 .faq_cont ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
section .faq_cont_bg .faq_cont_wrap .faq_bg2 .faq_cont ul li {
  padding: 10px;
}
section .faq_cont_bg .faq_cont_wrap .faq_bg2 .faq_cont ul li:first-child {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
}
section .faq_cont_bg .faq_cont_wrap .faq_bg2 .faq_cont ul li:first-child img {
  margin-right: 10px;
}
@media screen and (max-width: 380px) {
  section .faq_cont_bg .faq_cont_wrap .faq_bg2 .faq_cont ul li:first-child img {
    display: none;
  }
}
section .faq_cont_bg .faq_cont_wrap .faq_bg2 .faq_cont ul li:first-child .toggle-button {
  background-color: #FFF;
  color: #2E7ABD;
  border: none;
  width: 30px;
  height: 30px;
  font-size: 30px;
  cursor: pointer;
  margin: 0 1em 0 auto;
}
@media screen and (max-width: 640px) {
  section .faq_cont_bg .faq_cont_wrap .faq_bg2 .faq_cont ul li:first-child .toggle-button {
    margin: 0 0 0 auto;
  }
}
section .faq_cont_bg .faq_cont_wrap .faq_bg2 .faq_cont ul li:nth-child(2) {
  display: none;
  padding-top: 15px;
  padding-left: 10px;
  border-top: 2px dashed #5AA8E7;
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  width: 100%;
}
section .faq_cont_bg .faq_cont_wrap .faq_bg2 .faq_cont ul li:nth-child(2) img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
  margin-right: 10px;
}
@media screen and (max-width: 380px) {
  section .faq_cont_bg .faq_cont_wrap .faq_bg2 .faq_cont ul li:nth-child(2) img {
    display: none;
  }
}
section .form_cont_bg .form_cont_wrap {
  margin: 50px auto;
  max-width: 900px;
  padding: 30px;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
  border-radius: 15px;
  border-radius: 0;
}
@media screen and (max-width: 640px) {
  section .form_cont_bg .form_cont_wrap {
    padding: 30px 15px;
  }
}
section .form_cont_bg .form_cont_wrap div.form_text {
  margin: 0 auto 20px auto;
  width: 100%;
}
@media screen and (max-width: 640px) {
  section .form_cont_bg .form_cont_wrap div.form_text > div {
    text-align: left !important;
  }
}
section .form_cont_bg .form_cont_wrap div.form_wrap dl dt {
  padding: 15px;
}
section .form_cont_bg .form_cont_wrap div.form_wrap dl dd {
  padding: 15px;
}
section .cta_tel_bg {
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(/images/index/tel_bg.png);
  background-size: cover;
  background-position: center;
  margin: 30px calc(50% - 50vw) 60px;
  padding: 50px 20px;
  min-height: auto;
  background-attachment: fixed;
}
section .cta_tel_bg .cta_tel_wrap {
  background-color: rgba(255, 255, 255, 0.7019607843);
  border-radius: 15px;
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 15px 60px 15px;
}
section .cta_tel_bg .cta_tel_wrap .cta_tel {
  max-width: 1000px;
  margin: 0 auto;
  gap: 20px;
}
section .cta_tel_bg .cta_tel_wrap .cta_tel h3 {
  color: #2E7ABD;
  font-weight: 900;
  font-size: 36px;
}
@media screen and (max-width: 640px) {
  section .cta_tel_bg .cta_tel_wrap .cta_tel h3 {
    font-size: 6vw;
  }
}
section .cta_tel_bg .cta_tel_wrap .cta_tel h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: #2E7ABD; /* 青いライン */
  margin: 10px auto 16px;
}
section .cta_tel_bg .cta_tel_wrap .cta_tel .f_tel {
  font-size: 48px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #505050;
}
section .cta_tel_bg .cta_tel_wrap .cta_tel .f_tel a::before {
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  margin-right: 10px;
  background-image: url(/images/index/call.png); /* ここに画像のパスを指定 */
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 640px) {
  section .cta_tel_bg .cta_tel_wrap .cta_tel .f_tel {
    font-size: 9vw;
  }
}
section .gpt_bg {
  background: linear-gradient(to right, rgba(90, 168, 231, 0.2705882353), #EBF6FF, rgba(90, 198, 231, 0.2705882353));
  margin: 0 calc(50% - 50vw);
  padding: 50px 20px;
}
section .gpt_bg .gpt_wrap {
  background-color: rgba(255, 255, 255, 0.7019607843);
  border-radius: 15px;
  max-width: 1070px;
  margin: 0 auto;
  padding: 20px 15px 20px 15px;
}
section .gpt_bg .gpt_wrap .gpt_cont {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  font-size: 14px;
}
section .gpt_bg .gpt_wrap .gpt_cont p:nth-child(1) {
  width: 80%;
}
@media screen and (max-width: 834px) {
  section .gpt_bg .gpt_wrap .gpt_cont {
    flex-direction: column-reverse;
  }
  section .gpt_bg .gpt_wrap .gpt_cont p:nth-child(1) {
    width: 100%;
    margin-top: 10px;
  }
}

footer {
  background-color: #5AA8E7 !important;
  min-width: 320px;
}
footer .footer {
  max-width: 1200px;
  margin: 0 auto;
  color: #FFF;
  background-color: #5AA8E7;
}
footer .footer .footer-container {
  padding: 20px;
}
footer .footer .footer-container .col3 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer .footer .footer-container .col3 .f-logo {
  max-width: 140px;
}
footer .footer .footer-container .col3 nav .nav-list {
  display: inline-flex;
}
footer .footer .footer-container .col3 nav .nav-list .nav-list__item {
  margin-right: 1em;
}
footer .footer .footer-container .col3 nav .nav-list .nav-list__item a {
  color: #FFF;
}
footer .footer .footer-container .col3 nav .nav-list .nav-list__item a:visited {
  color: #FFF;
}
footer .footer .footer-container .col3 nav .company_ft {
  margin: 1em 0;
}
footer .footer .footer-container .col3 nav .company_ft span {
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  footer .footer .footer-container .col3 {
    flex-direction: column;
  }
  footer .footer .footer-container .col3 .f-logo {
    margin-bottom: 20px;
  }
  footer .footer .footer-container .col3 nav {
    font-size: 14px;
  }
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #5AA8E7;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  z-index: 1000;
  text-orientation: upright;
  width: 45px;
  height: 45px;
}
#back-to-top:hover {
  background-color: #2E7ABD;
}

@media screen and (min-width: 641px) and (max-width: 834px) {
  body {
    font-size: 100%;
  }
}
/* TOP Blog コンテンツ */
.blog_cont {
  margin: 0 auto 50px auto;
  max-width: 900px;
}
.blog_cont .blog_list {
  border: none;
}
.blog_cont .blog_list .blog_photo {
  display: none;
}
.blog_cont .blog_list .blog_text a.more {
  display: none;
}/*# sourceMappingURL=common_style.css.map */