@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

body {
  color: #001821;
  background-color: #EBF6FA;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.2345679012vw;
  }
}
@media (min-width: 1296px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.7s;
  transition: opacity 0.7s;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
a:focus {
  opacity: 0.7;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

.btn {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  width: 100%;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  padding: 5px 0 5px;
  padding: 0.3125rem 0 0.3125rem;
  color: #4E4708;
  position: relative;
  z-index: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .btn {
    font-size: 2rem;
    padding: 1.8125rem 0 1.9375rem;
  }
}

.btn--details {
  background-image: url(../images/btn_details.png);
  max-width: 726px;
  max-width: 45.375rem;
}

.btn--details::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateY(-2%);
          transform: translateY(-2%);
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  background-image: url(../images/carbon_mail.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-right: 13.24px;
  margin-right: 0.8275rem;
  margin-left: 6px;
  margin-left: 0.375rem;
}
@media screen and (min-width: 768px) {
  .btn--details::before {
    width: 2.8125rem;
    height: 2.8125rem;
  }
}

.btn--contact {
  background-image: url(../images/btn_contact.png);
  max-width: 440px;
  max-width: 27.5rem;
  position: relative;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .btn--contact {
    font-size: 1.75rem;
  }
}

@media (any-hover: hover) {
  .btn:hover {
    opacity: 0.7;
  }
}
.btn:focus {
  opacity: 0.7;
}

.card-label {
  width: 100px;
  width: 6.25rem;
  height: 100px;
  height: 6.25rem;
  border-radius: 50%;
  background-color: #F3E34B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .card-label {
    width: 5.625rem;
    height: 5.625rem;
  }
}

.card-label__wrapper {
  text-align: center;
  color: #FFFFFF;
}

.card-label__text {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .card-label__text {
    font-size: 0.7375rem;
  }
}

.card-label__number {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .card-label__number {
    font-size: 2.875rem;
    margin-top: -0.5625rem;
  }
}

.card {
  max-width: 600px;
  margin-inline: auto;
  position: relative;
  padding: 72px 45px 45px 45px;
  padding: 4.5rem 2.8125rem 2.8125rem 2.8125rem;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .card {
    max-width: 100%;
    margin-inline: 0;
  }
}

.card__card-label {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -45%);
          transform: translate(-50%, -45%);
}

.card__image {
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 310/242;
  overflow: hidden;
  position: relative;
}

.card__image img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: auto;
}

.card__image--01 img {
  width: 77%;
  top: 48%;
}

.card__image--02 img {
  width: 61%;
  top: 46%;
}

.card__image--03 img {
  width: 78%;
  top: 42%;
}

.card__title {
  color: #3081C6;
  font-size: 30px;
  font-size: 1.875rem;
  text-align: center;
  line-height: 1;
  position: relative;
  margin-top: 13px;
  margin-top: 0.8125rem;
}

.card__title::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -23px;
  bottom: -1.4375rem;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 45px;
  width: 2.8125rem;
  height: 3px;
  height: 0.1875rem;
  background-color: #F3DF28;
}

.card__text {
  margin-top: 21px;
  margin-top: 1.3125rem;
  font-weight: 400;
  line-height: 2;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (min-width: 768px) {
  .cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

@media screen and (min-width: 768px) {
  .cards__card {
    width: 30.8641975309%;
  }
}

.cards__card + .cards__card {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .cards__card + .cards__card {
    margin-top: 0;
  }
}

.concept {
  padding-top: 70px;
  padding-top: 4.375rem;
  padding-bottom: 79px;
  padding-bottom: 4.9375rem;
  background-image: url(../images/concept.png);
  background-size: 100%;
  background-position: left center;
  background-repeat: no-repeat;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .concept {
    background-size: 50%;
  }
}

.concept__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept__inner {
    max-width: 1024px;
    padding-right: 25px;
    padding-left: 41px;
  }
}

.concept__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .concept__text {
    font-size: 1.25rem;
  }
}

