@charset "UTF-8";

:root {
  --main-color: #28ACE8;
}

/*--------------------------------
 全体
---------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #111;
  font-feature-settings: "palt";
  line-height: 1.8;
  letter-spacing: 0.1rem;
}

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

a {
  text-decoration: underline;
}

@media (min-width: 751px) {
  a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  }
  }

/*--------------------------------
 レイアウト
---------------------------------*/
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px;
}

.section {
  padding: 20px 0;
}

.wrap {
  max-width: 90%;
  margin: 0 auto;
}

/*--- 画像右寄せ ---*/
.cover_right {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%; /* コンテナを画面全体の幅に */
  box-sizing: border-box;
  padding-bottom: 5rem;
}
.cover_right_text {
  flex: 1;
  padding-right: 5%;
  margin-left: 5.3%; /* 左側に余白を追加して中央寄りに */
  max-width: 60%; /* テキストコンテンツの最大幅を指定 */
}

.list_01 li {
  display: flex;
  align-items: center;
  padding-left: 30px; /* adjust the padding to fit the circle */
  border-bottom: 2px solid  var(--main-color);
  position: relative;
  padding: 0 0 15px 20px;
  margin: 20px 0;
}
.list_01 li:before {
  content: "";
  position: absolute;
  top: .4em;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: var(--main-color);
  border-radius: 50%;
}
.list_01 li:last-child {
  border: 0;
}

.list_02 li {
  display: flex;
  align-items: flex-start;
  padding-left: 30px; /* adjust the padding to fit the circle */
  position: relative;
}
.list_02 li:before {
  content: "";
  position: absolute;
  top: .4em;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: var(--main-color);
  border-radius: 50%;
}

.cover_right_img {
  width: 40%;
}
.cover_right_img img {
  max-width: 100%;
}

.page_service__img {
  flex: 0 0 auto;
  max-width: 100%;
  width: 700px;
  margin: auto;
}

.responsive-image {
  max-width: 100%;
  width: 700px;
  height: auto;
  display: block;/* 画像の余白をなくすためにブロック要素に */
}

/* メディアクエリでレイアウトを調整 */
@media (max-width: 768px) {
  .wrap {
    width: 90%;
    margin: 0 auto;
  }
  
  .list_01 {
    padding: 0 5%;
  }
  .list_01 li {
    text-align: left;
  }
  
  .cover_right {
      flex-direction: column;
      padding-bottom: 0;
  }

  .cover_right_text {
      padding-right: 0;
      padding-bottom: 20px;
      text-align: center;
      margin-left: 0; /* 余白をリセット */
      max-width: 100%; /* 最大幅をリセット */
      order: 1;
      text-align: left;
  }

  .page_service__img {
      width: 90%; /* 画面幅全体に */
      display: flex;
      justify-content: center;
      margin: 0 auto;
  }
}


/*--- カードリスト ---*/
.list_radius {
  width: 85%;
  margin: 0 auto;
}
.list_radius ul {
  display: flex;
  flex-wrap: wrap;
}
.list_radius ul li {
  width: 30%;
  display: block;
  border: 1px solid var(--main-color);
  border-radius: 15px;
  margin-bottom: 50px;
  margin-right: 5%;
}
.list_radius ul li:nth-child(3n) {
  margin-right: 0;
}
.list_radius ul li dl {
  padding: 20px 5% 30px 5%;
}
.list_radius ul li dl dt {
  color: var(--main-color);
  padding-bottom: 10px;
  font-size: 1.2em;
}

.list_radius ul li img {
  border-radius: 15px 15px 0 0;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .list_radius {
    width: 90%;
  }
  .list_radius ul {
    display: block;
    flex-wrap: wrap;
  }
  .list_radius ul li {
    width: 100%;
    margin-bottom: 40px;
    margin-right: 0;
  }
}



/*--------------------------------
 余白
---------------------------------*/
.m_t30 {
  margin-top: 30px;
}
.p_b10 {
  padding-bottom: 10px;
}
.p_b20 {
  padding-bottom: 20px;
}
.p_b30 {
  padding-bottom: 30px;
}
.p_b50 {
  padding-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .p_b50 {
    padding-bottom: 30px;
  }
}


