@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

a {
  color: inherit;
  display: inline-block;
  outline: none;
  text-decoration: none;
}

img {
  border: none;
  height: 100%;
  max-width: 100%;
  vertical-align: bottom;
  width: 100%;
}

video {
  height: auto;
  max-width: 100%;
  width: 100%;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

ul,
ol {
  list-style: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace, sans-serif;
  font-size: inherit;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: "";
  content: none;
}

address {
  font-style: normal;
}

html {
  font-size: 62.5%;
  overflow: scroll;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #282727;
  font-family: "Hiragino Sans", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  min-width: 1128px;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.5rem;
    min-width: initial;
  }
}

table {
  border: 1px solid inharit;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
}

th,
td {
  border: 1px solid inharit;
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
}

/*
ここからフォーム
================================*/
form {
  margin: 0;
  padding: 0;
}

form button {
  -webkit-appearance: none;
  -webkit-transition: all 0.3s ease 0s;
  background-color: #46c5e8;
  background-image: none;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin: 0;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  width: auto;
}

form button:hover,
form button:focus {
  outline: none;
}

form button:hover {
  opacity: 0.6;
}

form button ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input,
textarea {
  -webkit-appearance: none;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
  font-family: inherit;
  font-size: 1.6rem;
  padding: 8px;
  width: 100%;
}

textarea:hover,
textarea:focus {
  outline: none;
}

textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

textarea ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

input[type="submit"],
input[type="button"] {
  -webkit-appearance: none;
  -webkit-transition: all 0.3s ease 0s;
  background-color: #46c5e8;
  background-image: none;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  margin: 0;
  padding: 0.6em 2em;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  width: auto;
}

input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus {
  outline: none;
}

input[type="submit"]:hover,
input[type="button"]:hover {
  opacity: 0.6;
}

input[type="submit"] ::-moz-focus-inner,
input[type="button"] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]+span {
  cursor: pointer;
  display: inline-block;
  margin: 0 16px 0 0;
  padding: 0 0 0 30px;
  position: relative;
}

input[type="radio"]+span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  content: "";
  display: block;
  height: 26px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
}

input[type="radio"]+span::after {
  -webkit-transition: opacity 0.3s ease 0s;
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}

input[type="radio"]:checked+span::after {
  -webkit-transform: translateY(-50%);
  background: #707070;
  border-radius: 50%;
  content: "";
  display: block;
  height: 10px;
  left: 8px;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]+span {
  -webkit-transition: all 1s ease 0s;
  cursor: pointer;
  display: inline-block;
  margin: 0 16px 0 0;
  padding: 0 0 0 30px;
  position: relative;
  transition: all 1s ease 0s;
}

input[type="checkbox"]+span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  content: "";
  display: block;
  height: 26px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
}

input[type="checkbox"]+span::after {
  -webkit-transition: opacity 0.3s ease 0s;
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}

input[type="checkbox"]:checked+span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 4px solid #46c5e8;
  border-left: 4px solid #46c5e8;
  content: "";
  display: block;
  height: 15.6px;
  left: 0;
  margin-top: -0.2em;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 26px;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url(../img/arrow.svg);
  background-position: right 6px center;
  background-repeat: no-repeat;
  background-size: 24px;
  border: 1px solid #ccc;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.6rem;
  padding: 0.4em 2.4em 0.4em 0.8em;
}

select::-ms-expand {
  display: none;
}

select:focus {
  -webkit-box-shadow: none;
  border-color: #ccc;
  box-shadow: none;
  outline: none;
}

.button {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transform: skew(0);
  align-items: center;
  border-radius: 46px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 3rem;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  text-align: center;
  transform: skew(0);
}

.pc_non {
    display: none;
}
.sp_non {
    display: block;
}

@media screen and (max-width: 767px) {
  .button {
    font-size: 1.6rem;
    font-weight: 700;
  }
  .pc_non {
    display: block;
}
.sp_non {
    display: none;
}
}

.button:hover {
    color: #ffffff;
}