.concept__text:nth-of-type(1) {
  margin-top: 16px;
  margin-top: 1rem;
}

.concept__text + .concept__text {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.concept__text-blue {
  color: #309EC6;
}

.concept__text-large {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .concept__text-large {
    font-size: 1.75rem;
  }
}

.contact {
  background-color: #FFFFFF;
  padding-bottom: 64px;
  padding-bottom: 4rem;
}

.contact__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 797px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.contact__form {
  margin-top: 72px;
  margin-top: 4.5rem;
}

.contact__form label {
  font-size: 20px;
  font-size: 1.25rem;
}

.contact input::-webkit-input-placeholder {
  color: #D2D2D2;
}

.contact input::-moz-placeholder {
  color: #D2D2D2;
}

.contact input::-ms-input-placeholder {
  color: #D2D2D2;
}

.contact input::placeholder {
  color: #D2D2D2;
}

.contact input::-ms-input-placeholder {
  color: #D2D2D2;
}

.contact__company input,
.contact__name input,
.contact__email input,
.contact__tel input,
.contact__inquiry textarea {
  display: block;
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #D9D9D9;
  padding: 9px 0 5px 8px;
  padding: 0.5625rem 0 0.3125rem 0.5rem;
  font-weight: 500;
}

.contact__name,
.contact__email,
.contact__tel,
.contact__inquiry {
  margin-top: 27px;
  margin-top: 1.6875rem;
}

.contact__must {
  color: #D72626;
  font-size: 16px;
  font-size: 1rem;
  padding-left: 17px;
  padding-left: 1.0625rem;
  display: inline-block;
}

.contact__note {
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  margin-top: 14px;
  margin-top: 0.875rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .contact__note {
    margin-top: 2.1875rem;
    font-size: 1rem;
  }
}

.contact__privacy-policy {
  color: #1571DA;
  position: relative;
}

.contact__privacy-policy::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  background-image: url(../images/new_tab.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.contact__btn {
  text-align: center;
  max-width: 280px;
  max-width: 17.5rem;
  margin-top: 3px;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact__btn {
    max-width: 27.5rem;
  }
}

.contact__btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 38px;
  right: 2.375rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 14px;
  width: 0.875rem;
  height: 14px;
  height: 0.875rem;
  background-image: url(../images/right-arrow.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .contact__btn::after {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.details {
  position: relative;
  padding-top: 89px;
  padding-top: 5.5625rem;
  padding-bottom: 67px;
  padding-bottom: 4.1875rem;
  background-size: 53.3854166667%;
  background-position: right top;
  background-repeat: no-repeat;
  background-color: #F2F7F9;
}

.details__bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1025/659;
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .details__bg-image {
    width: 53.3854166667%;
  }
}

.details__bg-image img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.details__bg-image::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 40%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(242, 249, 249, 0)), to(rgb(242, 249, 249)));
  background: linear-gradient(to bottom, rgba(242, 249, 249, 0) 0%, rgb(242, 249, 249) 100%);
  z-index: 2;
}