/*--------------------------------
 テキスト
---------------------------------*/
.txt_c {
  text-align: center;
}
.txt_cs {
  text-align: center;
}
.txt_l {
  text-align: left;
}
.txt_r {
  text-align: right;
}
.f_wb {
  font-weight: bold;
}
.f_18 {
  font-size: 1.125rem;
}
.f_20 {
  font-size: 1.25rem;
}
.f_22 {
  font-size: 1.375rem;
}
.f_blue {
  color: var(--main-color);
}
.sp__only {
  display: none;
}
@media screen and (max-width: 750px) {
  .txt_c {
    text-align: left;
  }
  .sp_c {
    text-align: center;
  }
  .sp__only {
    display: inline-block;
  }
}

/*--------------------------------
 見出し
---------------------------------*/

.midashi_01 {
  font-weight: bold;
  margin-bottom:50px;
}
.midashi_01 span {
  font-weight: bold;
  font-size: 2.5em;
  color: var(--main-color);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.midashi_02 {
  margin: 10px 0 10px 0;
  padding-left: 40px; /* adjust the padding to fit the circle */
  font-size: 1.3em;
  font-weight: bold;
  position: relative;
}
.midashi_02::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: var(--main-color);
  border-radius: 50%;
}

.midashi_02::after {
  content: "";
  position: absolute;
  left: 11px; /* Adjusted to center the white dot */
  top: calc(50% - 4px); /* Adjusted to center the white dot */
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}

.midashi_s {
  position: relative;
  padding: 0 0 10px 20px;
  font-weight: bold;
}
.midashi_s:before {
  content: "";
  position: absolute;
  top: .4em;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: var(--main-color);
  border-radius: 50%;
}
.w90 {
  width: 90%;
  margin: 20px auto;
}


@media screen and (max-width: 750px) {
  .midashi_01 {
    margin:15px 0;
    line-height: 1.5;
    text-align: center;
  }
  .midashi_02 {
    width: 90%;
    margin: 20px auto;
  }
  .wrap__inner {
    width: 90%;
    margin: 0 auto;
  }
  .midashi_s {
    color: var(--main-color);
  }
  .midashi_s:before {
    display: none;
  }
}

/*--------------------------------
 table
---------------------------------*/
.table_01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.table_01 dt {
  width: 28%;
  border-bottom: 1px solid var(--main-color);
  text-align: center;
  padding: 30px 0;
}
.table_01 dd {
  width: 70%;
  border-bottom: 1px solid var(--main-color);
  padding: 30px 0;
}

.table_01 dt:last-of-type,
.table_01 dd:last-of-type {
  border-bottom: 0;
  padding-bottom: 5rem;
}

@media screen and (max-width: 750px) {
  .table_01 {
    display: block;
  }
  .table_01 dt {
    width: 100%;
    border-bottom: 0;
    background: #28ace8;
    text-align: center;
    padding: 10px 0;
    color: #fff;
  }
  .table_01 dd {
    width: 100%;
    border: 1px solid var(--main-color);
    padding: 20px 0 20px 0;
    text-align: center;
  }
  .table_01 dt:last-of-type,
.table_01 dd:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
}

/*--------------------------------
 ボタン
---------------------------------*/

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 50px;
  border: 1px solid #00a0e9;
  border-radius: 25px;
  background-color: white;
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
  margin: 0 auto;
}
.button .circle {
  width: 10px;
  height: 10px;
  background-color: #00a0e9;
  border-radius: 50%;
  position: absolute;
  left: 10px;
}
.button:hover {
  background-color: #00a0e9;
  color: white;
}
.button:hover .circle {
  background-color: #fff;
}



/*--------------------------------
ヘッダー
---------------------------------*/


.c-header {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  width: 95%;
  margin: 0 auto;
  padding: 10px 0 30px 0;
}

.header__logo-img {
  width: 395px;
  margin-top: 30px;
}

.c-header__list {
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
}

.c-header__list-item {
  list-style: none;
  text-decoration: none;
}

.c-header__list-link {
  font-weight: bold;
  display: block;
  margin-left: 40px;
  text-decoration: none;
  padding: 10px 0px;
}

.c-header__list-link:hover {
  filter: opacity(0.6); /* カスタマイズしてください */
}

.c-hamburger-menu {
  position: relative;
  z-index: 500;
}