.button-primary {
  -webkit-transition: .3s all;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  background: -webkit-gradient(linear, left top, right top, from(#2af598), to(#009efd));
  background: -webkit-linear-gradient(left, #2af598 0%, #009efd 100%);
  background: linear-gradient(90deg, #2af598 0%, #009efd 100%);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  height: 90px;
  overflow: hidden;
  position: relative;
  transition: .3s all;
  width: 460px;
}

@media screen and (max-width: 767px) {
  .button-primary {
    height: 50px;
    width: 300px;
  }
}

.button-primary::before {
  -webkit-animation: shiny-btn1 3s ease-in-out infinite;
  animation: shiny-btn1 3s ease-in-out infinite;
  background-color: #fff;
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: -180px;
  width: 30px;
}

.button-primary:hover {
  -webkit-transform: translate(5px, 4px);
  opacity: 0.7;
  transform: translate(5px, 4px);
}

.button-black {
  -webkit-transition: .3s all;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  background: -webkit-gradient(linear, left top, right top, from(#2af598), to(#009efd));
  background: -webkit-linear-gradient(left, #2af598 0%, #009efd 100%);
  background: linear-gradient(90deg, #2af598 0%, #009efd 100%);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  height: 90px;
  overflow: hidden;
  position: relative;
  transition: .3s all;
  width: 460px;
}

@media screen and (max-width: 767px) {
  .button-black {
    height: 50px;
    width: 300px;
  }
}

.button-black::after {
  -webkit-animation: shiny-btn1 3s ease-in-out infinite;
  animation: shiny-btn1 3s ease-in-out infinite;
  background-color: #fff;
  content: '';
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: -180px;
  width: 30px;
  z-index: 0;
}

.button-black:hover {
  -webkit-transform: translate(5px, 4px);
  opacity: 0.7;
  transform: translate(5px, 4px);
}

@-webkit-keyframes shiny-btn1 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@keyframes shiny-btn1 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.header__inner {
    position: relative;
}

.header__inner .header__logo {
    max-width: 100px;
    height: auto;
    display: inline-block;
    padding: 20px;
    position: fixed;
    z-index: 10;
}

.header__inner .left_img_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    z-index: -1;
}

.header__button.pc {
    display: block;
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.header__nav.sp {
    display: none;
}

.header__button.pc .button-primary {
    width: 200px;
    height: 50px;
    font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
    header {
        position: relative;
        z-index: 5;
    }
    .header__inner .header__logo {
        padding: 10px;
        width: 90px;
    }
    .header__nav.sp {
        display: block;
        position: fixed;
        top: 10px;
        right: 10px;
    }

    .header__button.pc {
        display: none;
    }

    .header__nav.sp .button-primary {
        width: 140px;
        height: 50px;
        font-size: 1.2rem;
    }

    .header__inner .left_img_box {
        width: 80%;
    }
  }

.main_visual {
    display: flex;
    justify-content: space-between;
}

.main_visual .img_box {
    width: 50%;
    z-index: -2;
}

.main_visual .img_box img {
    width: 100%;
    height: auto;
}

.main_visual .txt_box {
    width: 70%;
    margin-right: -20%;
    padding: 4%;
    padding-top: 10%;
}

.main_visual .txt_box .text {
    font-size: 4rem;
    text-shadow: 1px 1px 2px #ffffff, 0 0 1em #ffffff, 0 0 0.2em #ffffff;
}

.main_visual .txt_box .text .bld{
    font-weight: 800;
}

.main_visual .txt_box .text.blu {
    font-size: 5.5rem;
    font-weight: 800;
    color: #009ffc;
}

.main_visual .txt_box ul {
    display: flex;
    max-width: 900px;
}

.main_visual .txt_box ul li {
    margin: 1%;
}

main {
    position: relative;
    padding-bottom: 110px;
}

.fv_right_img_box {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30%;
}

@media screen and (max-width: 767px) {
    .main_visual {
        flex-direction: column;
    }

    .main_visual .txt_box {
        order: 1;
        width: 100%;
        margin-top: -50%;
    }

    .main_visual .img_box {
        order: -1;
        width: 100%;
    }

    .main_visual .txt_box .text {
        font-size: 2.4rem;
    }

    .main_visual .txt_box .text.blu {
        font-size: 3.5rem;
    }

    .fv_right_img_box {
        width: 50%;
    }
}

.fv_un_txt {
    max-width: 800px;
    margin: auto;
    margin-bottom: 150px;
}

.fv_un_txt .txt_box {
    max-width: 550px;
    margin: auto;
    margin-bottom: 80px;
}

.fv_un_txt .txt_box p {
    font-size: 20px;
    line-height: 240%;
}

.marker {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #fff100));
    background: -webkit-linear-gradient(transparent 60%, #fff100 60%);
    background: linear-gradient(transparent 60%, #fff100 60%);
    display: inline;
    padding: 0 0 4px;
}

.fv_un_txt .btn a {
    width: 800px;
}

@media screen and (max-width: 767px) {
    .fv_un_txt {
        padding: 0 20px;
        text-align: center;
        margin-bottom: 100px;
    }

    .fv_un_txt .txt_box p {
        font-size: 16px;
        text-align: left;
    }

    .fv_un_txt .txt_box {
        margin-bottom: 60px;
    }
    .fv_un_txt .btn a {
        width: 320px;
    }
}

.report_box {
    background: #f4f3f3;
    padding: 150px 0;
}

.report_box h2 {
    font-size: 5rem;
    text-align: center;
    background-image: url(../img/bk_fukidashi_left.webp), url(../img/bk_fukidashi_right.webp);
    background-position: top left, right 30px;
    background-size: 300px auto, 120px auto;
    background-repeat: no-repeat, no-repeat;
    padding-top: 90px;
    width: 750px;
    margin: auto;
}

.report_box h2 .bld {
    font-weight: 800;
}

@media screen and (max-width: 767px) {
    .report_box {
        padding: 70px 0 100px;
    }
    .report_box h2 {
        font-size: 2.8rem;
        background-size: 200px auto, 70px auto;
        padding-top: 70px;
        max-width: 340px;
    }
}

.js-fadein {
    -webkit-transition: 0.6s;
    opacity: 0;
    transition: 0.6s;
    visibility: hidden;
  }
  
  .is-fadein-active {
    opacity: 1;
    visibility: visible;
  }
  
  .js-fadein.-bottom {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  
  .is-fadein-active.-bottom {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  
  @media screen and (max-width: 767px) {
    .pc {
      display: none;
    }
  
    .is-fadein-active.-bottom.-last {
      display: none;
    }
  }

  .voice-twitter__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 120px auto 0 auto;
  }
  
  @media screen and (max-width: 767px) {
    .voice-twitter__list {
      margin: 70px auto 0 auto;
    }
  }
  
  .voice-twitter__item:nth-child(odd) {
    margin-top: 50px;
  }

.tokuten {
    padding: 150px 0;
    text-align: center;
    background-image: url(../img/tokuten_tl_img.webp), url(../img/tokuten_tr_img.webp), url(../img/tokuten_bl_img.webp), url(../img/tokuten_br_img.webp);
    background-position: left top, right top, left bottom, right bottom;
    background-size: 200px auto, 600px auto, 700px auto, 120px auto;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}

.tokuten h3 {
    font-size: 3rem;
    font-weight: 600;
}

.tokuten h3 .bld {
    font-size: 4rem;
    font-weight: 800;
}

.tokuten .tokuten_title {
    padding: 60px 0;
    display: inline-block;
    position: relative;
    width: 100%;
}
.tokuten .tokuten_title .box {
    font-size: 3.6rem;
    font-weight: 600;
    padding: 50px 60px;
    line-height: 200%;
    display: inline-block;
    background: #ffffff;
    position: relative;
    background-image: url(../img/tokuten_title_tr.webp), url(../img/tokuten_title_img.webp), url(../img/tokuten_title_img.webp);
    background-position: right top, left 20%, right 80%;
    background-size: 100px auto, 25px auto, 25px auto;
    background-repeat: no-repeat, no-repeat, no-repeat;
}

.tokuten .tokuten_title .blu {
    font-size: 5rem;
    font-weight: 800;
    color: #009ffc;
    display: block;
}

.tokuten .tokuten_title:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #009ffc;
    position: absolute;
    top: 48%;
    z-index: -1;
}

.tokuten .tokuten_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tokuten .tokuten_list li {
    width: 30%;
    margin: 0 1%;
    background: url(../img/tokuten_bk_img.webp) bottom;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 50px;
    padding-bottom: 20px;
}

.tokuten .tokuten_list li .sub {
    margin-top: -18%;
    color: #009ffc;
    font-size: 2rem;
    font-weight: 800;
}

.tokuten .tokuten_list li .yel {
    font-family: "Anton", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    color: #F9F100;
}

.tokuten .tokuten_list li .text_tokuten {
    color: #ffffff;
    font-weight: 600;
    font-size: 2rem;
}

.tokuten .tokuten_list li .text_tokuten span.bld_01 {
    font-weight: 800;
}

.tokuten .tokuten_list li .text_tokuten span.bld_02 {
    font-weight: 800;
    font-size: 3rem;
}
.tokuten .tokuten_list li .text_tokuten span.bld_03 {
    font-weight: 800;
    font-size: 2.4rem;
}

.tokuten .tokuten_list li.logo {
    display: none;
}
@media screen and (max-width: 767px) {
    .tokuten {
        padding: 110px 0;
        background-size: 80px auto, 300px auto, 300px auto, 80px auto;
    }

    .tokuten h3 {
        font-size: 1.8rem;
    }
    
    .tokuten h3 .bld {
        font-size: 2.4rem;
    }
    .tokuten .tokuten_title {
        padding: 30px 0;
    }
    .tokuten .tokuten_title .box {
        font-size: 1.8rem;
        font-weight: 600;
        padding: 30px 20px;
        line-height: 200%;
        background-position: right top, left 20%, right 80%;
        background-size: 60px auto, 20px auto, 20px auto;
        background-repeat: no-repeat, no-repeat, no-repeat;
    }
    
    .tokuten .tokuten_title .blu {
        font-size: 3rem;
        font-weight: 800;
        color: #009ffc;
        display: block;
    }
    
    .tokuten .tokuten_title:after {
        content: "";
        display: block;
        width: 100%;
        height: 3px;
        background: #009ffc;
        position: absolute;
        top: 48%;
        z-index: -1;
    }
    .tokuten .tokuten_list li {
        width: 48%;
        margin: 0 1% 30px;
        background: url(../img/tokuten_bk_img.webp) bottom;
        background-size: contain;
        background-repeat: no-repeat;
        padding-top: 20px;
        padding-bottom: 10px;
    }
    .tokuten .tokuten_list li .text_tokuten {
        font-size: 1.2rem;
    }
    
    .tokuten .tokuten_list li .text_tokuten span.bld_01 {
        font-weight: 800;
    }
    
    .tokuten .tokuten_list li .text_tokuten span.bld_02 {
        font-weight: 800;
        font-size: 2rem;
    }
    .tokuten .tokuten_list li .text_tokuten span.bld_03 {
        font-weight: 800;
        font-size: 1.4rem;
    }
    .tokuten .tokuten_list li .sub {
        font-size: 1.8rem;
    }
    .tokuten .tokuten_list li .yel {
        font-size: 3rem;
    }
    .tokuten .tokuten_list li.logo {
        display: block;
        background: none;
    }
    .tokuten .tokuten_list li.logo img {
        width: 120px;
        height: auto;
    }
  }

  .nayami {
    padding: 100px 0 120px;
    background: #cccccc;
  }

  .nayami .nayami_title {
    padding: 60px 0;
    display: inline-block;
    position: relative;
    width: 100%;
    text-align: center;
  }

  .nayami .nayami_title .dot {
    color: #183087;
    background-image: radial-gradient(circle at center, #183087 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: .4em; /* 縦方向の位置調整 */
  }

  .nayami .nayami_title .box {
    font-size: 3.6rem;
    font-weight: 800;
    padding: 50px 60px;
    line-height: 200%;
    display: inline-block;
    background: #cccccc;
    position: relative;
    z-index: 1;
  }
  .nayami .nayami_title:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #183087;
    position: absolute;
    top: 48%;
  }

  .nayami .in_box {
    max-width: 850px;
    width: 100%;
    margin: auto;
    position: relative;
  }

  .nayami .in_box li {
    background: #ffffff;
    margin-bottom: 10px;
    padding: 10px 10px 10px 70px;
    background-image: url(../img/check_img.webp);
    background-position: 20px center;
    background-repeat: no-repeat;
    background-size: 30px auto;
  }

  .nayami .in_box .img_box {
    position: absolute;
    bottom: -110px;
    right: -30px;
    width: 240px;
  }

  @media screen and (max-width: 767px) {
    .nayami {
        padding: 10px 0 150px;
      }
    
      .nayami .nayami_title {
        padding: 40px 0
      }
    
      .nayami .nayami_title .dot {
        color: #183087;
        background-image: radial-gradient(circle at center, #183087 20%, transparent 20%); /* 点の色とサイズ調整 */
      background-position: top right; /* 点の位置 */
      background-repeat: repeat-x; /* 横方向に繰り返し */
      background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
      padding-top: .4em; /* 縦方向の位置調整 */
      }
    
      .nayami .nayami_title .box {
        font-size: 2rem;
        padding: 20px 30px;
        line-height: 200%;
      }
      .nayami .nayami_title:after {
        content: "";
        display: block;
        width: 100%;
        height: 3px;
        background: #183087;
        position: absolute;
        top: 48%;
      }
      .nayami .in_box li {
        margin: 0 20px 10px;
      }
    
      .nayami .in_box {
        max-width: 850px;
        width: 100%;
        margin: auto;
        position: relative;
      }
    
      .nayami .in_box .img_box {
        position: absolute;
        bottom: -150px;
        right: 20px;
        width: 140px;
      }
  }

  .kaiketsu {
    text-align: center;
  }

  .kaiketsu .box {
    padding: 150px 0;
  }

  .kaiketsu .box p {
    font-size: 3rem;
    line-height: 98px;
    font-weight: 800;
  }

  .kaiketsu .box p .bld {
    font-size: 3.8rem;
  }

  .kaiketsu .box img {
    display: inline-block;
  }

  .kaiketsu .box img.img01 {
    width: 250px !important;
    height: auto;
  }

  .kaiketsu .box img.img02 {
    width: 380px !important;
    height: auto;
  }

  @media screen and (max-width: 767px) {
    .kaiketsu .box {
        padding: 60px 0;
      }
    
      .kaiketsu .box p {
        font-size: 1.8rem;
        line-height: 52px;
      }
    
      .kaiketsu .box p .bld {
        font-size: 2.6rem;
      }
    
      .kaiketsu .box img.img01 {
        width: 125px !important;
        height: auto;
      }
    
      .kaiketsu .box img.img02 {
        width: 195px !important;
        height: auto;
      }
  }

.yasui {
    padding: 150px 0;
    background: #eeeeee;
}
  .yasui .title {
    text-align: center;
    background: #009ffc;
  }

  .yasui h2 {
    line-height: 130px;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
  }

  .yasui h2:after {
    content: "";
    display: block;
    background-image: url(../img/Q_img.webp);
    background-size: contain;
    background-repeat: no-repeat;
    width: 92px;
    height: 120px;
    position: absolute;
    top: -20px;
    left: -110px;
  }

  .yasui .txt_box {
    text-align: center;
    font-size: 20px;
    line-height: 240%;
    padding: 100px 0;
  }

  .yasui ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
  }

  .yasui ul li {
    width: 28%;
    margin: 0 2%;
    text-align: center;
  }

  .yasui ul li img {
    height: auto;
  }

  .yasui ul li h3 {
    padding-top: 30px;
    font-size: 2rem;
  }

  @media screen and (max-width: 767px) {
    .yasui {
        padding: 100px 0;
    }
    .yasui h2 {
        font-size: 2rem;
        line-height: 220%;
        padding: 20px 0;
    }
    .yasui h2:after {
        width: 60px;
        height: 80px;
        left: -50px;
    }
    .yasui .txt_box {
        text-align: left;
        font-size: 16px;
        padding: 60px 20px;
    }
    .yasui ul li {
        width: 45%;
    }
    .yasui ul li:last-of-type {
        padding-top: 50px;
    }
    .yasui ul li h3 {
        font-size: 1.2rem;
        padding-top: 10px;                                                                                                                                                                                            
    }
  }

  .agaru {
    padding: 150px 0;
  }

  .agaru .title_box {
    max-width: 1000px;
    margin: 0 auto 60px;
    display: flex;
    align-items: center;
  }

  .agaru .title_box .title {
    width: 50%;
    font-size: 2.4rem;
    font-weight: 800;
  }

  .agaru .title_box .title p {
    font-size: 3rem;
  }

  .agaru .title_box .title .blu {
    font-size: 3.4rem;
    color: #009ffc;
  }
  .agaru .title_box .title .blu_box {
    display: inline-block;
    margin: 3px;
    color: #ffffff;
    background: #009ffc;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
  }

  .agaru .title_box .img {
    width: 50%;
  }

  .agaru .txt_box {
    max-width: 1000px;
    margin: auto;
    font-size: 20px;
    line-height: 200%;
  }

  @media screen and (max-width: 767px) {
    .agaru {
        padding: 100px 0;
    }
    .agaru .title_box {
        flex-direction: column;
        padding: 0 20px;
    }

    .agaru .title_box .title {
        width: 100%;
        font-size: 2rem;
    }

    .agaru .title_box .title .blu {
        font-size: 2.8rem;
    }

    .agaru .title_box .img {
        width: 100%;
    }
    .agaru .txt_box {
        padding: 0 20px;
        font-size: 16px;
    }
  }

  .message {
    padding: 0 0 150px;
    position: relative;
    background: #eeeeee;
  }

  .message h2 {
    position: absolute;
    top: -45px;
    right: 0;
    left: 0;
    margin: auto;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    background: -webkit-gradient(linear, left top, right top, from(#2af598), to(#009efd));
    background: -webkit-linear-gradient(left, #2af598 0%, #009efd 100%);
    background: linear-gradient(90deg, #2af598 0%, #009efd 100%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    height: 90px;
    position: relative;
    width: 800px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-transform: skew(0);
    align-items: center;
    border-radius: 46px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 3rem;
    font-weight: 800;
    justify-content: center;
    line-height: 1;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    text-align: center;
    transform: skew(0);
  }

  .message .txt_box {
    max-width: 70%;
    margin: auto 100px 100px auto;
    padding: 120px;
    font-size: 18px;
    line-height: 200%;
    background: #ffffffb8;
    z-index: 1;
    position: relative;
  }

  .message .txt_box h3 {
    font-size: 20px;
    font-weight: 800;
    /*margin-top: 100px;*/
    margin-bottom: 60px;
    padding-left: 40px;
    border-left: 5px solid #009efd;
  }

  .message .box {
    position: relative;
    margin-top: 100px;
  }

  .message .box .img_01 {
    max-width: 30%;
    position: absolute;
    top: -10%;
  }

  .message .box.box-second {
    margin-top: 200px;
  }

  .message .box .img_02 {
    max-width: 30%;
    position: absolute;
    top: -10%;
    right: 0;
    left: auto;
  }
  .message .txt_box.txt-second {
    margin: auto auto 100px 100px;
  }

  .message .box .img_03 {
    max-width: 90%;
    margin: auto;
  }

  .message .txt_box.txt-third {
    margin: auto;
    margin-top: -5%;
    position: relative;
    z-index: 1;
  }

  @media screen and (max-width: 767px) {
    .message {
        padding-bottom: 60px;
    }
    .message h2 {
        width: 350px;
        height: 90px;
        font-size: 1.7rem;
    }
    .message .box {
      margin-top: 170px;
    }

    .message .txt_box h3 {
      margin-top: 20px;
        margin-bottom: 30px;
        padding-left: 20px;
    }
    .message .txt_box {
      max-width: 90%;
      margin: auto;
      padding: 20px;
      font-size: 16px;
      background: #ffffffb8;
      z-index: 1;
      position: relative;
    }
    .message .box .img_01 {
      max-width: 60%;
      top: -20%;
    }

    .message .box .img_02 {
      max-width: 60%;
      top: -13%;
    }
    .message .txt_box.txt-second {
      margin: auto;
    }

    .message .box .img_03 {
      max-width: 100%;
    }
    .message .box.box-third {
      margin-top: 60px;
    }
  }

  .taiken_3step {
    padding: 150px 0;
    text-align: center;
    background-image: url(../img/3step_tl.webp), url(../img/3step_tr.webp), url(../img/3step_bl.webp), url(../img/3step_br.webp);
    background-position: left top, right top, left bottom, right bottom;
    background-size: 500px auto, 600px auto, 700px auto, 500px auto;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  }

  .taiken_3step h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
  }

  .taiken_3step h2 .blu {
    font-size: 4.6rem;
    color: #009efd;
  }

  .taiken_3step h2 img {
    width: 300px;
    height: auto;
    display: block;
    margin: auto;
  }

  .taiken_3step ul {
    display: flex;
    justify-content: center;
    margin: 60px 0 100px;
  }

  .taiken_3step li {
    background: #f0f6fa;
    width: 30%;
    margin: 0 1%;
    color: #009efd;
    font-weight: 800;
    padding: 100px 20px 60px;
    position: relative;
  }

  .taiken_3step li img {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
  }

  .taiken_3step li .step {
    display: block;
    width: 150px;
    height: 60px;
    background-image: url(../img/3step_ribon.webp);
    background-repeat: no-repeat;
    background-size: contain;
    color: #ffffff;
    line-height: 40px;
    position: absolute;
    top: 30px;
    left: -15px;
    font-size: 1.8rem;
  }

  .taiken_3step .btn a {
    width: 800px;
  }

  @media screen and (max-width: 767px) {
    .taiken_3step {
        padding: 100px 0;
        background-size: 200px auto, 200px auto, 200px auto, 200px auto;
      }
      .taiken_3step h2 {
        font-size: 2.6rem;
      }
      .taiken_3step h2 img {
        width: 200px;
      }
      .taiken_3step ul {
        margin: 30px 0 60px;
      }
      .taiken_3step li {
        width: 28%;
        margin: 0 2%;
        padding: 80px 5px 20px;
        font-size: 0.9rem;
      }
      .taiken_3step li .step {
        width: 80px;
        font-size: 1rem;
        top: 20px;
        left: -10px;
        line-height: 24px;
      }
      .taiken_3step li img {
        width: 60px;
      }
      .taiken_3step .btn a {
        width: 320px;
        margin: auto;
      }
  }

  .voice {
    padding: 150px 0;
    background: #eeeeee;
  }
  .voice h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 100px;
  }

  .voice h2 .blu {
    color: #009efd;
  }

  .voice .box {
    max-width: 1200px;
    margin: auto;
  }

  .voice .box .in-box {
    width: 800px;
    background: #007dc6;
    position: relative;
    padding: 40px;
    color: #ffffff;
    z-index: 0;
    margin-bottom: 100px;
  }

  .voice .box .in-box.mitsu img {
    width: 180px;
    height: auto;
    position: absolute;
    bottom: 0;
    right: -30px;
  }

  .voice .box .in-box .name {
    position: absolute;
    top: 0;
    left: 0;
    color: #368dcc;
    font-weight: 800;
    font-size: 6rem;
    line-height: 95%;
    z-index: -1;
  }

  .voice .box .in-box .wss {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #368dcc;
    font-weight: 800;
    font-size: 6rem;
    line-height: 90%;
    z-index: 1;
  }

  .voice .box .in-box h3 {
    font-size: 2rem;
    font-weight: 800;
    border-bottom: 2px solid #333333;
    display: inline-block;
    margin-bottom: 30px;
  }

  .voice .box .in-box h3 .yel {
    color: #fff100;
  }

  .voice .box .in-box.atsu {
    margin: 0 0 100px auto;
    text-align: right;
  }
  .voice .box .in-box.atsu .name {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
  }

  .voice .box .in-box.atsu .wss {
    position: absolute;
    bottom: 0;
    left: 0;
    right: auto;
  }

  .voice .box .in-box.atsu img {
    width: 330px;
    height: auto;
    position: absolute;
    bottom: 0;
    left: -30px;
  }
  .voice .box .in-box.atsu p {
    position: relative;
    z-index: 3;
  }

  .voice .box .in-box.tomo img {
    width: 380px;
    height: auto;
    position: absolute;
    bottom: 0;
    right: -30px;
  }

  @media screen and (max-width: 767px) {
    .voice {
        padding: 100px 0 20px;
        background: #eeeeee;
      }
      .voice h2 {
        font-size: 2.4rem;
        margin-bottom: 60px;
      }
      .voice .box .in-box {
        width: 320px;
        padding: 40px 20px;
      }
      .voice .box .in-box .name {
        font-size: 4rem;
      }
      .voice .box .in-box .wss {
        font-size: 4rem;
      }
      .voice .box .in-box.mitsu img {
        width: 130px;
        right: -50px;
      }
      .voice .box .in-box p {
        width: 80%;
        z-index: 3;
        position: relative;
      }
      .voice .box .in-box.atsu p {
        margin: 0 0 0 auto;
        text-align: left;
      }
      .voice .box .in-box.atsu img {
        width: 270px;
        left: -50px;
      }
      .voice .box .in-box.tomo img {
        width: 280px;
        right: -60px;
      }
  }

  .ng {
    padding: 150px 0;
    background: #cccccc;
    text-align: center;
  }

  .ng h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
  }

  .ng h2:after {
    content: "";
    display: block;
    background-image: url(../img/ng_title.webp);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -50px;
    left: -80px;
    width: 197px;
    height: 126px;
  }

  .ng .txt_up {
    max-width: 800px;
    text-align: left;
    margin: auto;
  }

  .ng .box {
    background-image: url(../img/batsu_pc.webp);
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 800px;
    margin: auto;
    position: relative;
  }

  .ng .box img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: auto;
  }

  .ng .box ul {
    padding: 80px 0;
  }

  .ng .box li {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    padding:10px 10px 10px 70px;
    text-align: left;
    max-width: 620px;
    margin: auto;
    background-image: url(../img/batsu.webp);
    background-repeat: no-repeat;
    background-size: 50px 50px;
    background-position: center left;
    line-height: 50px;
  }
  .ng .txt_bottom {
    max-width: 800px;
    text-align: left;
    margin: auto;
    font-size: 2rem;
    font-weight: 800;
  }

  @media screen and (max-width: 767px) {
    .ng {
        padding: 100px 0;
    }
    .ng h2 {
        font-size: 2rem;
    }
    .ng h2:after {
        top: -40px;
        left: 0;
        width: 97px;
        height: 76px;
    }
    .ng .txt_up {
        padding: 0 20px;
    }
    .ng .box {
        background-image: url(../img/batsu_sp.webp);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
        max-width: 800px;
        margin: auto;
        position: relative;
      }
      .ng .box ul {
        padding: 70px 0 90px;
      }
      .ng .box li {
        font-size: 1.4rem;
        padding: 10px 10px 10px 50px;
        background-size: 40px 40px;
        line-height: 40px;
        width: 340px;
      }
      .ng .box img {
        bottom: -20px;
        right: -20px;
        width: 150px;
      }
      .ng .txt_bottom {
        padding: 0 20px;
        margin-top: 40px;
      }
  }

  .kakushin {
    padding: 150px 0;
  }

  .kakushin h3 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
  }

  .kakushin ul {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
    margin-bottom: 60px;
  }

  .kakushin li {
    width: 28%;
    margin: 0 2%;
    background-image: url(../img/kakushin_img.webp);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
        text-align: center;
        font-weight: 700;
        padding: 130px 0 60px;
  }

  .kakushin .txt {
    text-align: center;
    font-size: 2rem;
  }

  .kakushin .txt .bld {
    font-weight: 800;
  }

  @media screen and (max-width: 767px) {
    .kakushin {
        padding: 100px 0;
    }
    .kakushin h3 {
        font-size: 2rem;
    }
    .kakushin ul {
        flex-wrap: wrap;
    }
    .kakushin li {
        width: 46%;
        font-size: 1.2rem;
        padding: 100px 0 60px;
    }
  }

  .tokuten.last .btn {
    margin-top: 100px;
  }

  .tokuten.last .btn a{
    width: 800px;
  }

  @media screen and (max-width: 767px) {
    .tokuten.last .tokuten_title .blu {
        font-size: 2.6rem;
    }
    .tokuten.last .btn a{
        width: 320px;
      }
      .tokuten.last .btn {
        margin-top: 60px;
      }
  }