.details__inner {
  position: relative;
  z-index: 100;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .details__inner {
    max-width: 1015px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.details__information {
  margin-top: 54px;
  margin-top: 3.375rem;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  background-color: #FFFFFF;
}

.details__information-list {
  height: 100%;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .details__information-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.details__information-list + .details__information-list {
  border-top: 1.31px solid #cccccc;
}

.details__information-term {
  padding-left: 26.18px;
  padding-left: 1.63625rem;
  background-color: #E8F3F6;
  height: auto;
  font-size: 20.94px;
  font-size: 1.30875rem;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .details__information-term {
    width: 20.310880829%;
  }
}

.details__information-description {
  padding: 18.2px 0 18.2px 26.51px;
  padding: 1.1375rem 0 1.1375rem 1.656875rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .details__information-description {
    width: 79.689119171%;
    font-size: 1.30875rem;
  }
}

@media screen and (min-width: 768px) {
  .details__information-br {
    display: none;
  }
}

.details__information-description span {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .details__information-description span {
    font-size: 1.25rem;
  }
}

.details__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .details__btn {
    margin-top: 4rem;
  }
}

.footer {
  padding-top: 25px;
  padding-top: 1.5625rem;
}

.footer__inner {
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
  padding-right: 20px;
  padding-left: 20px;
  margin-inline: auto;
display: block;
text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    max-width: 860px;
    padding-right: 25px;
    padding-left: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  }
  .footer__logo{
  display: block;
  width: 106px;
  width: 6.625rem;
  }
}

.footer__logo {
      display: inline-block;

}

.footer__information {
  padding-top: 4px;
  padding-top: 0.25rem;
}

.footer__company-name {
  font-size: 24px;
  font-size: 1.5rem;
}

.footer__adress {
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .footer__adress br {
    display: none;
  }
}

.footer__wrapper {
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .footer__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.footer__time {
  margin-left: 11px;
  margin-left: 0.6875rem;
  font-weight: 400;
}

.footer__copyright {
  text-align: center;
  background-color: #3277C8;
  padding: 15px 0;
  padding: 0.9375rem 0;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8;
  color: #FFFFFF;
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.fv {
  height: calc(100vh - 5.3125rem);
  position: relative;
}

.fv__main-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.fv__main-image img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 100%;
  height: 100%;
}

.fv__main-image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(15, 50, 63)), to(rgba(15, 50, 63, 0)));
  background: linear-gradient(to right, rgb(15, 50, 63) 0%, rgba(15, 50, 63, 0) 100%);
  z-index: 1;
}

.fv__main-image::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(57, 97, 112)), to(rgba(57, 97, 112, 0)));
  background: linear-gradient(to right, rgb(57, 97, 112) 0%, rgba(57, 97, 112, 0) 100%);
  opacity: 0.6;
  z-index: 2;
}

.fv__heading {
  position: absolute;
  top: 51.8%;
  left: 10%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 100;
  color: #105168;
}
@media screen and (min-width: 768px) {
  .fv__heading {
    top: 51.8%;
    left: 33%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.fv__main-copy {
  font-size: 28px;
  font-size: 1.75rem;
  color: #105168;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .fv__main-copy {
    font-size: 4rem;
  }
}

.fv__main-copy:nth-of-type(2) {
  font-size: 32px;
  font-size: 2rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .fv__main-copy:nth-of-type(2) {
    font-size: 4.375rem;
  }
}

.fv__main-copy-bg {
  background-color: #FFFFFF;
  padding-left: 8px;
  padding-left: 0.5rem;
}

.fv__main-copy-bg:nth-of-type(2) {
  padding-left: 12px;
  padding-left: 0.75rem;
}

.fv__main-copy-small {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .fv__main-copy-small {
    font-size: 3.25rem;
  }
}

.fv__main-copy-large {
  font-size: 40px;
  font-size: 2.5rem;
  color: #309EC6;
}
@media screen and (min-width: 768px) {
  .fv__main-copy-large {
    font-size: 5.625rem;
  }
}

.fv__copy-sub {
  color: #FFFFFF;
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  margin-top: 65px;
  margin-top: 4.0625rem;
  margin-left: -2px;
  margin-left: -0.125rem;
}
@media screen and (min-width: 768px) {
  .fv__copy-sub {
    font-size: 1.875rem;
  }
}

.fv__copy-sub::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: rotate(58.13deg) translateX(-0.1875rem);
          transform: rotate(58.13deg) translateX(-0.1875rem);
  width: 43.57px;
  width: 2.723125rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #FFFFFF;
}

.fv__copy-sub::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: rotate(-58.13deg) translateX(0.25rem);
          transform: rotate(-58.13deg) translateX(0.25rem);
  width: 43.57px;
  width: 2.723125rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #FFFFFF;
}