@media screen and (max-width: 750px) {
  .c-header {
    padding: 10px;
  }

  .header__logo-img {
    max-width: 90%;
    margin-top: 10px;
  }
  .c-header__list-link {
    margin-left: 0;
  }
  .c-hamburger-menu__list {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s;
    top: 100%;
    width: 100%;
    color: #fff;
    z-index: 2;
    padding-top: 50px;
  }

  .c-hamburger-menu__list li {
    border: 1px solid #fff;
    width: 70%;
    margin: 20px auto;
    text-align: center;
    border-radius: 5px;
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
}

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #28ace8;
  cursor: pointer;
  display: none;
  height: 80vh;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  opacity: 1;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
  margin-top: 12vh;
}

.c-hamburger-menu__button {
  display: none;
}

@media screen and (max-width: 750px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 30px;
    justify-content: center;
    width: 32px;
  }
  .c-hamburger-menu__button .text {
    font-size: 0.7rem;
    width: 40px;
    background:none;
    text-align: center;
    font-weight: bold;
  }
}

.c-hamburger-menu__button-mark {
  background-color: #28ace8;
  display: block;
  height:2px;
  transition: 0.3s;
  width: 40px;
}

@media screen and (max-width: 750px) {
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(4px, -12px) rotate(45deg);
    transform-origin: 0%;
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(3px, 2px) rotate(-45deg);
    transform-origin: 0%;
  }
}




/*--------------------------------
メインビジュアル
---------------------------------*/
.mv {
  position: relative;
  height: 560px;
  padding-left: 20px;
  text-align: left;
  max-width: 100%;
  padding-top: 100px;
  padding-left: 10%;
}

.mv__title {
  font-size: min(11vw, 90px);
  line-height: 1;
  margin:28px 0 0px 0;
  color: #28ACE8;
  font-weight: bold;;
  font-family: "Lobster", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  text-align: left;
  letter-spacing: 0.1em;
}

.mv__subtitle {
  font-size: min(3.5vw, 28px);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 15px;
  text-align: left;
}

.mv__text-bg-color {
  background-color: #fff;
}

.mv__text-and {
  font-size: min(9vw, 85px);
  color: var(--main-color);
}

.mv__img {
  position: absolute;
  top: -110px;
  right: 0;
  z-index: -1;
  opacity: 0;
  width: 70%;
  height: 800px;
  background-image: url(img/bg_mv@2x.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  animation: 1s fadeInMvImg 0.2s forwards;
}

.mv__text {
    line-height: 2;
    width: 40%;
    padding-top: 50px;
    padding-right: 1em;
    margin-top: 0;
}
.sp_mv__img {
  display: none;
}


@keyframes fadeInMvImg {
  100% {
    opacity: 1;
  }
}


@media screen and (max-width: 750px) {
  
  .mv__subtitle,.mv__title {
    text-align: center;
    margin: 0;
  }
  .mv__title {
    margin-top: 15px;
    z-index: 100;
    position:  relative;        /* 位置指定 */
    top: 0;                  /* 位置指定 */
    left: 0;                /* 位置指定 */
    z-index: 100;
  }

.mv {
    height: auto;
    padding: 0;
    max-width: 100%;
    margin-top: 20px;
  }
  .mv__img {
    display: none;
  }
  .mv__text {
    width: 100%;
    padding: 0 5% 10px 5%;
    margin-top: -20px;
  }
  .sp_mv__img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: -30px;
    z-index: 50;
  }
}


/*--------------------------------
 フッター
---------------------------------*/
.PageHeader_wave {
  margin: -140px 0 -10px 0;
}

.footer {
  background-color: #E6F5FC;
  text-align: center;
  padding-bottom: 60px;
}
.footer__logo-img {
  width: 140%;
  max-width: 395px;
}
.footer__info {
  line-height: 1.5;
  text-align: center;
  margin: 20px 0;
}
.footer__info dt {
  font-weight: bold;
  color: var(--main-color);
}

.page-top {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 400px;
  z-index: 100;
  width: 80px;
  text-align: center;
}

.page-top__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
  border-radius: 50%;
  background-color: var(--main-color);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.page-top p {
  font-size: 0.8em;
  text-align: center;
  color: var(--main-color);
  font-weight: bold;
  padding-top: 10px;
}

.page-top__icon {
  font-size: 24px;
  color: #fff
}

.page-top__link:hover {
  opacity: 0.8;
}

