@charset "UTF-8";
/* リセットCSS
===================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, button, 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 {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  color: #000000;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

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

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

/* 基本設定
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

a {
  cursor: pointer;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

p, a, span {
  font-weight: 500;
}

.tab-show {
  display: none;
}

@media (max-width: 1200px) {
  .tab-show {
    display: block;
  }
}

.tab-hide {
  display: block;
}

@media (max-width: 1200px) {
  .tab-hide {
    display: none;
  }
}

.sp-show {
  display: none;
}

@media (max-width: 767px) {
  .sp-show {
    display: block;
  }
}

.sp-hide {
  display: block;
}

@media (max-width: 767px) {
  .sp-hide {
    display: none;
  }
}

.totop {
  position: fixed;
  width: 90px;
  height: 90px;
  background-color: white;
  background-image: linear-gradient(to bottom, #8e0f14, #c11920);
  border-radius: 99px;
  right: 70px;
  z-index: 99;
  bottom: 100px;
  opacity: 0;
  transition: all .2s;
}

@media (max-width: 1200px) {
  .totop {
    right: 30px;
    bottom: 50px;
    width: 50px;
    height: 50px;
  }
}

.totop::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 30px;
  background: white;
  top: 40px;
  left: 20px;
  transform: rotate(-45deg);
}

@media (max-width: 1200px) {
  .totop::after {
    width: 20px;
    left: 9px;
    top: 20px;
  }
}

.totop::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 30px;
  background: white;
  top: 40px;
  right: 20px;
  transform: rotate(45deg);
}

@media (max-width: 1200px) {
  .totop::before {
    width: 20px;
    right: 9px;
    top: 20px;
  }
}

.totop.bottomScroll {
  opacity: 1;
}

header {
  position: fixed;
  height: 140px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.16);
  z-index: 99;
  box-shadow: 0 3px 6px 0 rgba(211, 211, 211, 0.16);
}

@media (max-width: 1200px) {
  header {
    height: 120px;
  }
}

header .header-wrapper {
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  height: 100%;
  justify-content: space-between;
  width: 95%;
  margin: auto;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 1200px) {
  header .header-wrapper {
    width: 95%;
  }
}

@media (max-width: 767px) {
  header .header-wrapper {
    align-items: flex-start;
  }
}

header .header-left {
  display: flex;
  align-items: center;
}

header .header-left p {
  font-size: 20px;
  font-weight: 400;
  color: #0093e2;
  margin-left: 20px;
}

@media screen and (max-width: 1400px) {
  header .header-left p {
    display: none;
  }
}

@media (max-width: 767px) {
  header .header-left a {
    width: 150px;
  }
  header .header-left a img {
    width: 100%;
  }
}

@media screen and (max-width: 350px) {
  header .header-left a {
    width: 120px;
  }
}

header .header-right {
  display: flex;
  position: relative;
  align-items: center;
}

@media (max-width: 767px) {
  header .header-right {
    flex-direction: column;
  }
}

header .tel-wrapper {
  margin-right: 25px;
  min-width: 325px;
}

@media (max-width: 1200px) {
  header .tel-wrapper {
    min-width: 0;
  }
}

header .tel-wrapper a {
  font-size: 42px;
}

@media (max-width: 1200px) {
  header .tel-wrapper a {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  header .tel-wrapper a {
    font-size: 20px;
  }
}

@media screen and (max-width: 350px) {
  header .tel-wrapper a {
    font-size: 14px;
  }
}

header .tel-wrapper .tel {
  font-size: 42px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

@media (max-width: 1200px) {
  header .tel-wrapper .tel {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  header .tel-wrapper .tel {
    font-size: 20px;
  }
}

@media screen and (max-width: 350px) {
  header .tel-wrapper .tel {
    font-size: 14px;
  }
}

header .tel-wrapper .tel img {
  margin-right: 7px;
}

@media screen and (max-width: 350px) {
  header .tel-wrapper .tel img {
    width: 20px;
  }
}

header .tel-wrapper .time {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95%;
  margin: auto;
  margin-top: 10px;
}

@media (max-width: 1200px) {
  header .tel-wrapper .time {
    width: 100%;
  }
}

@media (max-width: 767px) {
  header .tel-wrapper .time {
    display: none;
  }
}

header .tel-wrapper .time .ttl {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: white;
  background-color: #7b7b7b;
  padding: 5px;
}

@media (max-width: 1200px) {
  header .tel-wrapper .time .ttl {
    font-size: 12px;
  }
}

header .tel-wrapper .time .jikan {
  display: flex;
  justify-content: space-between;
  margin-left: 7px;
}

header .tel-wrapper .time .jikan p {
  font-size: 16px;
}

@media (max-width: 1200px) {
  header .tel-wrapper .time .jikan p {
    font-size: 12px;
  }
}

header .mail-wrapper {
  background-image: linear-gradient(to bottom, #8e0f14, #c11920);
  display: flex;
  align-items: center;
  color: white;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 99px;
  border: 3px solid white;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  min-width: 312px;
  height: 82px;
}

@media (max-width: 1200px) {
  header .mail-wrapper {
    min-width: 0;
  }
}

@media (max-width: 767px) {
  header .mail-wrapper {
    height: 50px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    justify-content: center;
  }
}

header .mail-wrapper p {
  font-size: 22px;
  color: white;
}

@media (max-width: 1200px) {
  header .mail-wrapper p {
    font-size: 16px;
    text-align: center;
  }
}

@media screen and (max-width: 350px) {
  header .mail-wrapper p {
    font-size: 12px;
  }
}

header .mail-wrapper img {
  width: 18px;
  margin-left: 10px;
  margin-top: 3px;
}

.fv {
  background-image: url(../img/fv.png);
  background-size: cover;
}

.fv .fv-inner {
  padding-top: 200px;
  padding-left: 120px;
  padding-right: 120px;
  display: flex;
  height: 70%;
  align-items: flex-end;
}

@media (max-width: 1200px) {
  .fv .fv-inner {
    padding-left: 20px;
    padding-top: 150px;
    padding-right: 20px;
  }
}

.fv .fv-inner .fv-left {
  width: 50%;
  position: relative;
}

@media (max-width: 1200px) {
  .fv .fv-inner .fv-left {
    width: 100%;
    z-index: 2;
  }
  .fv .fv-inner .fv-left .left-bottom {
    padding-top: 50%;
  }
}

.fv .fv-inner .fv-left .left-top p {
  font-size: 37px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .fv .fv-inner .fv-left .left-top p {
    font-size: 24px;
  }
}

.fv .fv-inner .fv-left .left-top h1 {
  font-size: 63px;
  text-shadow: 0 3px 6px #fff;
  line-height: 90px;
  margin-bottom: 35px;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .fv .fv-inner .fv-left .left-top h1 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 15px;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .fv .fv-inner .fv-left .left-top h1 {
    font-size: 30px;
    line-height: 40px;
    white-space: normal;
  }
}

.fv .fv-inner .fv-left .left-top span {
  font-size: 58px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .fv .fv-inner .fv-left .left-top span {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .fv .fv-inner .fv-left .left-top span {
    font-size: 24px;
    line-height: 30px;
  }
}

.fv .fv-inner .fv-left .left-top .red {
  font-size: 88px;
  color: #c11920;
  position: relative;
}

@media (max-width: 1200px) {
  .fv .fv-inner .fv-left .left-top .red {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .fv .fv-inner .fv-left .left-top .red {
    font-size: 36px;
  }
}

.fv .fv-inner .fv-left .left-top .red::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 7px;
  background-color: #ffd800;
  bottom: 5px;
  left: 0;
}

@media (max-width: 1200px) {
  .fv .fv-inner .fv-left .left-top .red::before {
    bottom: 5px;
    height: 3px;
  }
}

.fv .fv-inner .fv-left .left-top .red::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 7px;
  background-color: #ffd800;
  bottom: -10px;
  left: 0;
}

@media (max-width: 1200px) {
  .fv .fv-inner .fv-left .left-top .red::after {
    bottom: -0px;
    height: 3px;
  }
}

.fv .fv-inner .fv-left .left-bottom img {
  width: 100%;
}

.fv .fv-inner .fv-right {
  width: 50%;
}

.fv .fv-inner .fv-right img {
  width: 100%;
}

@media (max-width: 1200px) {
  .fv .fv-inner .fv-right {
    width: 100%;
    position: absolute;
    left: 0;
  }
}

.fv .fv-bottom {
  background-color: rgba(0, 147, 226, 0.67);
  padding-top: 40px;
  padding-bottom: 40px;
  height: 30%;
}

.fv .fv-bottom .contact-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 990px;
  background-image: linear-gradient(to bottom, #8e0f14, #c11920);
  border: 3px solid white;
  border-radius: 99px;
  color: white;
  margin: auto;
  font-size: 44px;
  height: 150px;
  position: relative;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

@media (max-width: 1200px) {
  .fv .fv-bottom .contact-button {
    font-size: 18px;
    height: 80px;
    text-align: center;
  }
}

.fv .fv-bottom .contact-button img {
  width: 28px;
  position: absolute;
  right: 50px;
}

@media (max-width: 1200px) {
  .fv .fv-bottom .contact-button img {
    width: 15px;
    right: 20px;
  }
}

.fv .fv-bottom .tel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .fv .fv-bottom .tel-wrapper {
    flex-direction: column;
  }
}

.fv .fv-bottom .tel-wrapper .tel {
  color: white;
  font-size: 45px;
}

@media (max-width: 1200px) {
  .fv .fv-bottom .tel-wrapper .tel {
    font-size: 20px;
  }
  .fv .fv-bottom .tel-wrapper .tel img {
    height: 20px;
    margin-right: 10px;
  }
}

.fv .fv-bottom .tel-wrapper .time {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

@media (max-width: 1200px) {
  .fv .fv-bottom .tel-wrapper .time {
    margin-top: 20px;
    flex-direction: column;
    margin-left: 0;
  }
}

.fv .fv-bottom .tel-wrapper .time .ttl {
  font-size: 30px;
  background-color: #7b7b7b;
  color: white;
  padding: 5px;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .fv .fv-bottom .tel-wrapper .time .ttl {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.fv .fv-bottom .tel-wrapper .time .jikan {
  margin-left: 20px;
}

@media (max-width: 1200px) {
  .fv .fv-bottom .tel-wrapper .time .jikan {
    margin-left: 0;
  }
}

.fv .fv-bottom .tel-wrapper .time .jikan p {
  font-size: 28px;
  color: white;
}

@media (max-width: 1200px) {
  .fv .fv-bottom .tel-wrapper .time .jikan p {
    font-size: 18px;
  }
}

.reason {
  background-image: url(../img/reason-bg.png);
  background-size: cover;
  position: relative;
  padding-top: 50px;
  padding-bottom: 5%;
  clip-path: polygon(100% 0, 100% 90%, 55% 90%, 50% 100%, 45% 90%, 0 90%, 0 0);
}

@media (max-width: 1200px) {
  .reason {
    padding-bottom: 20%;
  }
}

.reason::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #0093e2;
  opacity: 0.8;
  top: 0;
  left: 0;
  z-index: 0;
}

.reason .ttl-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reason .ttl-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 60%;
  left: 0;
  top: 20%;
  background-color: #fff;
  opacity: 0.4;
  z-index: -1;
}

.reason .ttl-wrapper h2 {
  font-size: 53px;
  color: white;
}

@media (max-width: 1200px) {
  .reason .ttl-wrapper h2 {
    font-size: 30px;
    padding-right: 20px;
  }
}

@media (max-width: 1200px) {
  .reason .ttl-wrapper img {
    width: 150px;
  }
}

.reason ul {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: auto;
  margin-top: 50px;
}

@media (max-width: 1200px) {
  .reason ul {
    width: 70%;
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  .reason ul {
    width: 100%;
  }
}

.reason ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 90px;
}

@media (max-width: 1200px) {
  .reason ul li {
    margin-bottom: 30px;
  }
}

.reason ul li img {
  margin-right: 40px;
  width: 60px;
}

@media (max-width: 1200px) {
  .reason ul li img {
    margin-right: 15px;
    width: 30px;
  }
}

.reason ul li p {
  font-size: 66px;
  font-weight: 700;
  color: white;
  width: calc(100% - 100px);
  line-height: 94px;
}

@media (max-width: 1200px) {
  .reason ul li p {
    font-size: 40px;
    line-height: 60px;
  }
}

@media (max-width: 767px) {
  .reason ul li p {
    font-size: 20px;
    line-height: 28px;
  }
}

.reason ul li p span {
  color: white;
  position: relative;
}

.reason ul li p span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 7px;
  background-color: #ffd800;
  bottom: 5px;
  left: 0;
}

@media (max-width: 1200px) {
  .reason ul li p span::before {
    bottom: 2px;
    height: 3px;
  }
}

.reason ul li p span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 7px;
  background-color: #ffd800;
  bottom: -10px;
  left: 0;
}

@media (max-width: 1200px) {
  .reason ul li p span::after {
    bottom: -6px;
    height: 3px;
  }
}

.because {
  padding-top: 155px;
  background-image: url(../img/one-bg.png);
  background-size: cover;
  margin-top: -120px;
  position: relative;
  padding-bottom: 50px;
  z-index: -1;
}

.because::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: white;
  opacity: 0.9;
  top: 0;
  left: 0;
  z-index: 0;
}

.because .because-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: auto;
}

.because h2 {
  text-align: center;
  font-size: 77px;
  color: #1b9ee5;
  padding-bottom: 50px;
}

@media (max-width: 1200px) {
  .because h2 {
    font-size: 36px;
    padding-bottom: 25px;
  }
}

.because .because-content {
  margin-bottom: 100px;
}

@media (max-width: 1200px) {
  .because .because-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.because .because-content .because-ttl {
  display: flex;
  align-items: flex-start;
}

@media (max-width: 1200px) {
  .because .because-content .because-ttl {
    justify-content: center;
  }
}

.because .because-content .because-ttl img {
  margin-right: 120px;
  width: 73.5px;
  margin-left: -90px;
}

@media (max-width: 1200px) {
  .because .because-content .because-ttl img {
    margin-left: 0;
    margin-right: 20px;
    width: 30px;
  }
}

.because .because-content .because-ttl h3 {
  width: calc(100% - 103.5px);
  font-size: 44px;
  text-align: center;
  line-height: 73px;
  position: relative;
  margin-bottom: 70px;
  padding: 10px;
}

@media (max-width: 1200px) {
  .because .because-content .because-ttl h3 {
    font-size: 26px;
    line-height: 30px;
    width: calc(100% - 50px);
    margin-bottom: 35px;
  }
}

.because .because-content .because-ttl h3 span {
  font-size: 48px;
  color: #eb000a;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .because .because-content .because-ttl h3 span {
    font-size: 26px;
    line-height: 30px;
  }
}

.because .because-content .because-ttl h3 .mini {
  color: black;
  font-size: 30px;
  line-height: 40px;
}

@media (max-width: 1200px) {
  .because .because-content .because-ttl h3 .mini {
    font-size: 26px;
    line-height: 30px;
  }
}

.because .because-content .because-ttl h3::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 300px;
  background-image: url(../img/fukidashi.png);
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  bottom: -50px;
  background-position-y: bottom;
}

@media (max-width: 1200px) {
  .because .because-content .because-ttl h3::after {
    bottom: -20px;
    display: none;
  }
}

.because .because-content .because-txt {
  display: flex;
}

@media (max-width: 1200px) {
  .because .because-content .because-txt {
    align-items: flex-start;
  }
}

.because .because-content .because-txt p {
  font-size: 25px;
  line-height: 50px;
}

.because .because-content .because-txt p span {
  text-decoration: underline;
  text-decoration-color: #ffd800;
  text-decoration-thickness: 6px;
}

@media (max-width: 1200px) {
  .because .because-content .because-txt p {
    font-size: 20px;
    line-height: 30px;
  }
}

.because .because-content .because-txt img {
  margin-left: 30px;
}

@media (max-width: 1200px) {
  .because .because-content .because-txt img {
    margin-left: 15px;
    width: 120px;
    display: none;
  }
}

.because .because-content .example {
  font-size: 58px;
  color: #1b9ee5;
  text-align: center;
  font-weight: 400;
  margin-top: 70px;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .because .because-content .example {
    font-size: 36px;
  }
}

.because .because-content .example-box {
  border: 6px solid #e5e5e5;
  padding: 25px;
  background-color: #fff;
}

.because .because-content .example-box .ttl {
  font-size: 21px;
}

.because .because-content .example-box .txt {
  width: 60%;
  margin: auto;
  margin-top: 30px;
  font-size: 25px;
  line-height: 50px;
}

@media (max-width: 1200px) {
  .because .because-content .example-box .txt {
    width: 100%;
    font-size: 20px;
    line-height: 30px;
  }
}

.because .because-content .hikaku {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .because .because-content .hikaku ul {
    padding-left: 25px;
  }
}

.because .because-content .hikaku li {
  list-style-type: disc;
  font-size: 25px;
  line-height: 40px;
}

@media (max-width: 1200px) {
  .because .because-content .hikaku li {
    font-size: 20px;
    line-height: 30px;
  }
}

.because .because-content .hikaku li span {
  color: #eb000a;
  text-decoration: underline;
  text-decoration-color: #ffd800;
  text-decoration-thickness: 6px;
}

.because .because-content .hikaku > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
}

@media (max-width: 1200px) {
  .because .because-content .hikaku > div {
    width: 48%;
  }
}

.because .because-content .hikaku > div .arrow {
  width: 90px;
  margin-bottom: 20px;
}

.because .because-content .hikaku > div .sp {
  margin-bottom: 20px;
  width: 100%;
}

.because .because-content .hikaku .left p {
  font-weight: 700;
  font-size: 25px;
  background-color: #e5e5e5;
  padding: 20px;
  text-align: center;
  width: 100%;
}

@media (max-width: 1200px) {
  .because .because-content .hikaku .left p {
    padding: 10px;
    font-size: 20px;
  }
}

.because .because-content .hikaku .right p {
  font-weight: 700;
  font-size: 25px;
  background-color: #1b9ee5;
  padding: 20px;
  text-align: center;
  width: 100%;
  color: white;
}

@media (max-width: 1200px) {
  .because .because-content .hikaku .right p {
    padding: 10px;
    font-size: 20px;
  }
}

.because .content2 .because-ttl h3 {
  line-height: 50px;
}

@media (max-width: 1200px) {
  .because .content2 .because-ttl h3 {
    font-size: 26px;
    line-height: 30px;
  }
}

.because .content2 .because-ttl img {
  width: 110px;
}

@media (max-width: 1200px) {
  .because .content2 .because-ttl img {
    width: 50px;
  }
}

.because .content2 .example-box .ttl {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}

.because .content2 .example-box .report-wrapper {
  display: flex;
  justify-content: center;
}

@media (max-width: 1200px) {
  .because .content2 .example-box .report-wrapper {
    flex-direction: column;
  }
}

.because .content2 .example-box .report-wrapper .report-left {
  width: 50%;
}

@media (max-width: 1200px) {
  .because .content2 .example-box .report-wrapper .report-left {
    width: 100%;
  }
}

.because .content2 .example-box .report-wrapper .report-left img {
  width: 100%;
}

.because .content2 .example-box .report-wrapper .report-right {
  margin-left: 30px;
  width: calc(50% - 30px);
}

@media (max-width: 1200px) {
  .because .content2 .example-box .report-wrapper .report-right {
    width: 100%;
    margin-left: 0;
  }
}

.because .content2 .example-box .report-wrapper .report-right p {
  font-size: 32px;
  line-height: 64px;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .because .content2 .example-box .report-wrapper .report-right p {
    font-size: 20px;
    line-height: 30px;
  }
}

.because .content2 .example-box .report-wrapper .report-right .mini {
  font-size: 28px;
  line-height: 34px;
}

@media (max-width: 1200px) {
  .because .content2 .example-box .report-wrapper .report-right .mini {
    font-size: 20px;
    line-height: 30px;
  }
}

.because .content2 .example-box .report-wrapper .report-right .teian {
  margin-top: 40px;
}

.because .content2 .example-box .report-wrapper .report-right .teian p {
  font-size: 28px;
  line-height: 34px;
}

@media (max-width: 1200px) {
  .because .content2 .example-box .report-wrapper .report-right .teian p {
    font-size: 20px;
    line-height: 30px;
  }
}

.because .content2 .example-box .report-wrapper .report-right .teian h4 {
  font-size: 61px;
  color: #1b9ee5;
  line-height: 90px;
  position: relative;
}

@media (max-width: 1200px) {
  .because .content2 .example-box .report-wrapper .report-right .teian h4 {
    font-size: 20px;
    line-height: 30px;
  }
}

.because .content2 .example-box .report-wrapper .report-right .teian h4::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 2px;
  background-color: #1b9ee5;
  left: -80%;
  top: 80%;
  transform: rotate(-5deg);
}

@media (max-width: 1200px) {
  .because .content2 .example-box .report-wrapper .report-right .teian h4::before {
    content: "D.";
    position: static;
    background-color: transparent;
    color: #1b9ee5;
    font-weight: 700;
  }
}

.because .content2 .example-box .report-wrapper .report-right .teian .blue {
  color: #1b9ee5;
  font-weight: 400;
}

.because .content2 .example-box .report-wrapper .report-right .p-1 {
  position: relative;
}

.because .content2 .example-box .report-wrapper .report-right .p-1::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: black;
  left: -100%;
  top: 120%;
  transform: rotate(-10deg);
}

@media (max-width: 1200px) {
  .because .content2 .example-box .report-wrapper .report-right .p-1::before {
    content: "A.";
    position: static;
    background-color: transparent;
    color: #1b9ee5;
    font-weight: 700;
  }
}

.because .content2 .example-box .report-wrapper .report-right .p-2 {
  position: relative;
}

.because .content2 .example-box .report-wrapper .report-right .p-2::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: black;
  left: -50%;
  top: 80%;
  transform: rotate(-10deg);
}

@media (max-width: 1200px) {
  .because .content2 .example-box .report-wrapper .report-right .p-2::before {
    content: "B.";
    position: static;
    background-color: transparent;
    color: #1b9ee5;
    font-weight: 700;
  }
}

.because .content2 .example-box .report-wrapper .report-right .mini {
  position: relative;
}

.because .content2 .example-box .report-wrapper .report-right .mini::before {
  content: "";
  position: absolute;
  width: 25%;
  height: 2px;
  background-color: black;
  left: -25%;
  top: 80%;
  transform: rotate(-10deg);
}

@media (max-width: 1200px) {
  .because .content2 .example-box .report-wrapper .report-right .mini::before {
    content: "C.";
    position: static;
    background-color: transparent;
    color: #1b9ee5;
    font-weight: 700;
  }
}

.because .content2 .teian-rei {
  margin-top: 40px;
  text-align: center;
}

.because .content2 .teian-rei h6 {
  background-color: #1b9ee5;
  color: white;
  font-weight: 500;
  font-size: 25px;
  display: inline-block;
  padding: 15px 45px;
}

@media (max-width: 1200px) {
  .because .content2 .teian-rei h6 {
    font-size: 20px;
    width: 100%;
  }
}

.because .content2 .teian-rei p {
  font-size: 22px;
  line-height: 35px;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .because .content2 .teian-rei p {
    font-size: 20px;
    line-height: 30px;
  }
}

.because .content2 .teian-rei .teian-txt {
  text-align: left;
  font-weight: 500;
  font-size: 25px;
  line-height: 40px;
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .because .content2 .teian-rei .teian-txt {
    font-size: 20px;
    line-height: 30px;
  }
}

.because2 {
  padding-top: 50px;
  margin-top: -100px;
  background-image: url(../img/two-bg.png);
}

.because2 .sarani {
  max-width: 1520px;
  margin: auto;
  position: relative;
  position: relative;
  z-index: 1;
  background-image: url(../img/rank-bg.png);
  background-size: cover;
  border-radius: 76px;
}

@media (max-width: 1200px) {
  .because2 .sarani {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.because2 .sarani::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #1b9ee5;
  opacity: 0.9;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 76px;
}

.because2 .sarani .sarani-wrapper {
  position: relative;
  z-index: 1;
}

.because2 .sarani .sarani-wrapper h2 {
  color: white;
  font-size: 70px;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (max-width: 1200px) {
  .because2 .sarani .sarani-wrapper h2 {
    font-size: 36px;
    line-height: 40px;
  }
}

.because2 .sarani .sarani-wrapper .sarani-txt {
  width: 60%;
  margin: auto;
  text-align: center;
  position: relative;
}

@media (max-width: 1200px) {
  .because2 .sarani .sarani-wrapper .sarani-txt {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.because2 .sarani .sarani-wrapper .sarani-txt::before {
  content: "";
  position: absolute;
  height: 200px;
  width: 186px;
  background-image: url(../img/man2.svg);
  left: -200px;
}

.because2 .sarani .sarani-wrapper .sarani-txt h4 {
  font-size: 54px;
  line-height: 61px;
  color: white;
}

@media (max-width: 1200px) {
  .because2 .sarani .sarani-wrapper .sarani-txt h4 {
    font-size: 20px;
    line-height: 32px;
  }
}

.because2 .sarani .sarani-wrapper .sarani-txt h4 span {
  font-size: 39px;
  color: white;
}

@media (max-width: 1200px) {
  .because2 .sarani .sarani-wrapper .sarani-txt h4 span {
    font-size: 20px;
    line-height: 32px;
  }
}

.because2 .sarani .sarani-wrapper .sarani-txt p {
  color: white;
  font-size: 36px;
  line-height: 61px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .because2 .sarani .sarani-wrapper .sarani-txt p {
    font-size: 20px;
    line-height: 32px;
  }
}

.because2 .sarani .sarani-wrapper .sarani-txt p .mini {
  font-size: 39px;
}

@media (max-width: 1200px) {
  .because2 .sarani .sarani-wrapper .sarani-txt p .mini {
    font-size: 20px;
    line-height: 32px;
  }
}

.because2 .sarani .sarani-wrapper .sarani-txt p span {
  color: white;
  font-weight: 700;
}

.because2 .sarani .sarani-wrapper .sarani-txt p .border {
  font-size: 48px;
  text-decoration: underline;
  text-decoration-color: #ffd800;
  text-decoration-thickness: 6px;
}

@media (max-width: 1200px) {
  .because2 .sarani .sarani-wrapper .sarani-txt p .border {
    font-size: 20px;
    line-height: 32px;
  }
}

.because2 .sarani .sarani-wrapper .notice {
  font-size: 17px;
  color: white;
  width: 85%;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 50px;
}

.because2 .sarani .sarani-wrapper .rank-wrapper {
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 1200px) {
  .because2 .sarani .sarani-wrapper .rank-wrapper {
    flex-direction: column;
    width: calc(100% - 40px);
  }
}

.because2 .sarani .sarani-wrapper .rank-wrapper .rank {
  padding: 15px 30px;
  background-color: #fff;
  width: calc(50% - 45px);
  display: flex;
  margin-bottom: 45px;
  position: relative;
}

@media (max-width: 1200px) {
  .because2 .sarani .sarani-wrapper .rank-wrapper .rank {
    width: 100%;
    padding: 10px;
  }
}

.because2 .sarani .sarani-wrapper .rank-wrapper .rank .rank-right {
  position: relative;
  width: 50%;
}

.because2 .sarani .sarani-wrapper .rank-wrapper .rank .rank-right img {
  position: absolute;
  height: 100%;
  right: 0;
}

@media (max-width: 1200px) {
  .because2 .sarani .sarani-wrapper .rank-wrapper .rank .rank-right img {
    width: 100%;
    object-fit: contain;
  }
}

.because2 .sarani .sarani-wrapper .rank-wrapper .rank .rank-num {
  position: absolute;
  right: -50px;
  top: -30px;
}

@media (max-width: 1200px) {
  .because2 .sarani .sarani-wrapper .rank-wrapper .rank .rank-num {
    position: absolute;
    right: 0px;
    top: -40px;
    width: 100px;
  }
}

.because2 .sarani .sarani-wrapper .rank-wrapper .rank-left {
  position: relative;
  width: 60%;
  margin-right: -10%;
  z-index: 2;
}

.because2 .sarani .sarani-wrapper .rank-wrapper h6 {
  font-size: 30px;
  line-height: 48px;
  padding-bottom: 40px;
}

@media (max-width: 1200px) {
  .because2 .sarani .sarani-wrapper .rank-wrapper h6 {
    font-size: 20px;
    line-height: 26px;
  }
}

.because2 .sarani .sarani-wrapper .rank-wrapper a {
  background-color: #bebebe;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  color: white;
  padding: 17px 60px;
  font-size: 24px;
  border-radius: 99px;
  margin-bottom: 20px;
  display: block;
  width: 300px;
  text-align: center;
}

@media (max-width: 1200px) {
  .because2 .sarani .sarani-wrapper .rank-wrapper a {
    width: 100%;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.because3 {
  margin-top: 0;
  background-image: url(../img/three-bg.png);
}

.because3 .report-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.because3 .p-3, .because3 .p-4 {
  line-height: 40px !important;
}

@media (max-width: 1200px) {
  .because3 .p-3, .because3 .p-4 {
    line-height: 30px !important;
  }
}

.because3 .p-4 {
  position: relative;
}

.because3 .p-4::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: black;
  left: -50%;
  top: 50%;
  transform: rotate(-5deg);
}

@media (max-width: 1200px) {
  .because3 .p-4::before {
    content: "　";
    position: static;
    font-weight: 700;
    color: #0093e2;
    background-color: transparent;
  }
}

.because3 .p-3 {
  position: relative;
}

@media (max-width: 1200px) {
  .because3 .p-3::before {
    content: "A.";
    position: static;
    font-weight: 700;
    color: #0093e2;
    background-color: transparent;
  }
}

.because3 .p-5 {
  position: relative;
}

.because3 .p-5::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: black;
  left: -50%;
  top: 80%;
  transform: rotate(-10deg);
}

@media (max-width: 1200px) {
  .because3 .p-5::before {
    content: "B.";
    position: static;
    font-weight: 700;
    color: #0093e2;
    background-color: transparent;
  }
}

.because3 .teian-txt {
  margin-top: 40px !important;
  margin-bottom: 80px;
}

.because3 .teian-txt img {
  width: 100%;
}

.muryo {
  padding: 50px;
  background-image: linear-gradient(114deg, #c4a10d 10%, #e9d890 43%, #fffae0 48%, #dbc66f 53%, #987d0a 88%);
}

@media (max-width: 1200px) {
  .muryo {
    padding: 25px;
  }
}

.muryo .muryo-wrapper {
  background-color: #f7f7f7;
  padding: 40px 200px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .muryo .muryo-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.muryo .muryo-wrapper h3 {
  font-size: 51px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .muryo .muryo-wrapper h3 {
    font-size: 30px;
    line-height: 40px;
  }
}

.muryo .muryo-wrapper h3 span {
  font-size: 69px;
  color: #eb000a;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .muryo .muryo-wrapper h3 span {
    font-size: 34px;
  }
}

.muryo .muryo-wrapper h3::after {
  position: absolute;
  right: 0px;
  top: 0px;
  content: "";
  width: 180px;
  height: 193px;
  background-image: url(../img/siryo1.png);
  background-size: cover;
  z-index: -1;
}

@media (max-width: 1200px) {
  .muryo .muryo-wrapper h3::after {
    right: -40px;
    top: -50px;
    opacity: 0.6;
  }
}

.muryo .muryo-wrapper h3::before {
  position: absolute;
  right: 50px;
  top: -50px;
  content: "";
  width: 192px;
  height: 143px;
  background-image: url(../img/siryo2.png);
  background-size: cover;
  z-index: -1;
}

@media (max-width: 1200px) {
  .muryo .muryo-wrapper h3::before {
    right: -40px;
    opacity: 0.6;
  }
}

.muryo .muryo-wrapper h4 {
  text-align: center;
  font-size: 48px;
  text-shadow: 5px 3px 8px rgba(0, 0, 0, 0.16);
  -webkit-text-stroke: 1.6px #fff;
  text-stroke: 1.6px #fff;
  color: black;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .muryo .muryo-wrapper h4 {
    font-size: 30px;
    line-height: 40px;
    -webkit-text-stroke: .6px #fff;
    text-stroke: .6px #fff;
  }
}

.muryo .muryo-wrapper h4 span {
  font-size: 62px;
  font-weight: 900;
  color: #0093e2;
  text-shadow: 5px 3px 8px rgba(0, 0, 0, 0.16);
  -webkit-text-stroke: 1.6px #fff;
  text-stroke: 1.6px #fff;
}

@media (max-width: 1200px) {
  .muryo .muryo-wrapper h4 span {
    font-size: 30px;
    line-height: 40px;
    -webkit-text-stroke: .6px #fff;
    text-stroke: .6px #fff;
  }
}

.muryo .muryo-bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .muryo .muryo-bottom {
    flex-direction: column-reverse;
  }
}

.muryo .muryo-bottom a {
  width: 40%;
  display: flex;
  font-size: 31px;
  height: 145px;
  background-color: #ffd800;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  border: solid 5px #fff;
  color: white;
  border-radius: 99px;
  position: relative;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .muryo .muryo-bottom a {
    width: 100%;
    height: 100px;
    font-size: 20px;
  }
}

.muryo .muryo-bottom a img {
  position: absolute;
  width: 28px;
  right: 60px;
  margin-top: 5px;
}

@media (max-width: 1200px) {
  .muryo .muryo-bottom a img {
    right: 20px;
  }
}

.muryo .muryo-bottom .bottom-right {
  margin-left: 25px;
  width: calc(60% - 25px);
}

@media (max-width: 1200px) {
  .muryo .muryo-bottom .bottom-right {
    width: 100%;
    margin-left: 0;
  }
}

.muryo .muryo-bottom .bottom-right h5 {
  letter-spacing: 6.6px;
  text-align: center;
  background-color: #e3e3e3;
  padding: 10px;
  font-size: 22px;
}

@media (max-width: 1200px) {
  .muryo .muryo-bottom .bottom-right h5 {
    letter-spacing: 3px;
  }
}

.muryo .muryo-bottom .bottom-right .naiyo-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.muryo .muryo-bottom .bottom-right .naiyo {
  width: calc(50% - 10px);
  margin-top: 25px;
  display: flex;
  align-items: center;
}

@media (max-width: 1200px) {
  .muryo .muryo-bottom .bottom-right .naiyo {
    width: 100%;
    margin-bottom: 25px;
  }
}

.muryo .muryo-bottom .bottom-right .naiyo h6 {
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #707070;
  font-size: 22px;
  line-height: 29px;
  text-align: center;
  width: 110px;
}

.muryo .muryo-bottom .bottom-right .naiyo p {
  line-height: 39px;
  font-size: 19px;
  width: calc(100% - 125px);
}

.voice {
  background-image: url(../img/voice-bg.png);
  background-size: cover;
  position: relative;
  z-index: -1;
}

.voice::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: white;
  opacity: 0.9;
  top: 0;
  left: 0;
  z-index: 0;
}

.voice .voice-wrapper {
  position: relative;
  z-index: 1;
}

.voice h3 {
  padding-top: 50px;
  text-align: center;
  font-size: 44px;
  position: relative;
}

@media (max-width: 1200px) {
  .voice h3 {
    font-size: 30px;
    padding-top: 100px;
  }
}

.voice h3::after {
  content: "";
  height: 11px;
  width: 121px;
  background-color: #0093e2;
  position: absolute;
  bottom: -30px;
  border-radius: 99px;
  left: calc(50% - 60.5px);
}

@media (max-width: 1200px) {
  .voice h3::after {
    height: 5px;
  }
}

.voice .voice-content {
  max-width: 1080px;
  margin: auto;
  margin-top: 100px;
}

@media (max-width: 1200px) {
  .voice .voice-content {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.voice .voice-content h4 {
  position: relative;
  height: 140px;
  font-size: 48px;
  display: flex;
  align-items: center;
  padding-left: 190px;
  border-bottom: 1px solid #dbd6bb;
}

@media (max-width: 1200px) {
  .voice .voice-content h4 {
    font-size: 24px;
    padding-left: 100px;
    height: 100px;
  }
}

.voice .voice-content h4 img {
  position: absolute;
  bottom: 20px;
  left: 50px;
}

@media (max-width: 1200px) {
  .voice .voice-content h4 img {
    left: 20px;
    bottom: 20px;
    width: 60px;
  }
}

.voice .voice-content p {
  padding: 30px;
  font-size: 25px;
  line-height: 40px;
}

@media (max-width: 1200px) {
  .voice .voice-content p {
    font-size: 20px;
    line-height: 32px;
    padding: 20px;
  }
}

.voice .voice-article {
  background-color: #fffdf0;
  margin-bottom: 35px;
}

.voice .greet {
  background-color: #0093e2;
}

.voice .greet .greet-wrapper {
  max-width: 1080px;
  margin: auto;
  background-color: #fff;
  padding-bottom: 100px;
}

.voice .greet .greet-wrapper h3 {
  padding-top: 100px;
  text-align: center;
  font-size: 44px;
  position: relative;
}

@media (max-width: 1200px) {
  .voice .greet .greet-wrapper h3 {
    font-size: 30px;
  }
}

.voice .greet .greet-wrapper h3::after {
  content: "";
  height: 11px;
  width: 121px;
  background-color: #0093e2;
  position: absolute;
  bottom: -30px;
  border-radius: 99px;
  left: calc(50% - 60.5px);
}

@media (max-width: 1200px) {
  .voice .greet .greet-wrapper h3::after {
    height: 5px;
  }
}

.voice .greet .greet-wrapper .human {
  display: flex;
  margin-top: 100px;
  padding-left: 80px;
  padding-right: 80px;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .voice .greet .greet-wrapper .human {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.voice .greet .greet-wrapper .human .right {
  margin-left: 25px;
}

@media (max-width: 1200px) {
  .voice .greet .greet-wrapper .human .right {
    width: 100%;
    margin-left: 0;
  }
}

.voice .greet .greet-wrapper .human .right p {
  font-size: 20px;
}

@media (max-width: 1200px) {
  .voice .greet .greet-wrapper .human .right p {
    text-align: center;
  }
}

.voice .greet .greet-wrapper .human .right h4 {
  font-size: 35px;
  line-height: 50px;
}

@media (max-width: 1200px) {
  .voice .greet .greet-wrapper .human .right h4 {
    text-align: center;
  }
}

.voice .greet .greet-wrapper .human .right h6 {
  font-size: 18px;
  color: #afafaf;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .voice .greet .greet-wrapper .human .right h6 {
    text-align: center;
  }
}

.voice .greet .greet-wrapper p {
  padding-left: 80px;
  padding-right: 80px;
  line-height: 40px;
  font-size: 25px;
}

@media (max-width: 1200px) {
  .voice .greet .greet-wrapper p {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 20px;
    line-height: 30px;
  }
}

.ct {
  background-image: url(../img/fv.png);
  background-size: cover;
  position: relative;
  background-position-y: center;
}

.ct::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #0093e2;
  opacity: 0.8;
  top: 0;
  left: 0;
  z-index: 0;
}

.ct .ct-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ct .ct-wrapper h2 {
  text-align: center;
  color: white;
  font-size: 45px;
  display: inline-block;
  margin: auto;
  position: relative;
}

@media (max-width: 1200px) {
  .ct .ct-wrapper h2 {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 30px;
    line-height: 40px;
  }
}

.ct .ct-wrapper h2::after {
  content: "";
  position: absolute;
  width: calc(100% + 100px);
  height: 95px;
  background-image: url(../img/fukidashi2.png);
  left: calc(0% - 50px);
  background-size: cover;
  bottom: -80px;
}

@media (max-width: 1200px) {
  .ct .ct-wrapper h2::after {
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    left: 0;
    bottom: -100px;
  }
}

.ct .ct-wrapper p {
  text-align: center;
  font-size: 28px;
  color: white;
  line-height: 45px;
  margin-top: 100px;
  font-weight: 700;
}

.ct .ct-wrapper p span {
  color: #ffd800;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .ct .ct-wrapper p {
    padding-left: 20px;
    padding-right: 20px;
    line-height: 30px;
    font-size: 20px;
  }
}

.ct .ct-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  overflow: hidden;
}

@media screen and (max-width: 1400px) {
  .ct .ct-bottom > img {
    position: absolute;
    left: -100px;
  }
}

@media (max-width: 1200px) {
  .ct .ct-bottom > img {
    bottom: 0;
    opacity: .6;
  }
}

.ct .ct-bottom .bottom-wrapper {
  display: flex;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .ct .ct-bottom .bottom-wrapper {
    flex-direction: column;
    width: 100%;
  }
}

.ct .ct-bottom .bottom-wrapper .left p {
  font-size: 21px;
  color: white;
  text-align: center;
  margin-bottom: 10px;
}

.ct .ct-bottom .bottom-wrapper .left h2 {
  font-size: 75px;
  color: white;
  text-align: center;
}

.ct .ct-bottom .bottom-wrapper .left h2 img {
  width: 68px;
  margin-right: 20px;
}

@media (max-width: 1200px) {
  .ct .ct-bottom .bottom-wrapper .left h2 {
    font-size: 32px;
  }
  .ct .ct-bottom .bottom-wrapper .left h2 img {
    width: 32px;
  }
}

.ct .ct-bottom .bottom-wrapper .left .time {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .ct .ct-bottom .bottom-wrapper .left .time {
    flex-direction: column;
  }
}

.ct .ct-bottom .bottom-wrapper .left .time .ttl {
  background-color: #7b7b7b;
  padding: 5px;
  font-size: 28px;
}

@media (max-width: 1200px) {
  .ct .ct-bottom .bottom-wrapper .left .time .ttl {
    font-size: 20px;
  }
}

.ct .ct-bottom .bottom-wrapper .left .time .jikan {
  margin-left: 30px;
}

.ct .ct-bottom .bottom-wrapper .left .time .jikan p {
  font-size: 28px;
}

@media (max-width: 1200px) {
  .ct .ct-bottom .bottom-wrapper .left .time .jikan p {
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
  .ct .ct-bottom .bottom-wrapper .left .time .jikan {
    margin-left: 0;
  }
}

.ct .ct-bottom .bottom-wrapper .right a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid white;
  border-radius: 99px;
  color: white;
  background-image: linear-gradient(to bottom, #a80a10, #e2010a 47%, #8d0408);
  font-size: 31px;
  height: 150px;
  width: 680px;
  position: relative;
  margin-left: 50px;
}

@media (max-width: 1200px) {
  .ct .ct-bottom .bottom-wrapper .right a {
    width: 90%;
    margin: auto;
    margin-bottom: 50px;
    margin-top: 50px;
    font-size: 16px;
    height: 100px;
    text-align: center;
  }
}

.ct .ct-bottom .bottom-wrapper .right a img {
  position: absolute;
  right: 50px;
  width: 30px;
  margin-top: 5px;
}

@media (max-width: 1200px) {
  .ct .ct-bottom .bottom-wrapper .right a img {
    right: 20px;
  }
}

.minaoshi .muryo-wrapper h5 {
  text-align: center;
  font-size: 55px;
  line-height: 71px;
}

@media (max-width: 1200px) {
  .minaoshi .muryo-wrapper h5 {
    font-size: 22px;
    line-height: 30px;
  }
}

.minaoshi .muryo-wrapper h5 span {
  font-weight: 700;
}

.minaoshi .muryo-wrapper h5 .mini {
  font-size: 46px;
}

@media (max-width: 1200px) {
  .minaoshi .muryo-wrapper h5 .mini {
    font-size: 22px;
    line-height: 30px;
  }
}

.minaoshi .muryo-wrapper h5 .blue {
  color: #0093e2;
}

.minaoshi .muryo-wrapper h5 .red {
  color: #eb000a;
}

.minaoshi .muryo-wrapper .muryo-bottom {
  flex-direction: column;
}

.minaoshi .muryo-wrapper .muryo-bottom a {
  height: 110px;
}

@media (max-width: 1200px) {
  .minaoshi .muryo-wrapper .muryo-bottom a {
    height: 70px;
  }
  .minaoshi .muryo-wrapper .muryo-bottom a img {
    width: 25px;
  }
}

.minaoshi .muryo-wrapper .bottom-right {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-left: 0;
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .minaoshi .muryo-wrapper .bottom-right {
    flex-direction: column;
  }
}

.minaoshi .muryo-wrapper .bottom-right h6 {
  color: #0080c4;
  font-size: 32px;
  line-height: 42px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .minaoshi .muryo-wrapper .bottom-right h6 {
    text-align: center;
    font-size: 22px;
    line-height: 30px;
  }
}

.minaoshi .muryo-wrapper .bottom-right .mitsumori-wrapper {
  display: flex;
}

@media (max-width: 1200px) {
  .minaoshi .muryo-wrapper .bottom-right .mitsumori-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .minaoshi .muryo-wrapper .bottom-right .mitsumori-wrapper img {
    width: 100%;
  }
}

.minaoshi .muryo-wrapper .bottom-right .mitsumori-wrapper ul {
  margin-left: 20px;
}

@media (max-width: 1200px) {
  .minaoshi .muryo-wrapper .bottom-right .mitsumori-wrapper ul {
    margin-left: 10px;
    margin-bottom: 30px;
  }
}

.minaoshi .muryo-wrapper .bottom-right .mitsumori-wrapper li {
  font-size: 22px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 20px;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .minaoshi .muryo-wrapper .bottom-right .mitsumori-wrapper li {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.contact {
  padding-top: 180px;
  background-image: url(../img/one-bg.png);
  position: relative;
  z-index: 0;
}

.contact .wpcf7-not-valid-tip {
  margin-top: -20px;
  margin-bottom: 20px;
}

.contact .wpcf7-list-item {
  margin: 0 0 0 0em;
}

.contact::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: white;
  opacity: 0.9;
  top: 0;
  left: 0;
  z-index: -1;
}

.contact .contact-form {
  margin-top: 45px;
}

.contact .contact-wrapper {
  max-width: 1080px;
  margin: auto;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .contact .contact-wrapper {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.contact .contact-wrapper h3 {
  padding-top: 60px;
  text-align: center;
  font-size: 44px;
  position: relative;
}

@media (max-width: 1200px) {
  .contact .contact-wrapper h3 {
    font-size: 30px;
  }
}

.contact .contact-wrapper h3::after {
  content: "";
  height: 11px;
  width: 121px;
  background-color: #0093e2;
  position: absolute;
  bottom: -30px;
  border-radius: 99px;
  left: calc(50% - 60.5px);
}

@media (max-width: 1200px) {
  .contact .contact-wrapper h3::after {
    height: 5px;
  }
}

.contact .contact-wrapper .desc {
  font-size: 20px;
  line-height: 30px;
  margin-top: 100px;
  text-align: center;
}

.contact .contact-wrapper .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  margin-bottom: 0px;
}

.contact .contact-wrapper .wpcf7-checkbox .wpcf7-list-item-label {
  font-size: 20px;
}

.contact .contact-wrapper h6 {
  font-size: 20px;
  margin-bottom: 15px;
}

.contact .contact-wrapper h6 span {
  font-size: 18px;
  background-color: #c11920;
  color: white;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 5px;
}

.contact .contact-wrapper input {
  width: 100%;
  height: 60px;
  border: 1px solid #bebebe;
  margin-bottom: 30px;
  font-size: 20px;
  padding-left: 20px;
}

.contact .contact-wrapper select {
  width: 100%;
  height: 60px;
  border: 1px solid #bebebe;
  appearance: none;
  -webkit-appearance: none;
  margin-bottom: 30px;
  font-size: 20px;
  padding-left: 20px;
}

.contact .contact-wrapper .todofuken {
  position: relative;
}

.contact .contact-wrapper .todofuken::after {
  content: "";
  position: absolute;
  background-image: url(../img/select-arrow.svg);
  right: 20px;
  top: 5px;
  width: 24px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
}

.contact .contact-wrapper .wpcf7-list-item input {
  width: auto;
  margin-bottom: 10px;
  height: auto;
}

.contact .contact-wrapper .privacy {
  margin-top: 80px;
  height: 300px;
  overflow: scroll;
  border: 1px solid #707070;
}

.contact .contact-wrapper .privacy h6 {
  text-align: center;
  font-size: 14px;
  margin-top: 30px;
  font-weight: 400;
}

.contact .contact-wrapper .privacy p {
  text-align: left;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 14px;
  font-weight: 400;
  padding-top: 20px;
  margin-top: 0;
  line-height: 24px;
}

.contact .contact-wrapper .wpcf7-submit {
  margin-top: 100px;
  width: 100%;
  height: 113px;
  background-color: #c11920;
  color: white;
  font-size: 25px;
  text-align: center;
  border: none;
  padding-left: 0;
  font-weight: 700;
}

.gaiyo .gaiyo-wrapper {
  max-width: 1080px;
  margin: auto;
  padding-bottom: 50px;
}

.gaiyo .gaiyo-wrapper h3 {
  padding-top: 100px;
  text-align: center;
  font-size: 44px;
  position: relative;
}

@media (max-width: 1200px) {
  .gaiyo .gaiyo-wrapper h3 {
    font-size: 30px;
  }
}

.gaiyo .gaiyo-wrapper h3::after {
  content: "";
  height: 11px;
  width: 121px;
  background-color: #0093e2;
  position: absolute;
  bottom: -30px;
  border-radius: 99px;
  left: calc(50% - 60.5px);
}

@media (max-width: 1200px) {
  .gaiyo .gaiyo-wrapper h3::after {
    height: 5px;
  }
}

.gaiyo .gaiyo-wrapper table {
  width: 100%;
  margin-top: 100px;
}

@media (max-width: 1200px) {
  .gaiyo .gaiyo-wrapper table {
    width: calc(100% - 40px);
    margin: auto;
    margin-top: 100px;
  }
}

.gaiyo .gaiyo-wrapper th {
  padding-left: 80px;
  font-size: 25px;
  width: 40%;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .gaiyo .gaiyo-wrapper th {
    width: 25%;
    padding-left: 0;
    font-size: 20px;
  }
}

.gaiyo .gaiyo-wrapper tr {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}

.gaiyo .gaiyo-wrapper td {
  width: 60%;
  font-size: 25px;
  padding: 20px;
  line-height: 40px;
}

@media (max-width: 1200px) {
  .gaiyo .gaiyo-wrapper td {
    width: 75%;
    font-size: 20px;
    line-height: 30px;
  }
}

footer p {
  text-align: center;
  font-size: 25px;
  padding-bottom: 30px;
  font-weight: 400;
  padding-top: 30px;
}

@media (max-width: 1200px) {
  footer p {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 12px;
    line-height: 18px;
  }
}