.fv__copy {
  color: #FFFFFF;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0;
  margin-top: 5px;
  margin-top: 0.3125rem;
  margin-left: 6px;
  margin-left: 0.375rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .fv__copy {
    font-size: 3.125rem;
  }
}

.fv__copy-yellow {
  color: #F3DF28;
  padding-left: 16px;
  padding-left: 1rem;
}

.fv__copy-large {
  font-size: 46px;
  font-size: 2.875rem;
}
@media screen and (min-width: 768px) {
  .fv__copy-large {
    font-size: 6.1875rem;
  }
}

.fv__copy-note {
  color: #FFFFFF;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  margin-left: 10px;
  margin-left: 0.625rem;
}
@media screen and (min-width: 375px) {
  .fv__copy-note {
    font-size: 1.125rem;
  }
}

.global-nav {
  height: inherit;
}

.global-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.global-nav__item {
  height: inherit;
}

.global-nav__item:nth-of-type(1) {
  width: 25%;
}
@media screen and (min-width: 768px) {
  .global-nav__item:nth-of-type(1) {
    width: auto;
  }
}

.global-nav__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.global-nav__info {
  display: block;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.global-nav__info-wrapper {
  padding-inline: 10px;
  padding-inline: 0.625rem;
}
@media screen and (min-width: 768px) {
  .global-nav__info-wrapper {
    padding-inline: 2.5rem;
  }
}

.global-nav__time {
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .global-nav__time {
    font-size: 1rem;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .global-nav__time br {
    display: none;
  }
}

.global-nav__contact {
  display: block;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #309EC6;
  color: #FFFFFF;
  padding: 18px 10px 18px 10px;
  padding: 1.125rem 0.625rem 1.125rem 0.625rem;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .global-nav__contact {
    font-size: 1.5rem;
    padding: 1.6875rem 1.9375rem 1.75rem 2.0625rem;
  }
}

.global-nav__contact::before {
  content: "";
  display: inline-block;
  width: 26px;
  width: 1.625rem;
  height: 26px;
  height: 1.625rem;
  background-image: url(../images/mail.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-right: 3px;
  margin-right: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .global-nav__contact::before {
    display: inline-block;
  }
}

.header {
  height: 90px;
  height: 5.625rem;
}

.header__inner {
  width: 100%;
  height: inherit;
  padding-left: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-left: 25px;
  }
}

@media screen and (min-width: 768px) {
  .heaeder__global-nav {
    margin-left: 3.5rem;
  }
}

.logo {
  max-width: 221px;
  max-width: 13.8125rem;
  width: 100%;
  height: inherit;
}

.logo__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.point {
  background-color: #F2F7F9;
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}

.point__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .point__inner {
    max-width: 1346px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.point__contents {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .point__contents {
    margin-top: 7rem;
  }
}

.price {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 76px;
  padding-bottom: 4.75rem;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .price {
    padding-top: 5.875rem;
  }
}

.price__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .price__inner {
    max-width: 1349px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.price__table-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.price__table-main-title {
  padding-left: 15px;
  padding-left: 0.9375rem;
  font-size: 20px;
  font-size: 1.25rem;
}

.price__table-note {
  font-size: 20px;
  font-size: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}

.price__table-wrapper {
  margin-top: 11px;
  margin-top: 0.6875rem;
  width: 100%;
  overflow-x: auto;
}

.price__table {
  width: 100%;
  border-top: 1.41px solid #E7EEF0;
  border-right: 1.41px solid #E7EEF0;
  border-left: 1.41px solid #E7EEF0;
  white-space: nowrap;
}

.price__table th {
  width: 14.2417244034%;
  text-align: center;
  border-right: 1.41px solid #E7EEF0;
  background-color: #309EC6;
  font-size: 16px;
  font-size: 1rem;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .price__table th {
    font-size: 1.58125rem;
  }
}

.price__table th:last-child {
  border-right: none;
}

.price__table th.price__table-head-time {
  text-align: left;
  padding-left: 12px;
  padding-left: 0.75rem;
}
@media screen and (min-width: 768px) {
  .price__table th.price__table-head-time {
    padding-left: 1rem;
  }
}

.price__table tbody td {
  width: 14.2417244034%;
  text-align: right;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  border-right: 1.41px solid #E7EEF0;
  border-bottom: 1.41px solid #E7EEF0;
  padding-inline: 15px;
  padding-inline: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .price__table tbody td {
    font-size: 1.40625rem;
    padding-right: 0.9375rem;
  }
}

.price__table tbody td:last-child {
  border-right: none;
}

.price__table tbody td.price__table-item {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .price__table tbody td.price__table-item {
    font-size: 1.58125rem;
  }
}

.price__table thead tr {
  height: 74px;
  height: 4.625rem;
}

.price__table tbody tr {
  height: 69px;
  height: 4.3125rem;
}

.price__table thead th:nth-of-type(1) {
  width: 28.7913779831%;
}

.section-title {
  text-align: center;
  position: relative;
  padding: 40px 0;
  padding: 2.5rem 0;
}

.section-title--triangle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 99%);
          transform: translate(-50%, 99%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 50px 0 50px;
  border-width: 2.5rem 3.125rem 0 3.125rem;
  border-color: #317FC7 transparent transparent transparent;
}

.section-title__main {
  position: relative;
  font-size: 40px;
  font-size: 2.5rem;
  z-index: 2;
}

.section-title__main::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  bottom: -1.25rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 50px;
  width: 3.125rem;
  height: 3px;
  height: 0.1875rem;
  background-color: #309EC6;
}

.section-title__sub {
  position: absolute;
  z-index: 1;
  color: #F4F4F4;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 60px;
  font-size: 3.75rem;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 375px) {
  .section-title__sub {
    font-size: 4.375rem;
  }
}
@media screen and (min-width: 768px) {
  .section-title__sub {
    font-size: 9.375rem;
  }
}

.section-title--blue {
  background: -webkit-gradient(linear, left top, right bottom, from(#319FC7), to(#3176C7));
  background: linear-gradient(to right bottom, #319FC7 0%, #3176C7 100%);
  color: #FFFFFF;
  padding: 24px 0;
  padding: 1.5rem 0;
}

.section-title--contact {
  padding: 75px 0 25px;
  padding: 4.6875rem 0 1.5625rem;
}

.section-title--blue .section-title__main {
  font-size: 36px;
  font-size: 2.25rem;
  -webkit-transform: translateY(-0.625rem);
          transform: translateY(-0.625rem);
}
@media screen and (min-width: 375px) {
  .section-title--blue .section-title__main {
    font-size: 3.125rem;
  }
}

.section-title--blue .section-title__main::after {
  display: none;
}

.section-title--blue .section-title__sub {
  color: #5395C1;
}

.section-title__yellow-large {
  display: inline-block;
  font-size: 80px;
  font-size: 5rem;
  line-height: 1;
  color: #F3DF28;
  font-weight: 500;
  -webkit-transform: translateY(0.25rem);
          transform: translateY(0.25rem);
}
@media screen and (min-width: 768px) {
  .section-title__yellow-large {
    font-size: 7.4375rem;
    -webkit-transform: translateY(0.8125rem);
            transform: translateY(0.8125rem);
  }
}

.section-title--price .section-title__main {
  color: #3081C6;
}

.section-title--price .section-title__main::after {
  background-color: #F3DF28;
}

.section-title--details .section-title__sub {
  color: #F1E99F;
}

.tel {
  display: block;
  color: #309EC6;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .tel {
    font-size: 2.1875rem;
  }
}

.tel::before {
  content: "";
  display: inline-block;
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  background-image: url(../images/tel.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-right: 3px;
  margin-right: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .tel::before {
    width: 1.4375rem;
    height: 1.4375rem;
  }
}
/*# sourceMappingURL=styles.css.map */


.saikouchiku{
  font-weight: 400;
    border: 1px solid;
    padding: 5px;
    display: inline-block;
}