.copy {
  margin-top: 50px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .footer {
    padding: 15px 0 30px 0;

  }
  .PageHeader_wave {
    margin: 0;
  }
  .footer__logo-img {
    width: 80%;
    height: auto;
  }
  #pager {
    display: none;
  }
  .copy {
    margin-top: 25px;
    font-size: 0.8em;
  }
}


/*--------------------------------
 index
---------------------------------*/

.service__body {
  display: flex;
  margin: 50px auto 50px auto;
}
.service__img {
  max-width: 41%;
}
.service__img img {
  max-width: 100%;
}
.service__text {
  width: 50%;
}
.service__text dl {
  font-weight: bold;
  margin: 10px 0 30px 5%;
}
.service__text dl dt {
  font-size: 2.8em;
  color: var(--main-color);
  font-family: "Montserrat", sans-serif;
}
.service__text dl dt span {
  display: none;
}
.service__text dl dd {
  font-size: 1.1em;
  letter-spacing: 0.1em;
}
.service__text ul {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
}
.service__text ul li {
  display: flex;
  align-items: center;
  width: 45%;
  margin: 10px 0 10px 5%;
  position: relative;
  padding-left: 30px; /* adjust the padding to fit the circle */
  border-bottom: 1px solid  var(--main-color);
}
.service__text ul li span {
  font-weight: bold;
  width: 96%;
  padding-left: 4%;
  padding-top: 20px;
  padding-bottom: 20px;
  line-height: 1.5;
}
.service__text ul li.no_line {
  border: none;
}

.service__text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: var(--main-color);
  border-radius: 50%;
}

.service__text ul li::after {
  content: "";
  position: absolute;
  left: 11px; /* Adjusted to center the white dot */
  top: calc(50% - 4px); /* Adjusted to center the white dot */
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}

.ippan {
  display: flex;
  width: 85%;
  margin: -50px auto 50px auto;
}
.ippan_service__img {
  width: 550px;
  margin-right: 50px;
}

@media screen and (max-width: 750px) {
  .service__body {
    margin: 0;
    width: 100%;
  }
  .service__text {
    width: 100%;
    background: url("./img/service@2x.png") no-repeat top left;
    background-size: 45% auto;
  }
  .service__text dl {
    margin-left: 50%;
    margin-right: 5%;
    margin-top: 0;
    margin-bottom: 10px;
  }
  .service__text dl dt {
    font-size: 1.5em;
  }
  .service__text dl dt span {
    display: inline-block;
  }
  .service__text ul {
    width: 100%;
    flex: none;
    margin-bottom: 30px;
  }
  .service__text ul li {
    width: 100%;
    margin: 0 5%;
  }
  .service__img {
    display: none;
  }
  .service__text ul li.no_line {
    border-bottom: 1px solid  var(--main-color);
  }
  .service__text ul li:last-child {
    border:0;
  }
  .ippan {
    display: block;
    width: 85%;
    margin: -20px auto 20px auto;
  }
  .ippan_service__img {
    width: 100%;
    margin-right: 0;
  }
  .ippan .midashi_02 {
    margin: 20px 0;
    line-height: 1.5;
  }
}


/*--------------------------------
 overview
---------------------------------*/

.table_01 .syutoku,
.table_01 .enkaku {
  display: flex;
  flex-wrap: wrap;
}

.table_01 .syutoku dt,
.table_01 .enkaku dt {
  border-bottom: 0;
  text-align: left;
  padding: 0 5% 0 0;
  font-weight: normal;
}
.table_01 .syutoku dd,
.table_01 .enkaku dd {
  border-bottom: 0;
  text-align: left;
  padding: 0;
}

.table_01 .syutoku dt {
  width: 45%;
}
.table_01 .syutoku dd {
  width: 50%;
}
.table_01 .enkaku dt {
  width: 23%;
  padding-right: 5%;
}
.table_01 .enkaku dd {
  width: 70%;
}

@media screen and (max-width: 750px) {
  .table_01 .syutoku {
  display: block;
  padding: 0 5%;
}
.table_01 .enkaku {
  border-bottom: 1px solid var(--main-color);
  display: block;
  padding: 0 5% 20px 5%;
}
.table_01 .syutoku dt,
.table_01 .enkaku dt {
  width: 100%;
  background: none;
  color: var(--main-color);
  font-weight: bold;
}
.table_01 .syutoku dd,
.table_01 .enkaku dd {
  width: 100%;
  border:0;
  padding: 2%;
  margin-bottom: 30px;
  background: #ECF8FE;
}

}