@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.gothic {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

.mincho {
  font-family: "ZenOldMincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

html {
  color: #333;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  word-break: break-all;
}

body {
  margin: 0;
}

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

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #333;
  text-decoration: none;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

summary::-webkit-details-marker {
  display: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

.outer-block {
  min-width: 1240px;
}

.inner-block {
  position: relative;
  width: auto;
  max-width: 1240px;
  padding: 0 20px;
}

.inner-block02 {
  position: relative;
  width: auto;
  max-width: 1040px;
  padding: 0 20px;
}

.inner-block03 {
  position: relative;
  width: auto;
  max-width: 940px;
  padding: 0 20px;
}

#wrapper {
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}
@font-face {
  src: url(../font/EBGaramond-Regular.ttf) format("truetype");
  font-family: "EB Garamond";
  font-weight: 400;
  font-display: swap;
}
@font-face {
  src: url(../font/ZenOldMincho-Bold.woff2) format("woff2");
  font-family: "ZenOldMincho";
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url(../font/ZenOldMincho-Regular.woff) format("woff");
  font-family: "ZenOldMincho";
  font-weight: 400;
  font-display: swap;
}
.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/*------------------------------------------------------------------------------
  reset SP
------------------------------------------------------------------------------*/
/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  width: -webkit-fill-available;
  z-index: 1000;
  background-color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 34px;
}
.c-header__logo {
  width: 200px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: calc(100% - 200px);
}
.c-header__nav {
  width: calc(100% - 275px);
  margin-left: auto;
  padding-right: 20px;
}
.c-header__search {
  width: 165px;
  margin-right: 10px;
}
.c-header__search .search-form {
  width: 100%;
}
.c-header__search .search-form__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #F0F4F7;
  border-radius: 50px;
  border: 1px solid #DFEAF0;
  padding: 5px;
}
.c-header__search .search-form input {
  display: inline-block;
  width: calc(100% - 40px);
  padding: 0 10px;
}
.c-header__search .search-form button {
  width: 40px;
  display: inline-block;
  background-color: #0585AC;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.c-header__contact {
  width: 100px;
  height: 80px;
}
.c-header__contact .link {
  background-color: #0469AC;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-header__contact .ico {
  display: block;
  text-align: center;
}
.c-header__contact .txt {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  display: block;
  margin-top: 5px;
}

.c-header-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.c-header-list > li {
  position: relative;
  cursor: default;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-header-list > li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 10px;
  background-color: #B6BEC4;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-header-list__link {
  padding: 0 clamp(10px, 1.4641288433vw, 20px);
  display: inline-block;
  font-size: clamp(11px, 1vw, 15px);
  white-space: nowrap;
  font-weight: 300;
  letter-spacing: 0;
  color: #3B3B3B;
  min-width: 80px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.c-header-sub-list {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  padding: 20px 10px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
}
.c-header-sub-list__link {
  padding: 5px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: "ZenOldMincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 14px;
}

.c-header-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-header-sp__search {
  background-color: #0585AC;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
}
.c-header-sp__search .txt {
  color: #fff;
  font-size: 8px;
  font-weight: bold;
  letter-spacing: 0.18em;
}
.c-header-sp__btn {
  background-color: #0469AC;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
}
.c-header-sp__btn .btn {
  width: 23px;
  height: 14px;
  position: relative;
}
.c-header-sp__btn .btn span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header-sp__btn .btn span:nth-child(1) {
  top: 0;
  left: 0;
}
.c-header-sp__btn .btn span:nth-child(2) {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
}
.c-header-sp__btn .btn span:nth-child(3) {
  bottom: 0;
  left: 0;
}
.c-header-sp__btn .txt {
  color: #fff;
  font-size: 8px;
  font-weight: bold;
  letter-spacing: 0.18em;
  margin-top: 8px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header-sp__btn.active .btn span:nth-child(1) {
  top: 50%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.c-header-sp__btn.active .btn span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.c-header-sp__btn.active .btn span:nth-child(3) {
  top: 50%;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.c-header-sp__nav {
  width: 100%;
  height: 100vh;
  overflow: scroll;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-top: solid #0469AC 4px;
  position: fixed;
  top: 60px;
  right: -100%;
  padding: 36px 20px 200px;
  z-index: 999;
}
.c-header-sp__nav.active {
  right: 0;
}
.c-header-sp__box.top {
  margin-top: 44px !important;
}
.c-header-sp__box + .c-header-sp__box {
  margin-top: 22px;
}
.c-header-sp__ttl {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.06em;
  padding-bottom: 6px;
  border-bottom: solid #D5DFE6 2px;
}
.c-header-sp__list {
  margin-top: 17px;
}

.c-header-sp-list.ptnn .c-header-sp-list__li + .c-header-sp-list__li {
  margin-top: 0;
}
.c-header-sp-list__li:not(:first-child) {
  margin-top: 13px;
}
.c-header-sp-list__link {
  display: block;
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  letter-spacing: 0.06em;
}
.c-header-sp-list__link::before {
  display: block;
  content: "";
  background: url(../img/common/arrow_right.svg) no-repeat;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 8px;
  left: 0;
}
.c-header-sp-list__link.fz18 {
  font-size: 18px;
}
.c-header-sp-list__link.bold {
  font-weight: bold;
}
.c-header-sp-list__link.non {
  padding-left: 0;
}
.c-header-sp-list__link.non::before {
  display: none;
}

.c-footer {
  padding: 60px 0;
  border-top: solid 1px #d5dfe6;
}
.c-footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-footer__left {
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-footer__left a {
  display: block;
}
.c-footer__right {
  width: calc(100% - 300px);
  padding-left: 100px;
}
.c-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
.c-footer__bottom {
  margin-top: 15px;
}
.c-footer__ttl {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #D5DFE6;
}
.c-footer__copy {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #748996;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.c-footer__page-top {
  margin-top: 60px;
  background-color: #F0F5F8;
  text-align: center;
  padding: 20px;
}
.c-footer__page-top .txt {
  font-size: 13px;
  padding: 20px;
  text-align: center;
  position: relative;
  padding-left: 20px;
  font-weight: bold;
  letter-spacing: 0.06em;
}
.c-footer__page-top .txt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  background: url(../img/common/arrow_right.svg) no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
}
.c-footer-list.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-footer-list.flex > li {
  min-width: 80px;
  margin-right: 25px;
}
.c-footer-list.flex > li:first-child {
  width: 180px;
}
.c-footer-list__link {
  display: inline-block;
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  font-size: 13px;
}
.c-footer-list__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/arrow_right.svg) no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
}
.c-footer-list__link.bold {
  font-weight: bold;
}

.l-mv01__ttl {
  font-family: "EB Garamond";
  letter-spacing: 0.08em;
  color: #0469ac;
}
.l-mv01__sub {
  letter-spacing: 0.08em;
}

.l-mv02 {
  background: #f0f4f7;
  text-align: center;
}
.l-mv02__ttl {
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.08em;
  color: #3b3b3b;
}

.l-mv03 {
  position: relative;
}
.l-mv03 .inner-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.l-mv03__image {
  position: relative;
}
.l-mv03__image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, right top, left top, from(rgba(213, 223, 230, 0)), to(#0469ac));
  background: linear-gradient(to left, rgba(213, 223, 230, 0) 0%, #0469ac 100%);
  position: absolute;
}
.l-mv03__title {
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.08em;
  color: #fff;
}

.c-info-wrap {
  padding: 110px 0 140px;
  overflow: hidden;
}
.c-article__ttl02 {
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
  border-bottom: solid #D8E5ED 4px;
}
.c-article__list02::-webkit-scrollbar {
  width: 6px;
}
.c-article__list02::-webkit-scrollbar-thumb {
  background: #B5CFE0;
  border-radius: 100px;
}
.c-article__list02::-webkit-scrollbar-track {
  background: #F4F4F4;
}
.c-article__search {
  padding-bottom: 15px;
}

.c-article-list {
  display: grid;
}
.c-article-list__li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-article-list__link {
  background: #F5F8FA;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.c-article-list__ttl .data {
  color: #0469AC;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.c-article-list__ttl .ttl {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 2.5em;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
}
.c-article-list__box {
  border-top: solid 1px #D5DFE6;
}
.c-article-list__img {
  overflow: hidden;
}
.c-article-list__img img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-article-list__tag .ttl02 {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.06em;
}
.c-article-list__cap {
  letter-spacing: 0;
  line-height: 1.8;
}

.c-tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
.c-tag-list.top {
  margin-top: 5px;
}
.c-tag-list__li {
  min-width: 48px;
  background: #62A4D0;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0;
  padding: 2px 5px;
  text-align: center;
  border-radius: 3px;
}
.c-tag-list__li.color {
  background: #63B4BA;
}
.c-tag-list__li a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-tag-list__li a:hover {
  opacity: 0.8;
}
.c-article-list02__li a {
  display: block;
  font-size: 14px;
  line-height: 2;
  overflow: hidden;
  width: 163px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.c-article-d__ttl {
  padding-bottom: 17px;
  border-bottom: solid 4px #D8E5ED;
}
.c-article-d__ttl .data {
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #0469AC;
}
.c-article-d__ttl .ttl {
  margin-top: 10px;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 0;
  color: #3B3B3B;
}
.c-article-d__tag {
  background: #D8E5ED;
}
.c-article-d__tag.top02 {
  margin-top: 30px;
}
.c-article-d__tag .ttl01 {
  font-weight: bold;
  letter-spacing: 0.06em;
}
.c-article-d__tag-list.long .c-tag-list__li {
  overflow: hidden;
}
.c-article-d__box a {
  text-decoration: underline;
  color: #0469AC;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-article-d__box > * + * {
  margin-top: 1.6em;
}
.c-article-d__box table {
  margin-top: 0;
  width: 100%;
}
.c-article-d__box table tr:first-child * {
  padding-top: 0;
}
.c-article-d__box table th {
  font-weight: bold;
  text-align: left;
  letter-spacing: 0.08em;
  color: #0469AC;
}
.c-article-d__box table td {
  letter-spacing: 0.06em;
}
.c-article-d__edit * + * {
  margin-top: 1.6em;
}
.c-article-d__edit h2 {
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: #0469AC;
}
.c-article-d__edit h3 {
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 0.06em;
  position: relative;
  padding-left: 20px;
}
.c-article-d__edit h3::before {
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #0469AC;
}
.c-article-d__edit h4 {
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: #0469AC;
}
.c-article-d__edit p {
  letter-spacing: 0.06em;
  line-height: 1.7;
}
.c-article-d__btn {
  max-width: 364px;
  margin: auto;
}

.c-ttl01__en {
  display: block;
  font-family: "EB Garamond";
  font-size: 59px;
  letter-spacing: 0.08em;
  line-height: 1.03;
  color: #0469ac;
}
.c-ttl01__en.pat-pc-right {
  text-align: right;
}
.c-ttl01__en.pat-nowrap {
  white-space: nowrap;
}
.c-ttl01__ja {
  display: block;
  font-size: 18px;
  letter-spacing: 0.08em;
  font-weight: bold;
}
.c-ttl01__ja.pat-pc-right {
  text-align: right;
}

.c-ttl02 {
  text-align: center;
  color: #0469ac;
  margin-bottom: 50px;
}
.c-ttl02 .text {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
  letter-spacing: 0.18em;
  font-size: 30px;
  font-weight: bold;
}

.c-ttl03 {
  position: relative;
  margin-bottom: 30px;
  font-size: 24px;
  padding-left: 20px;
  font-weight: bold;
}
.c-ttl03::before {
  width: 4px;
  height: 31px;
  position: absolute;
  content: "";
  left: 0;
  top: 4px;
  background-color: #62a4d0;
}

.c-ttl04 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-align: center;
}
.c-ttl04::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 16px auto 0;
  background-color: #62a4d0;
}

.c-ttl05 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 0.1em;
  border-bottom: 1px solid #62a4d0;
  color: #0469ac;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
}
.c-list01__icon .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-list01__txt .txt {
  font-weight: bold;
  letter-spacing: 0.06em;
}
.c-list01__txt .dec {
  position: relative;
  width: 28px;
  height: 28px;
  background: #0469ac;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-list01__txt .dec::before {
  display: block;
  content: "";
  width: 11px;
  height: 11px;
  -webkit-mask-image: url(../img/common/arrow-white.svg);
          mask-image: url(../img/common/arrow-white.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-list03 > li {
  border-top: 1px solid #d5dfe6;
}
.c-list03 > li:last-child {
  border-bottom: 1px solid #d5dfe6;
}
.c-list03__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 33px 20px 33px 10px;
}
.c-list03__ttl {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.c-list03__dec {
  width: 28px;
  height: 28px;
  position: relative;
  background: #0469ac;
  border-radius: 50%;
}
.c-list03__dec::before {
  display: block;
  content: "";
  width: 11px;
  height: 11px;
  -webkit-mask-image: url(../img/common/arrow-white.svg);
          mask-image: url(../img/common/arrow-white.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-list04 {
  display: grid;
}
.c-list04__li {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-list04__li.no {
  position: relative;
}
.c-list04__li.no::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #748996;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
}
.c-list04__li.no::after {
  display: block;
  content: "現在は募集して\aおりません";
  white-space: pre;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.06em;
  font-weight: bold;
  color: #fff;
  width: 134px;
  height: auto;
  position: absolute;
  top: 70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.c-list04__li.no .c-list04__link {
  pointer-events: none;
}
.c-list04__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-list04__img {
  overflow: hidden;
}
.c-list04__img img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-list04__box {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-list04__txt {
  font-weight: bold;
  letter-spacing: 0.06em;
  font-size: 20px;
}
.c-list04__dec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
}
.c-list04__dec .txt {
  font-weight: bold;
  letter-spacing: 0.04em;
  font-size: 15px;
}
.c-list04__dec .dec {
  position: relative;
  width: 28px;
  height: 28px;
  background: #0469ac;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-list04__dec .dec::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background: url(../img/common/arrow-white.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-cont__wrap.re {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.c-cont__box.left {
  padding-right: 0;
  padding-left: 100px;
}

.c-list-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.c-list-btn:hover .c-list-btn__dec {
  -webkit-transform: translate(5px);
          transform: translate(5px);
}
.c-list-btn__txt {
  font-weight: bold;
  font-size: 15px;
  color: #0469ac;
}
.c-list-btn__dec {
  width: 28px;
  height: 28px;
  position: relative;
  background: #0469ac;
  border-radius: 50%;
}
.c-list-btn__dec::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  -webkit-mask-image: url(../img/common/arrow-white.svg);
          mask-image: url(../img/common/arrow-white.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-btn01 {
  padding: 21px 20px 21px 30px;
  border-radius: 10px;
  background: -webkit-gradient(linear, right top, left top, from(#0469ac), to(#62a4d0));
  background: linear-gradient(right, #0469ac 0%, #62a4d0 100%);
  -webkit-box-shadow: 0px 0px 10px rgba(4, 105, 172, 0.1);
          box-shadow: 0px 0px 10px rgba(4, 105, 172, 0.1);
  position: relative;
}
.c-btn01.ptn01 {
  background: #EFF5FA;
  border: solid 1px #D8E5ED;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.c-btn01.ptn01 .c-btn01__txt {
  color: #0469AC;
}
.c-btn01.ptn01 .c-btn01__dec {
  background: none;
}
.c-btn01.ptn01 .c-btn01__dec::before {
  -webkit-mask-image: url(../img/news/news-dec.svg);
          mask-image: url(../img/news/news-dec.svg);
  width: 16px;
  height: 16px;
}
.c-btn01__txt {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.06em;
}
.c-btn01::before {
  content: "";
  width: 28px;
  height: 28px;
  position: absolute;
  background: #c5deef;
  border-radius: 50%;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-btn01::after {
  display: block;
  content: "";
  width: 11px;
  height: 11px;
  -webkit-mask-image: url(../img/common/arrow-white.svg);
          mask-image: url(../img/common/arrow-white.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #0469ac;
  position: absolute;
  top: 50%;
  right: 38px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-link {
  color: #0469ac;
  text-align: right;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.c-link::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url("../img/common/arrow-white.svg") no-repeat center/contain #0469ac;
  background-size: 12px;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-link:hover::after {
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}

.c-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 90px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-menu-list {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-menu-list__item {
  width: 25%;
  background-color: #f0f5f8;
  position: relative;
}
.c-menu-list__item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: calc(100% - 8px);
  background-color: #d5dfe6;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-menu-list__link {
  display: block;
  padding: 18px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.c-menu-list__link .txt {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  color: #3b3b3b;
  text-align: center;
  line-height: 1.2;
  margin-top: auto;
  font-family: "ZenOldMincho";
}
.c-menu-list__link .txt.top {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

.c-bread {
  background: #e4ecf2;
}
.c-bread__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-bread__list-li + .c-bread__list-li {
  position: relative;
}
.c-bread__list-li, .c-bread__list-link {
  color: #748996;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.5;
}
.c-table01.border th,
.c-table01.border td {
  border-top: solid 1px #d5dfe6;
  border-bottom: solid 1px #d5dfe6;
}
.c-table01 th {
  background: #cadfed;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.c-table01 th.ptn01 {
  -moz-text-align-last: left;
       text-align-last: left;
}
.c-table01 th.ptn02 {
  background: #f7fafc;
}
.c-table01 th.pink {
  background: #f2d4d4;
}
.c-table01 td {
  background: #f8f8f8;
  width: 100%;
  font-size: 15px;
  letter-spacing: 0.06em;
}
.c-table01 td.bold {
  font-weight: bold;
}
.c-table01 td.white {
  background: #fff;
}

.c-dec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
}
.c-dec.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}
.c-dec.right.ptn01 {
  padding-right: 35px;
}
.c-dec.right.ptn01::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-dec.right.ptn01::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  -webkit-mask-image: url(../img/common/arrow-white.svg);
          mask-image: url(../img/common/arrow-white.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #0469ac;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-dec .txt {
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #fff;
}
.c-dec .dec {
  position: relative;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-dec .dec::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  -webkit-mask-image: url(../img/common/arrow-white.svg);
          mask-image: url(../img/common/arrow-white.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #0469ac;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-tel-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.c-tel-modal.js-modal-body.active {
  display: block !important;
}
.c-tel-modal__cont {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 38px 18px;
  border-radius: 10px;
}
.c-tel-modal__close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
}
.c-tel-modal__ttl {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #0469AC;
  letter-spacing: 0.12em;
}

.c-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.c-search-modal.js-modal-body.active {
  display: block !important;
}
.c-search-modal__cont {
  width: 85%;
  position: absolute;
  top: 16%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
}
.c-search-modal__cont::before {
  display: block;
  content: "";
  position: absolute;
  top: -18px;
  right: 50px;
  width: 16px;
  height: 21px;
  background: #fff;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.c-search-modal__close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: -10px;
  right: -10px;
}
.c-search-modal__ttl {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #0469AC;
  letter-spacing: 0.12em;
}

.c-paging-area {
  font-size: 0;
  padding: 50px 0 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-paging-area > * {
  width: 40px;
  height: 40px;
  line-height: 1;
  color: #3B3B3B;
  background: #D8E5ED;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  margin: 0 5px 5px;
  padding: 10px 5px;
  position: relative;
  text-align: center;
  vertical-align: top;
}

.c-paging-area .back {
  padding: 0 32px;
}

.c-paging-area .page-numbers.current {
  background: #62A4D0;
  color: #fff;
}

.c-paging-area .page-numbers.dots {
  border-color: transparent;
  min-width: 1px;
  margin: 0;
}

.c-paging-area .next.page-numbers,
.c-paging-area .prev.page-numbers {
  position: relative;
  border: none;
  background: none;
}

.c-paging-area .next.page-numbers:before,
.c-paging-area .prev.page-numbers:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  -webkit-mask-image: url("../img/common/arrow-blue.svg");
          mask-image: url("../img/common/arrow-blue.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  background: #0469AC;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-paging-area .next.page-numbers:hover:before,
.c-paging-area .prev.page-numbers:hover:before {
  -webkit-mask-image: url("../img/common/arrow-blue.svg");
          mask-image: url("../img/common/arrow-blue.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #fff;
}

.c-paging-area .prev.page-numbers:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#pagetop {
  z-index: 100;
}
#pagetop a {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 62px;
  background-color: #e9a2af;
}
#pagetop img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-top: 2px;
}

.c-bread {
  padding: 10px 0;
  background-color: #e4ecf2;
}

.c-bread__list {
  font-size: 0;
  text-align: justify;
}
.c-bread__list > li {
  display: inline;
  font-size: 12px;
  line-height: 1.5;
  padding: 0 4px;
}
.c-bread__item {
  color: #748996;
}
.c-bread__item[href] {
  color: #0469ac;
  text-decoration: underline;
}

.c-kv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 344px;
  background: var(--kv) center center no-repeat;
  background-size: cover;
}
.c-kv::before {
  content: "";
  position: absolute;
  z-index: -1;
  opacity: 0.7;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#d5dfe6));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #d5dfe6);
  pointer-events: none;
  inset: 50% 0 0 0;
}
.c-kv::before.care-list-detail {
  z-index: 0;
}

.c-kv__ttl {
  margin-left: -50px;
  -webkit-transform: translateY(1em);
          transform: translateY(1em);
  font-size: 60px;
  line-height: 1;
}
.c-kv__ttl > .en {
  display: block;
  color: #0469ac;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  word-break: break-word;
}
.c-kv__ttl > .ja {
  display: block;
  margin-top: 0.75em;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.c-site-flow {
  display: grid;
  grid-template-columns: repeat(3, 277px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 31px;
  padding: 80px 0;
  background-color: #f8f8f8;
}

.c-site-flow__link {
  display: block;
}

.c-site-flow__img {
  overflow: hidden;
  height: 190px;
  display: block;
}
.c-site-flow__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.c-site-flow__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 12px;
  padding-right: 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.c-site-flow__txt::after {
  content: "";
  width: 24px;
  height: 24px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  border-radius: 50%;
  background: #0469ac url("../img/common/arrow-white.svg") no-repeat center center;
  background-size: 10px auto;
}

.c-modal {
  visibility: hidden;
  position: fixed;
  z-index: 9999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transition-property: visibility, opacity;
  transition-property: visibility, opacity;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.7);
  inset: 0;
  overscroll-behavior-y: contain;
}
.c-modal.is-active {
  visibility: visible;
  opacity: 1;
}

.c-modal__inner {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  padding: 80px;
}

.c-modal__container {
  position: relative;
  z-index: 0;
  width: 720px;
  margin: 0 auto;
  padding: 75px 85px;
  background-color: #fff;
}

.c-modal__item:not(.is-active) {
  display: none !important;
}

.c-modal__close {
  position: absolute;
  z-index: 1;
  top: -14px;
  right: -14px;
}

.c-modal__ttl {
  margin-bottom: 32px;
  padding: 15px 0;
  border-top: 1px solid #62a4d0;
  border-bottom: 1px solid #62a4d0;
  color: #0469ac;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.33;
  text-align: center;
}
.c-modal__ttl > small {
  font-size: 0.75em;
}

.c-modal__txt {
  font-size: 16px;
  letter-spacing: 0.18em;
  line-height: 2;
}

.c-wide-link {
  display: block;
  position: relative;
}
.c-wide-link .inner-block {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.c-wide-link .image {
  position: relative;
  display: block;
}
.c-wide-link .image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(213, 223, 230, 0)), to(#0469ac));
  background: linear-gradient(to right, rgba(213, 223, 230, 0) 0%, #0469ac 100%);
  position: absolute;
  top: 0;
  right: 0;
}
.c-wide-link .title {
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 20px;
}

.c-form {
  padding: 150px 0;
}

.c-form__lede {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: justify;
}

.c-form__list {
  margin-bottom: 85px;
}

.c-form__item {
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-align: justify;
}
.c-form__item a {
  color: #0469ac;
  text-decoration: underline;
}
.c-form__item + .c-form__item {
  margin-top: 10px;
}

.c-form__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 18px;
  margin: 0 0.5em;
  padding: 0 7px;
  border-radius: 3px;
  background-color: #0469ac;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  vertical-align: 0.2em;
}

.c-form__ttl {
  margin-bottom: 35px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d5dfe6;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.c-form__dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 14px;
}

.c-form__dd {
  padding: 12px 0;
}

.c-form__select {
  display: block;
  position: relative;
  z-index: 0;
}
.c-form__select::before {
  content: "";
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 0;
  width: 9px;
  height: 7px;
  margin: auto 0;
  background-color: #748996;
  pointer-events: none;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.c-form__select select {
  cursor: pointer;
}

.c-form__input {
  display: block;
  width: 100%;
  height: 45px;
  padding: 0 16px;
  border: 2px solid #d5dfe6;
  border-radius: 5px;
  letter-spacing: 0.06em;
}

textarea.c-form__input {
  min-height: 190px;
  padding: 12px 16px;
}

.c-form__name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.38;
}

.c-form__btn {
  margin-top: 38px;
  padding-top: 50px;
  border-top: 1px solid #d5dfe6;
}

.c-form__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 500px;
  height: 70px;
  padding-bottom: 2px;
  border-radius: 10px;
  background-image: linear-gradient(275deg, #0499ac, #62bfd0);
  -webkit-box-shadow: 0 0 10px 0 rgba(4, 105, 172, 0.1);
          box-shadow: 0 0 10px 0 rgba(4, 105, 172, 0.1);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.28em;
}
.c-form__submit.back {
  background: #999;
}

.c-form__radio-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px 40px;
  padding: 12px;
}

.c-form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-form__radio input {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
.c-form__radio input:checked + span::after {
  opacity: 1;
}
.c-form__radio .mwform-radio-field-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.c-form__radio .mwform-radio-field-text::before, .c-form__radio .mwform-radio-field-text::after {
  content: "";
  border-radius: 50%;
}
.c-form__radio .mwform-radio-field-text::before {
  width: 26px;
  height: 26px;
  border: solid 2px #d5dfe6;
}
.c-form__radio .mwform-radio-field-text::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  width: 14px;
  height: 14px;
  margin: auto 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  background-color: #0469ac;
}

.c-form__age {
  display: grid;
  grid-template-columns: 110px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 13px;
}
.c-form__age > span {
  font-size: 16px;
  letter-spacing: 0.06em;
}

.mw_wp_form_confirm .c-form__select::before {
  display: none;
}

.finish_message {
  text-align: center;
}

/*------------------------------------------------------------------------------
  animation
------------------------------------------------------------------------------*/
.anm-list > * {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
}

.anm-list > *.is-animated {
  -webkit-animation: fadeInUp 1.5s forwards;
  animation: fadeInUp 1.5s forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}
@keyframes fadeOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/*------------------------------------------------------------------------------
  original
------------------------------------------------------------------------------*/
.mv_anm {
  -webkit-animation: mvAnm 2s forwards;
          animation: mvAnm 2s forwards;
}

@-webkit-keyframes mvAnm {
  0% {
    -webkit-transform: scale(8) translate(-80%, -80%);
            transform: scale(8) translate(-80%, -80%);
    -webkit-filter: blur(20px);
            filter: blur(20px);
  }
  100% {
    -webkit-transform: scale(1.2) translate(0, 0);
            transform: scale(1.2) translate(0, 0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes mvAnm {
  0% {
    -webkit-transform: scale(8) translate(-80%, -80%);
            transform: scale(8) translate(-80%, -80%);
    -webkit-filter: blur(20px);
            filter: blur(20px);
  }
  100% {
    -webkit-transform: scale(1.2) translate(0, 0);
            transform: scale(1.2) translate(0, 0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes mvAnm2 {
  0% {
    -webkit-transform: scale(8) translate(-80%, -80%);
            transform: scale(8) translate(-80%, -80%);
    -webkit-filter: blur(20px);
            filter: blur(20px);
  }
  100% {
    -webkit-transform: scale(1.1) translate(0, 0);
            transform: scale(1.1) translate(0, 0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes mvAnm2 {
  0% {
    -webkit-transform: scale(8) translate(-80%, -80%);
            transform: scale(8) translate(-80%, -80%);
    -webkit-filter: blur(20px);
            filter: blur(20px);
  }
  100% {
    -webkit-transform: scale(1.1) translate(0, 0);
            transform: scale(1.1) translate(0, 0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.p_home {
  overflow: hidden;
}

.p_home-mv {
  position: relative;
}
.p_home-mv__img {
  width: 100vw;
  height: 105vh;
}
.p_home-mv__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p_home-mv__dec {
  position: absolute;
  top: 9.1508052709vw;
  left: 5vw;
  width: 528px;
  z-index: 2;
}
.p_home-mv__txt {
  position: absolute;
  right: 150px;
  bottom: 214px;
  bottom: 7vw;
  z-index: 2;
}
.p_home-mv__txt .txt:not(:first-child) {
  margin-left: 30px;
}
.p_top-tel__wrap::before {
  position: absolute;
  top: 21px;
  left: 50px;
  content: "";
  display: block;
  width: 200vw;
  height: calc(100% + 20px);
  background-color: #F0F5F8;
}
.p_top-tel__box {
  padding: 32px 0 0 0;
  position: relative;
  z-index: 2;
}

.p_top-tel-ttl {
  position: relative;
  z-index: 2;
}
.p_top-tel-ttl > span.en,
.p_top-tel-ttl > span.jp {
  display: block;
}
.p_top-tel-ttl > span.en {
  font-family: "EB Garamond";
  color: #0469AC;
  font-size: 34px;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.p_top-tel-ttl > span.jp {
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 2;
}

.p_top-tel-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 0;
}
.p_top-tel-list > li {
  width: 25%;
  border-left: 1px solid #D5DFE6;
}
.p_top-tel-list > li:nth-child(4n) {
  border-right: 1px solid #D5DFE6;
}
.p_top-tel-list__item {
  padding: 0 52px;
}
.p_top-tel-list__ttl {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.3;
}
.p_top-tel-list__addres {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
  line-height: 1;
}
.p_top-tel-list__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: underline;
  font-weight: bold;
  font-size: 16px;
  color: #0469AC;
  gap: 0 5px;
  margin-top: 7px;
}
.p_top-tel-list.modal-tel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 17px;
  margin-top: 30px;
}
.p_top-tel-list.modal-tel > li {
  width: auto;
  border: none;
}
.p_top-tel-list.modal-tel > li:nth-child(-n+6) {
  border-bottom: 1px solid #D5DFE6;
}
.p_top-tel-list.modal-tel .p_top-tel-list__item {
  padding: 20px 0;
}
.p_top-tel-list.modal-tel .p_top-tel-list__ttl {
  font-size: 13px;
  font-size: 11px;
}
.p_top-tel-list.modal-tel .p_top-tel-list__addres {
  font-size: 10px;
}
.p_top-tel-list.modal-tel .p_top-tel-list__tel .num {
  font-size: 15px;
  font-size: 13px;
}
.p_top-clinic-swiper__ttl {
  font-size: 13px;
  font-size: 13px;
  text-align: center;
  margin-top: 8px;
}
.p_top-lead__txt {
  position: relative;
}
.p_top-lead__txt-dec {
  font-family: "EB Garamond";
  font-size: 24px;
  letter-spacing: 0.08em;
  position: absolute;
  top: 0;
  left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  color: #0469AC;
}
.p_top-lead__txt-dec::after {
  display: block;
  content: "";
  width: 88px;
  height: 1px;
  background: #0469AC;
  margin-left: 10px;
}
.p_top-lead__txt-lead {
  font-weight: 700;
  font-size: 18px;
  line-height: 2.5;
  letter-spacing: 0.18em;
}

.p_top-info {
  position: relative;
}
.p_top-info::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(277deg, #F0F5F8, #FFFFFF);
  -webkit-clip-path: polygon(0 0, 100% 23%, 100% 85%, 0% 100%);
          clip-path: polygon(0 0, 100% 23%, 100% 85%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.p_top-up {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p_top-up::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(277deg, #F0F5F8, #FFFFFF);
  -webkit-clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 90%);
          clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 90%);
  position: absolute;
  top: 0;
  left: 0;
}
.p_top-up__dec02 {
  position: absolute;
  bottom: -113px;
  right: 0;
}

.p_top-up-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.p_top-up-list__li {
  border-bottom: solid 1px #D5DFE6;
}
.p_top-up-list__li:first-child {
  border-top: solid 1px #D5DFE6;
}
.p_top-up-list__data {
  font-weight: bold;
}
.p_top-up-list__txt {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0;
  color: #0577CB;
  text-decoration: underline;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 8px;
}
.p_top-up-about__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p_top-up-about__box02 {
  margin-top: 60px;
}
.p_top-up-about__btn {
  margin-top: 50px;
}
.p_home-info {
  margin-top: 60px;
}
.p_home-info .c-info-wrap {
  padding-top: 0 !important;
}

/* -----------------------------------------------
* privacy Module
* privacyページ用
-------------------------------------------------- */

.p_privacy-cont__lead {
  color: #3B3B3B;
}
.p_privacy-cont__item-ttl {
  border-bottom: solid 1px #D5DFE6;
  color: #3B3B3B;
  letter-spacing: 0.08em;
}
.p_privacy-cont__item-txt {
  letter-spacing: 0.02em;
  color: #3B3B3B;
  line-height: 2;
}

/* -----------------------------------------------
* woman Module
* womanページ用
-------------------------------------------------- */

.p_woman-cont__lead {
  color: #3B3B3B;
}
.p_woman-cont__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: solid 1px #D5DFE6;
  padding-bottom: 15px;
}
.p_woman-cont__ttl .ttl {
  letter-spacing: 0.08em;
}
.p_woman-cont__ttl .data {
  font-size: 13px;
  letter-spacing: 0.06em;
}
.p_woman-cont__table-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.p_woman-cont__table {
  width: calc(50% - 20px);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* -----------------------------------------------
* recruit Module
* recruitページ用
-------------------------------------------------- */
.p_recruit {
  --kv: url("../img/recruit/kv.jpg");
}
.p_recruit-cont__lead {
  font-weight: bold;
  letter-spacing: 0.18em;
}
.p_recruit-cont__list {
  position: relative;
}
.p_recruit-cont__list::before {
  content: "";
  display: block;
  width: 93.92%;
  height: calc(100% + 78px);
  position: absolute;
  top: 40px;
  right: 0;
  background: #F0F5F8;
}
.p_recruit-cont__list .c-list04 {
  position: relative;
}
.p_recruit-d-cont__btn {
  max-width: 500px;
  margin: auto;
}
.p_recruit-d-cont__link {
  text-align: center;
}

.p_recruit-d-link {
  font-size: 18px;
  letter-spacing: 0.08em;
  text-decoration: underline;
  color: #0469AC;
}

.tag-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tag-head__li {
  cursor: pointer;
  background: #D5DFE6;
  padding: 15px 64px;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.tag-head__li.active {
  color: #FFFFFF;
  background: #62A4D0;
}

/* -----------------------------------------------
* service Module
* serviceページ用
-------------------------------------------------- */
.p_service {
  --kv: url("../img/service/kv.jpg");
}
.p_service-cont__lead {
  font-weight: bold;
  letter-spacing: 0.06em;
  color: #3b3b3b;
  line-height: 1.75;
}
.p_service-cont__examples {
  background-color: #f0f5f8;
  padding: 60px 80px 160px;
  margin-top: 60px !important;
}
.p_service-cont__examples .examples-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px 70px;
  position: relative;
}
.p_service-cont__examples .examples-list__li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
.p_service-cont__examples .examples-list__text {
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 0.06em;
  color: #3b3b3b;
  line-height: 1.3;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p_service-cont__examples-letter {
  position: absolute;
  font-weight: bold;
  right: -40px;
  bottom: 0;
}
.p_service-cont__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0 60px;
  margin-top: -110px !important;
}
.p_service-cont__box {
  padding: 40px 50px;
  background-color: #d8e5ed;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.p_service-cont__heading {
  text-align: center;
  font-size: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  margin-bottom: 28px;
  letter-spacing: 0.18em;
}
.p_service-cont__text {
  font-size: 16px;
  letter-spacing: 0.04em;
}
.p_service-cont__notice {
  margin-top: 20Q;
  font-size: 12px;
  text-indent: -1em;
  padding-left: 1em;
}
.p_service-cont__other {
  margin-top: 80px !important;
  padding: 36px 110px 60px;
  background-color: #F0F5F8;
  font-size: 0.9rem;
  color: #666;
}
.p_service-cont__other-heading {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.p_service-cont__other ul li {
  line-height: 1.875;
  position: relative;
  font-size: 16px;
}
.p_service-cont__other ul li + li {
  margin-top: 16px;
}
.p_service-cont__other ul li::before {
  position: absolute;
  content: "";
  left: -20px;
  top: 9px;
  width: 7px;
  height: 7px;
  background-color: #0469ac;
  border-radius: 50%;
}

/* -----------------------------------------------
* service Module
* serviceページ用
-------------------------------------------------- */
.p_program {
  --kv: url("../img/program/kv.jpg");
}
.p_program-cont + .p_program-cont {
  margin-top: 250px;
}
.p_program-cont__lead {
  font-weight: bold;
  letter-spacing: 0.06em;
  color: #3b3b3b;
  line-height: 1.75;
}
.p_program-cont__activity {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(478px, 1fr));
  gap: 40px 40px;
  margin-top: 80px !important;
}
.p_program-cont__activity .c-btn01 {
  margin-top: 40px;
}
.p_program-cont__activity-box {
  border: 3px solid #d8e5ed;
  padding: 44px;
  position: relative;
}
.p_program-cont__activity-heading {
  font-size: 25px;
  color: #0469ac;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.p_program-cont__activity-image {
  margin-bottom: 28px;
  text-align: center;
}
.p_program-cont__activity-text {
  line-height: 2;
}
.p_program-cont__activity-notice {
  background-color: #d8e5ed;
  border-radius: 10px;
  padding: 26px 30px 20px;
  margin-top: 20px;
  margin-bottom: -200px;
  position: relative;
}
.p_program-cont__activity-notice .title {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.p_program-cont__activity-notice .text {
  font-size: 14px;
  line-height: 2;
}
.p_program-cont__lineup {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(478px, 1fr));
  gap: 40px 44px;
}
.p_program-cont__lineup-box {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  gap: 0;
}
.p_program-cont__lineup-box:hover .video img {
  opacity: 0.7 !important;
}
.p_program-cont__lineup .video {
  background-color: #3b3b3b;
  cursor: pointer;
  position: relative;
  width: 100%;
  max-height: 268px;
  overflow: hidden;
}
.p_program-cont__lineup .video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.p_program-cont__lineup .content {
  padding: 34px 40px 60px;
  background-color: #fff;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
.p_program-cont__lineup .title {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  border-bottom: 1px solid #d5dfe6;
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p_program-cont__lineup .text {
  line-height: 1.875;
}
.p_program-cont__lineup .image img {
  width: 100%;
  height: auto;
}
.p_program-cont.bg-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(2%, #fff), color-stop(2%, #f0f5f8), to(#f0f5f8));
  background: linear-gradient(180deg, #fff 0%, #fff 2%, #f0f5f8 2%, #f0f5f8 100%);
  padding-bottom: 150px;
}
.p_program-cont__info {
  margin-top: 80px !important;
}
.p_program-cont__info + .p_program-cont__info {
  margin-top: 50px !important;
}
.p_program-cont__info .info-area {
  background-color: #fff;
  padding: 50px;
}
.p_program-cont__info .info-box + .info-box {
  margin-top: 80px;
}
.p_program-cont__info .text {
  line-height: 1.875;
}
.p_program-cont__info .other .text {
  font-size: 15px;
}
.p_program-cont__info .other-wrap {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.p_program-cont__info .other-wrap img {
  width: 100%;
  height: auto;
}
.p_program-cont__info .image img {
  width: 100%;
  height: auto;
}
.p_program-cont__info .season .image {
  margin-bottom: 30px;
}
.p_program-cont__info .side-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.p_program-cont__info .side-wrap .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p_program-cont__info .gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

/* -----------------------------------------------
* service Module
* serviceページ用
-------------------------------------------------- */
.p_clinic {
  --kv: url("../img/clinic/kv.jpg");
}

.p_clinic .bg-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(2%, #fff), color-stop(2%, #f0f5f8), to(#f0f5f8));
  background: linear-gradient(180deg, #fff 0%, #fff 2%, #f0f5f8 2%, #f0f5f8 100%);
  padding-bottom: 150px;
  position: relative;
}
.p_clinic .bg-blue::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
}
.p_clinic .bg-blue02 {
  background: #f0f5f8;
}
.p_clinic-cont__map {
  display: grid;
  grid-template-columns: 1fr 3.31fr;
}
.p_clinic-cont__map iframe {
  width: 100%;
}
.p_clinic-cont__map .content {
  background-color: #f0f5f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.p_clinic-cont__map .content .title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.06em;
}
.p_clinic-cont__map .content .link {
  font-weight: bold;
  color: #0469ac;
  text-decoration: underline;
  letter-spacing: 0.06em;
}
.p_clinic-cont__map .content .link:hover {
  text-decoration: none;
}
.p_clinic-cont__map .map {
  overflow: hidden;
  height: 480px;
}
.p_clinic-cont__map .map iframe {
  height: calc(100% + 60px);
  margin-top: -61px;
}
.p_clinic-cont__map .map img {
  width: 100%;
  height: auto;
}
.p_clinic-cont__place {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 50px 30px;
}
.p_clinic-cont__place-box {
  position: relative;
}
.p_clinic-cont__place-box:hover .c-link::after {
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}
.p_clinic-cont__place-content {
  padding: 20px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p_clinic-cont__place-content .c-link {
  margin-top: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p_clinic-cont__place-heading {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.p_clinic-cont__place-image {
  text-align: center;
  max-height: 230px;
  overflow: hidden;
}
.p_clinic-cont__place-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_clinic-cont__place-text {
  text-align: center;
}
.p_clinic-cont__lineup {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(478px, 1fr));
  gap: 40px 44px;
}
.p_clinic-cont__lineup-box {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
}
.p_clinic-cont__lineup-box:hover .video img {
  opacity: 0.7 !important;
}
.p_clinic-cont__lineup .video {
  background-color: #3b3b3b;
  cursor: pointer;
  position: relative;
}
.p_clinic-cont__lineup .video::before {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  background-color: #ffffff;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0.5;
}
.p_clinic-cont__lineup .video::after {
  content: "";
  position: absolute;
  background: #ffffff;
  height: 51.9615242271px;
  width: 16px;
  height: 18px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.p_clinic-cont__lineup .video img {
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 100%;
  height: auto;
}
.p_clinic-cont__lineup .content {
  padding: 34px 40px 60px;
  background-color: #fff;
}
.p_clinic-cont__lineup .title {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  border-bottom: 1px solid #d5dfe6;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.p_clinic-cont__lineup .text {
  line-height: 1.875;
}
.p_clinic-cont__lineup .image img {
  width: 100%;
  height: auto;
}
.p_clinic-cont.bg-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(2%, #fff), color-stop(2%, #f0f5f8), to(#f0f5f8));
  background: linear-gradient(180deg, #fff 0%, #fff 2%, #f0f5f8 2%, #f0f5f8 100%);
  padding-bottom: 120px;
}
.p_clinic-cont__overseas {
  padding: 60px 0;
  margin-block: 80px;
  position: relative;
}
.p_clinic-cont__overseas::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 100%;
  background-color: #fff;
  top: 0;
  right: 0;
}
.p_clinic-cont__overseas-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p_clinic-cont__overseas .content {
  padding: 20px 100px;
}
.p_clinic-cont__overseas .image img {
  width: 100%;
  height: auto;
}
.p_clinic-cont__overseas .title {
  font-size: 26px;
  color: #0469ac;
  font-weight: bold;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.p_clinic-cont__overseas .subtitle {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.p_clinic-cont__overseas .text {
  line-height: 1.75;
  margin-bottom: 30px;
}

/* -----------------------------------------------
* service Module
* serviceページ用
-------------------------------------------------- */
.p_clinic-detail .l-mv03__image {
  width: 100%;
}
.p_clinic-detail .l-mv03__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p_clinic-detail .l-mv03__image:before {
  z-index: 2;
}
.p_clinic-detail .l-mv03__title {
  position: relative;
  z-index: 10;
}
.p_clinic-detail .detail-title {
  color: #0469ac;
  padding-bottom: 10px;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  border-bottom: 4px solid #d8e5ed;
  letter-spacing: 0.1em;
}
.p_clinic-detail .text-blue {
  color: #0469ac;
}
.p_clinic-detail .bg-blue {
  background: #f0f5f8;
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
}
.p_clinic-detail .bg-blue::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
}
.p_clinic-detail__news {
  padding-block: 90px;
}
.p_clinic-detail__news-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
.p_clinic-detail__news-title {
  font-size: 22px;
  letter-spacing: 0.08em;
}
.p_clinic-detail__news-articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
}
.p_clinic-detail__news-articles a {
  padding: 20px 0;
  border-top: 1px solid #D5DFE6;
}
.p_clinic-detail__news-articles a:hover .title {
  text-decoration: none;
}
.p_clinic-detail__news-articles time {
  display: block;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.06em;
}
.p_clinic-detail__news-articles .title {
  font-size: 14px;
  text-decoration: underline;
  color: #0577CB;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 8px;
}
.p_clinic-detail__guide .c-ttl04 {
  margin-bottom: 40px;
}
.p_clinic-detail__daynight-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(242px, 1fr));
  gap: 10px;
}
.p_clinic-detail__daynight-wrap .care {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}
.p_clinic-detail__daynight-wrap .text {
  font-size: 14px;
  font-weight: bold;
  padding: 2px 16px;
  line-height: 1.2;
  width: calc(100% - 70px);
}
.p_clinic-detail__daynight-wrap .image {
  width: 70px;
  height: 70px;
}
.p_clinic-detail__daynight-wrap .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_clinic-detail__target-area {
  background-color: #fff;
  padding: 40px 70px 60px;
  margin-top: 90px;
}
.p_clinic-detail__target-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #0469ac;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.p_clinic-detail__target-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(425px, 1fr));
  gap: 10px;
}
.p_clinic-detail__target-wrap .desease {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f0f5f8;
  border: 2px solid #d8e5ed;
  font-weight: bold;
  padding: 2px;
  line-height: 1.2;
  min-height: 60px;
  letter-spacing: 0.06em;
  text-align: center;
  border-radius: 5px;
}
.p_clinic-detail__schedule-area {
  margin-top: 90px;
}
.p_clinic-detail .schedule-table table {
  width: 100%;
  border-collapse: collapse;
}
.p_clinic-detail .schedule-table table tr:first-child th:first-child {
  background-color: #004674;
}
.p_clinic-detail .schedule-table table th,
.p_clinic-detail .schedule-table table td {
  border: 2px solid #f0f5f8;
  text-align: center;
  padding: 10px;
  line-height: 1.25;
  height: 60px;
  letter-spacing: 0.04em;
}
.p_clinic-detail .schedule-table table th {
  background-color: #0469ac;
  color: #fff;
  font-weight: bold;
  width: 130px;
}
.p_clinic-detail .schedule-table table th:first-child {
  width: 214px;
}
.p_clinic-detail .schedule-table table td {
  background-color: #f9f9f9;
}
.p_clinic-detail .schedule-table table td:nth-child(1) {
  background-color: #dce6eb;
  font-weight: bold;
}
.p_clinic-detail .schedule-table table .circle {
  color: #62a4d0;
  font-weight: bold;
  font-size: 20px;
}
.p_clinic-detail .schedule-table table .border {
  color: #b6bec4;
}
.p_clinic-detail .schedule-table table .blank {
  height: 10px;
  padding: 0;
  background-color: #f0f5f8 !important;
}
.p_clinic-detail .notice {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.06em;
  margin-top: 20px;
}
.p_clinic-detail .note {
  margin-top: 20px;
  letter-spacing: 0.06em;
}
.p_clinic-detail__access-area {
  margin-top: 100px;
}
.p_clinic-detail__access-area .text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.p_clinic-detail__access-wrap {
  width: 100%;
  height: 340px;
}
.p_clinic-detail__access-wrap iframe {
  width: 100%;
  height: 100%;
}
.p_clinic-detail__director {
  padding-top: 80px;
  padding-bottom: 90px;
}
.p_clinic-detail__director-title {
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.p_clinic-detail__director-title .position {
  font-size: 24px;
}
.p_clinic-detail__director-title .name {
  font-size: 28px;
  color: #0469ac;
}
.p_clinic-detail__director .greeting-box {
  border: 3px solid #d8e5ed;
  padding: 30px 50px;
}
.p_clinic-detail__director .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.p_clinic-detail__director .wrap .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p_clinic-detail__director .wrap .text {
  line-height: 1.875;
}
.p_clinic-detail__director .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, right top, left top, from(#0469ac), to(#62a4d0));
  background: linear-gradient(right, #0469ac 0%, #62a4d0 100%);
  border-radius: 10px;
  color: #fff;
  gap: 46px;
}
.p_clinic-detail__director .tel .text {
  font-size: 18px;
  letter-spacing: 0.06em;
  font-weight: bold;
}
.p_clinic-detail__director .tel .number {
  font-size: 44px;
  letter-spacing: 0.08em;
  font-family: "EB Garamond";
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.p_clinic-detail__director .tel .number::before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: url("../img/common/icon_tel-blue.svg") no-repeat center/contain #c5deef;
  background-size: 15px 20px;
}
.p_clinic-detail__director .pdf {
  text-align: center;
  margin-top: 80px;
}
.p_clinic-detail__director .pdf .link {
  font-weight: bold;
  text-decoration: underline;
  color: #0469ac;
}
.p_clinic-detail__director .pdf .thumbnail {
  margin-top: 30px;
}
.p_clinic-detail__director .pdf .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p_clinic-detail__news-title {
  font-size: 22px;
  letter-spacing: 0.08em;
}

/* -----------------------------------------------
* attractiveness Module
* attractivenessページ用
-------------------------------------------------- */
.p_attractiveness {
  --kv: url("../img/attractiveness/kv.jpg");
}

.p_attractiveness .bg-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(2%, #fff), color-stop(2%, #f0f5f8), to(#f0f5f8));
  background: linear-gradient(180deg, #fff 0%, #fff 2%, #f0f5f8 2%, #f0f5f8 100%);
  padding-bottom: 150px;
  position: relative;
}
.p_attractiveness .bg-blue::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
}
.p_attractiveness .bg-blue02 {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(24%, #fff), color-stop(24%, #f0f5f8), to(#f0f5f8));
  background: linear-gradient(180deg, #fff 0%, #fff 24%, #f0f5f8 24%, #f0f5f8 100%);
  padding-bottom: 80px;
  position: relative;
}
.p_attractiveness .bg-blue02::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
}
.p_attractiveness .bg-blue02:has(.reverse)::before {
  left: auto;
  right: 0;
}
.p_attractiveness-cont__lead {
  text-align: center;
  margin-top: 150px !important;
}
.p_attractiveness-cont__lead-title {
  font-size: 24px;
  letter-spacing: 0.06em;
  color: #62a4d0;
  margin-bottom: 6px;
}
.p_attractiveness-cont__lead-text {
  font-size: 16px;
  letter-spacing: 0.06em;
}
.p_attractiveness-cont__point {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(318px, 1fr));
  gap: 60px 20px;
}
.p_attractiveness-cont__point-box {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
.p_attractiveness-cont__point-content {
  padding: 30px 20px;
  background-color: #fff;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
.p_attractiveness-cont__point-heading {
  color: #0469ac;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #d5dfe6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p_attractiveness-cont__point-image {
  text-align: center;
}
.p_attractiveness-cont__point-text {
  line-height: 1.875;
}
.p_attractiveness-cont__wanted {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 150px !important;
  position: relative;
}
.p_attractiveness-cont__wanted .title {
  font-size: 32px;
  line-height: 1.8;
  color: #0469ac;
  margin-bottom: 20px;
}
.p_attractiveness-cont__wanted .subtitle {
  font-size: 20px;
  color: #0469ac;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 1px;
  margin-bottom: 30px;
}
.p_attractiveness-cont__wanted .text {
  line-height: 2;
  letter-spacing: 0.04em;
}
.p_attractiveness-cont__wanted .image {
  position: relative;
  -webkit-box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.1);
}
.p_attractiveness-cont__wanted .image img {
  width: 100%;
  height: auto;
}

.p_contact {
  --kv: url("../img/contact/kv.jpg");
}

.p_entry {
  --kv: url("../img/entry/kv.jpg");
}

.p_entry__contact {
  margin-top: 90px;
  padding: 25px 8px;
  background-color: #f0f5f8;
}

.p_entry__contact__ttl {
  color: #0469ac;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}

.p_entry__contact__body {
  padding: 10px 40px;
  border-left: 2px solid #d5dfe6;
}

.p_entry__contact__txt {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.p_entry__contact__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #0469ac;
  font-family: "EB Garamond", serif;
  font-size: 36px;
  letter-spacing: 0.06em;
  line-height: 1.15;
}
.p_entry__contact__tel::before {
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0469ac url("../img/common/icon_tel-white.svg") center center no-repeat;
  background-size: 16px auto;
}

.p_overseas {
  --kv: url("../img/overseas/kv.jpg");
}

.p_overseas-img {
  position: relative;
  text-align: center;
  margin-top: 160px;
  width: 100%;
}
.p_overseas-img__bg {
  width: 100%;
  position: absolute;
  top: 115px;
  right: 0;
  z-index: -1;
}
.p_overseas-img__bg .inner {
  background-color: #f00;
  margin-inline: auto;
  max-width: 1200px;
  width: 100%;
}
.p_overseas-img__bg .inner .box {
  margin-right: calc(50% - 50vw);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F0F5F8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 533px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.p_overseas-img h2 {
  font-family: "EB Garamond";
  color: #0469AC;
  font-size: 40px;
  line-height: 18px;
  letter-spacing: 0.04em;
  margin-top: 42px;
}
.p_overseas-img h2 span {
  display: inline-block;
}

.p_overseas-info {
  padding: 180px 0 100px;
}
.p_overseas-info .inner-block02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p_overseas-info__img {
  width: 387px;
}
.p_overseas-info__img .info02 {
  translate: -100px 43px;
}
.p_overseas-info__txt {
  width: 500px;
}
.p_overseas-info__txt p {
  font-size: 16px;
  line-height: 42px;
  letter-spacing: 0.06em;
  color: #3B3B3B;
  margin-bottom: 68px;
}
.p_overseas-info__txt p:last-child {
  margin-bottom: 0;
}

.p_overseas-loop {
  position: relative;
  width: 100%;
  padding: 83px 0 153px;
}
.p_overseas-loop__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  gap: 20px;
}
.p_overseas-loop__wrap--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-animation: scroll 50s linear infinite;
          animation: scroll 50s linear infinite;
}
.p_overseas-loop__wrap--item li {
  width: 297px;
  height: 204px;
}
.p_overseas-loop__wrap--item li img {
  width: 100%;
  height: auto;
}
.p_overseas-loop__bg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.p_overseas-loop__bg .inner {
  background-color: #F0F5F8;
  margin-inline: auto;
  max-width: 1200px;
  width: 100%;
}
.p_overseas-loop__bg .inner .box {
  margin-left: calc(50% - 50vw);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F0F5F8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 442px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
  100% {
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
  100% {
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
}
img.message-deco01 {
  position: absolute;
  top: 118px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}

.p_message-mv {
  position: relative;
  padding: 54px 0 84px;
}
.p_message-mv__img {
  position: absolute;
  top: -54px;
  right: -71px;
  z-index: -1;
  width: 767px;
}
.p_message-mv__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p_message-mv__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 50px;
}
.p_message-mv__txt--item .mv-title {
  font-size: 40px;
  line-height: 58px;
  letter-spacing: 0.04em;
  color: #0469ac;
  margin-top: 60px;
}
.p_message-mv__txt--item .mv-subtitle {
  position: relative;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.08em;
  color: #62a4d0;
  padding-bottom: 80px;
}
.p_message-mv__txt--item .mv-subtitle::after {
  content: "";
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #62a4d0;
}
.p_message-mv__txt--item .director-post {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.08em;
  color: #3b3b3b;
  margin-bottom: 5px;
}
.p_message-mv__txt--item .director-name {
  font-size: 30px;
  line-height: 32px;
  letter-spacing: 0.08em;
  color: #3b3b3b;
}

.p_message-profile {
  padding: 100px 0 200px;
}
.p_message-profile__header h4 {
  font-family: "EB Garamond";
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.1em;
  color: #0469ac;
  border-bottom: 4px solid #d8e5ed;
  margin-bottom: 50px;
  padding-bottom: 10px;
}
.p_message-profile__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p_message-profile__contents .profile01 {
  width: 40%;
}
.p_message-profile__contents .profile02 {
  width: 53%;
}
.p_message-profile__contents--item ul {
  margin-bottom: 40px;
}
.p_message-profile__contents--item ul li {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.08em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p_message-profile__contents--item ul li .blue {
  color: #0469AC;
}
.p_message-profile__contents--item ul li col {
  color: #0469ac;
}
.p_message-profile__contents--item p {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.04em;
}
.p_message-profile__contents--item dl div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 34px;
}
.p_message-profile__contents--item dl div dt {
  color: #0469ac;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.04em;
}
.p_message-profile__contents--item dl div dd {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.04em;
}
.p_message-profile__contents--item .list-box__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 34px;
}
.p_message-profile__contents--item .list-box__item .ttl {
  color: #0469ac;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.04em;
}
.p_message-profile__contents--item .list-box__item .txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.04em;
}

.p_message-thema {
  padding-bottom: 220px;
  position: relative;
}
.p_message-thema img.message-deco02 {
  position: absolute;
  top: 33.5%;
  right: 0;
  width: 100%;
}
.p_message-thema__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p_message-thema__contents.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin: 70px 0 92px;
}
.p_message-thema__contents--img {
  width: 50%;
  padding-top: 60px;
  position: relative;
}
.p_message-thema__contents--img img.theme-img01 {
  translate: -129px 52px;
  width: 91%;
}
.p_message-thema__contents--img img.theme-img02 {
  width: 92%;
  translate: -31px -79px;
}
.p_message-thema__contents--img img.theme-img03 {
  width: 104%;
  translate: 126px 5px;
  position: absolute;
  max-width: none;
}
.p_message-thema__contents--img img.theme-img04 {
  position: absolute;
  top: 21%;
  left: -31.4%;
  width: 112%;
  z-index: 1;
  max-width: none;
}
.p_message-thema__contents--img img.theme-img05 {
  position: absolute;
  top: 50%;
  left: -46%;
  width: 111%;
  max-width: none;
}
.p_message-thema__contents--txt {
  width: 50%;
}
.p_message-thema__contents--txt img {
  width: 169px;
  height: auto;
  translate: -82px 50px;
}
.p_message-thema__contents--txt .theme-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: 0.08em;
  color: #0469ac;
  margin-bottom: 26px;
}
.p_message-thema__contents--txt p {
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.04em;
  color: #3b3b3b;
  margin-bottom: 30px;
}

.p_message-books {
  padding: 80px 0 176px;
  background-color: #f0f5f8;
}
.p_message-books h2 {
  text-align: center;
  color: #3b3b3b;
  position: relative;
  font-size: 34px;
  line-height: 32px;
  letter-spacing: 0.18em;
  margin-bottom: 100px;
}
.p_message-books h2::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  translate: -50% 0;
  width: 40px;
  height: 2px;
  background-color: #62a4d0;
}
.p_message-books__block {
  margin-bottom: 40px;
}
.p_message-books__block.books__block02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p_message-books__block.books__block02 .p_message-books__block--item {
  width: 580px;
}
.p_message-books__block--item {
  background-color: #fff;
  padding: 60px 100px 77px;
}
.p_message-books__block--item .books-cat-title {
  color: #0469ac;
  text-align: center;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.18em;
  margin-bottom: 62px;
}
.p_message-books__block--item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 22px 65px;
}
.p_message-books__block--item ul li {
  width: 148px;
}
.p_message-books__block--item ul li.pb22 {
  padding-bottom: 22px;
}
.p_message-books__block--item ul li img {
  width: 100%;
  height: auto;
  min-height: 217px;
  margin-bottom: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p_message-books__block--item ul li .book-title {
  font-size: 13px;
  font-weight: bold;
  color: #3b3b3b;
  line-height: 22px;
  margin-bottom: 2px;
  white-space: nowrap;
}
.p_message-books__block--item ul li p {
  color: #748996;
  font-size: 14px;
  line-height: 30px;
}

.p_guest {
  --kv: url("../img/guest/kv.jpg");
}

.p_guest__about {
  padding: 135px 0 0;
}

.p_guest__about__ttl {
  margin-bottom: 80px;
}

.p_guest__about__wrap {
  position: relative;
  z-index: 0;
  padding-bottom: 110px;
}
.p_guest__about__wrap::before {
  content: "";
  position: absolute;
  background-color: #f0f5f8;
  pointer-events: none;
  inset: 32px 0 0 calc(50% - 600px);
}

.p_guest__about__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 90px 40px;
}
.p_guest__about__list > li {
  display: grid;
  grid-template-rows: auto 1fr;
}

.p_guest__about__list__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: -108px 15px 0;
  padding: 55px 50px 50px;
  background-color: #fff;
}

.p_guest__about__list__ttl {
  margin-bottom: 16px;
  color: #0469ac;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-align: center;
}

.p_guest__about__list__txt {
  margin-bottom: 32px;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.88;
  text-align: justify;
}

.p_guest__about__list__link {
  display: grid;
  grid-template-columns: 1fr 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 110px;
  padding: 0 20px;
  background-color: #f0f5f8;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.75;
}
.p_guest__about__list__link::after {
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  border-radius: 50%;
  background: #0469ac url("../img/common/arrow-white.svg") no-repeat center center;
  background-size: 12px auto;
  aspect-ratio: 1/1;
}

.p_guest__flow {
  padding: 150px 0 0;
}

.p_guest__flow__ttl {
  margin-bottom: 115px;
}

.p_guest__flow__step {
  padding-bottom: 150px;
}

.p_guest__flow__step__item {
  position: relative;
  z-index: 0;
  padding: 24px 108px 24px 60px;
  border: 1px solid #62a4d0;
}
.p_guest__flow__step__item + .p_guest__flow__step__item {
  margin-top: 75px;
}
.p_guest__flow__step__item + .p_guest__flow__step__item::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: calc(100% + 25px);
  left: 0;
  width: 47px;
  margin: 0 auto;
  background-color: #d5dfe6;
  aspect-ratio: 47/20;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.p_guest__flow__step__num {
  position: absolute;
  bottom: 100%;
  left: -1px;
  padding: 5px 19px 4px;
  background-color: #62a4d0;
  color: #fff;
  font-family: "EB Garamond", serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.p_guest__flow__step__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #d8e5ed;
  aspect-ratio: 1/1;
}

.p_guest__flow__step__ttl {
  margin-bottom: 12px;
  color: #0469ac;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.p_guest__flow__step__txt {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.88;
  text-align: justify;
}

.p_guest__flow__you {
  position: relative;
  z-index: 0;
  padding: 60px 0 0;
}
.p_guest__flow__you::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #f0f5f8;
  pointer-events: none;
  inset: 0 calc(50% - 600px) 70px 0;
}

.p_guest__flow__you__col__img {
  position: relative;
  z-index: 1;
}

.p_guest__flow__you__col__body {
  margin: 40px 0 0 -225px;
  padding: 60px 60px 90px 261px;
  background-color: #fff;
}

.p_guest__flow__you__col__ttl {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.p_guest__flow__you__col__txt {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.88;
  text-align: justify;
}

.p_guest__flow__you__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 70px;
  padding: 48px 10px;
  background-color: #d8e5ed;
}

.p_guest__flow__you__box__item {
  display: grid;
  grid-template-rows: 173px 1fr auto;
  padding: 0 80px;
}

.p_guest__flow__you__box__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  margin: -8px auto 0;
  padding-bottom: 8px;
  border-radius: 50%;
  background-color: #fff;
  aspect-ratio: 1/1;
}

.p_guest__flow__you__box__ttl {
  padding: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-align: center;
}

.p_guest__flow__you__box__txt {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.88;
  text-align: justify;
}

.p_faq {
  --kv: url("../img/faq/kv.jpg");
}

.p_faq__main {
  padding: 150px 0 0;
}

.p_faq__main__heading {
  width: 500px;
  margin: 0 auto;
}

.p_faq__main__heading__txt {
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  text-indent: 1em;
}

.p_faq__list {
  display: grid;
  gap: 20px 0;
  margin-top: 90px;
}

.p_faq__list__item {
  border: 1px solid #d5dfe6;
  position: relative;
}

.p_faq__container {
  display: grid;
  position: relative;
  z-index: 0;
  grid-template-columns: 95px 1fr;
  padding: 14px 95px 24px 0;
}
.p_faq__container > .en {
  padding-left: 8px;
  color: #0469ac;
  font-family: "EB Garamond", serif;
  font-size: 36px;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-align: center;
}
.p_faq__container > .arrow {
  position: absolute;
  z-index: 1;
  top: 28px;
  right: 32px;
  width: 31px;
  padding: 8px;
}
.p_faq__container > .arrow img {
  display: block;
  width: 100%;
}

.p_faq__list_ttl {
  background-color: #d8e5ed;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.p_faq__list_ttl > .ja {
  padding-top: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: justify;
}

.p_faq__list__body {
  overflow: hidden;
}

.p_faq__list__body__inner > .arrow {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.p_faq__list__body__inner > .txt {
  padding: 14px 0;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.88;
  text-align: justify;
}

.p_care-list {
  --kv: url("../img/care-list/kv.jpg");
}

.p_care-list__main {
  padding: 150px 0 125px;
}

.p_care-list__wrap {
  position: relative;
  z-index: 0;
  padding-bottom: 120px;
}
.p_care-list__wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #f0f5f8;
  pointer-events: none;
  inset: 150px 0 0 calc(50% - 600px);
}

.p_care-list__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 22px;
}
.p_care-list__list > li {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 10px 0;
}

.p_care-list__item {
  padding: 0 28px 10px;
  background-color: #fff;
}
.p_care-list__item p {
  font-weight: bold;
  font-size: 14px;
  line-height: 2;
}

.p_care-list__img {
  margin: 0 -28px;
}
.p_care-list__img > img {
  width: 100%;
}

.p_care-list__ttl {
  padding: 22px 0 16px;
  border-bottom: 1px solid #d5dfe6;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p_care-list__lede {
  margin-bottom: -20px;
  padding-top: 28px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.43;
  text-align: justify;
}

.p_care-list__txt {
  padding: 22px 0 16px;
  font-size: 16px;
  line-height: 1.88;
  text-align: justify;
}

.p_care-list__detail {
  padding: 28px 0 16px;
}
.p_care-list__detail > li {
  display: grid;
  grid-template-columns: 8px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.43;
  text-align: justify;
}
.p_care-list__detail > li::before {
  content: "";
  margin-top: 0.4em;
  border-radius: 50%;
  background-color: #0469ac;
  aspect-ratio: 1/1;
}
.p_care-list__detail > li + li {
  margin-top: 12px;
}

.p_care-list__note {
  font-size: 12px;
  line-height: 1.5;
  text-align: justify;
}

.p_care-list__etc {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.43;
  text-align: right;
}

.p_care-list__subject {
  margin: 0 -18px;
  padding: 18px 22px 20px;
  background-color: #f0f5f8;
  margin-top: 16px;
}

.p_care-list__subject__ttl {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}

.p_care-list__subject__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 8px;
}
.p_care-list__subject__list > li a {
  padding: 9px 0 7px;
  border-radius: 3px;
  background-color: #0469ac;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  display: block;
}
.p_care-list__subject__list > li.is-disabled a {
  background-color: #b6bec4;
}

.p_care-list__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p_care-list__btn > a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.04em;
}

.p_care-list__link-wrap {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p_care-list__link-wrap + p {
  margin-top: 24px;
}

.p_care-list-detail .alcoholism {
  --kv: url("../img/care-list/detail/kv.jpg");
}

.p_care-list-detail__main {
  padding: 150px 0 125px;
}

.p_care-list-detail__acceptance-text {
  line-height: 1.875;
}
.p_care-list-detail__acceptance-wrap {
  margin-top: 50px;
  background-color: #d8e5ed;
  padding: 30px 90px;
  display: grid;
  grid-template-columns: 3fr 7fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
.p_care-list-detail__acceptance .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 20px;
}
.p_care-list-detail__acceptance .title {
  font-weight: bold;
  font-size: 20px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p_care-list-detail__acceptance .place {
  border-radius: 4px;
  background-color: #0469ac;
  color: #fff;
  text-align: center;
  font-weight: bold;
  width: 115px;
  height: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p_care-list-detail__pagenav {
  padding-block: 100px;
}
.p_care-list-detail__pagenav-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.p_care-list-detail__pagenav-wrap a {
  border: 2px solid #d5dfe6;
  height: 108px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
.p_care-list-detail__pagenav-wrap a:hover {
  border: 2px solid #0469ac;
}
.p_care-list-detail__pagenav-wrap .number {
  font-size: 21px;
  color: #b6bec4;
  font-family: "EB Garamond";
  line-height: 1;
}
.p_care-list-detail__pagenav-wrap .text {
  font-size: 20px;
  font-weight: bold;
  color: #0469ac;
}

.p_care-list-detail__content {
  background-color: #f0f5f8;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 100px;
}
.p_care-list-detail__content + .p_care-list-detail__content {
  margin-top: 100px;
}

.p_care-list-detail__title {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
.p_care-list-detail__title .number {
  font-size: 130px;
  color: #d8e5ed;
  font-family: "EB Garamond";
  letter-spacing: 0.03em;
  line-height: 1;
}
.p_care-list-detail__title .text {
  font-size: 30px;
  letter-spacing: 0.18em;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p_care-list-detail__table table {
  width: 100%;
  border-collapse: collapse;
}
.p_care-list-detail__table table th,
.p_care-list-detail__table table td {
  border: 2px solid #fff;
  text-align: center;
  padding: 10px;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.p_care-list-detail__table table th {
  background-color: #0469ac;
  color: #fff;
  font-weight: bold;
  width: 130px;
  height: 44px;
}
.p_care-list-detail__table table th:first-child {
  width: 100px;
}
.p_care-list-detail__table table td {
  background-color: #f0f5f8;
  font-size: 13px;
  font-weight: bold;
  height: 54px;
}
.p_care-list-detail__table table tr:nth-child(n+2) th {
  background-color: #b6bec4;
  color: #3b3b3b;
  font-size: 13px;
}
.p_care-list-detail__table-notice {
  font-size: 12px;
  margin-top: 10px;
  text-align: right;
}

.p_care-list-detail__introduction {
  text-align: center;
  margin-bottom: 90px;
}
.p_care-list-detail__introduction-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-block: 20px;
}
.p_care-list-detail__introduction-item .item {
  border-radius: 3px;
  background-color: #0469ac;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.06em;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 20px;
}

.p_care-list-detail__box01 {
  background-color: #ffffff;
  padding: 40px 60px;
}
.p_care-list-detail__box01 + .p_care-list-detail__box01 {
  margin-top: 40px;
}
.p_care-list-detail__box01-title {
  font-size: 20px;
  color: #0469ac;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.p_care-list-detail__box01-title.-center {
  text-align: center;
}
.p_care-list-detail__box01-text {
  line-height: 2;
  letter-spacing: 0.04em;
}
.p_care-list-detail__box01-text + .p_care-list-detail__box02 {
  margin-top: 30px;
}
.p_care-list-detail__box01-image {
  text-align: center;
  margin-top: 20px;
}
.p_care-list-detail__box01-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.p_care-list-detail__box01-side + .p_care-list-detail__box02, .p_care-list-detail__box01-side + .p_care-list-detail__box04 {
  margin-top: 50px;
}

.p_care-list-detail__box02 {
  background-color: #d8e5ed;
  padding: 30px;
}
.p_care-list-detail__box02 + .p_care-list-detail__box02 {
  margin-top: 20px;
}
.p_care-list-detail__box02 + .p_care-list-detail__box03 {
  margin-top: 50px;
}
.p_care-list-detail__box02-title {
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  font-weight: bold;
}
.p_care-list-detail__box02 .text-blue {
  color: #0469ac;
}
.p_care-list-detail__box02-text {
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 2;
}
.p_care-list-detail__box02 a {
  text-decoration: underline;
  color: #0469ac;
}

.p_care-list-detail__box03 {
  border: 8px solid #d8e5ed;
  padding: 50px 70px;
}
.p_care-list-detail__box03 + .p_care-list-detail__box03 {
  margin-top: 40px;
}
.p_care-list-detail__box03 + .p_care-list-detail__box02 {
  margin-top: 50px;
}
.p_care-list-detail__box03-title {
  color: #0469ac;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  font-weight: bold;
  font-size: 20px;
}
.p_care-list-detail__box03-subtitle {
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  font-weight: bold;
  font-size: 16px;
}
.p_care-list-detail__box03-text {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2.2;
}
.p_care-list-detail__box03-text + .p_care-list-detail__box03-subtitle {
  margin-top: 40px;
}
.p_care-list-detail__box03 a {
  text-decoration: underline;
  color: #0469ac;
}
.p_care-list-detail__box03 .question,
.p_care-list-detail__box03 .answer {
  position: relative;
  padding-left: 32px;
}
.p_care-list-detail__box03 .question::before,
.p_care-list-detail__box03 .answer::before {
  color: #0469ac;
  font-size: 24px;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0;
  font-family: "EB Garamond";
}
.p_care-list-detail__box03 .question::before {
  content: "Q.";
  top: -2px;
}
.p_care-list-detail__box03 .answer::before {
  content: "A.";
}

.p_care-list-detail__box04 {
  border-top: 1px solid #d5dfe6;
  padding-block: 50px;
}
.p_care-list-detail__box04:last-child {
  padding-bottom: 0;
}
.p_care-list-detail__box04-title {
  color: #0469ac;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.06em;
  font-weight: bold;
  font-size: 20px;
}
.p_care-list-detail__box04-text {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2.2;
}

.p_care-list-detail__box05 {
  background-color: #d8e5ed;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 20px;
  padding: 0 30px 40px;
  position: relative;
  margin-top: 40px;
}
.p_care-list-detail__box05::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 60px;
  background-color: #fff;
  top: 0;
  left: 0;
}
.p_care-list-detail__box05-item {
  position: relative;
}
.p_care-list-detail__box05-item:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p_care-list-detail__box05-image {
  margin-bottom: 20px;
}
.p_care-list-detail__box05-title {
  letter-spacing: 0.06em;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}

.p_care-list-detail__side {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p_care-list-detail__side-text {
  letter-spacing: 0.04em;
  line-height: 2;
}

.p_care-list-detail__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 22px;
}
.p_care-list-detail__list > li {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 10px 0;
}

.p_care-list-detail__item {
  padding: 0 28px 10px;
  background-color: #fff;
}

.p_care-list-detail__img {
  margin: 0 -28px;
}
.p_care-list-detail__img > img {
  width: 100%;
}

.p_care-list-detail__ttl {
  padding: 22px 0 16px;
  border-bottom: 1px solid #d5dfe6;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p_care-list-detail__lede {
  margin-bottom: -20px;
  padding-top: 28px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.43;
  text-align: justify;
}

.p_care-list-detail__txt {
  padding: 22px 0 16px;
  font-size: 16px;
  line-height: 1.88;
  text-align: justify;
}

.p_care-list-detail__detail {
  padding: 28px 0 16px;
}
.p_care-list-detail__detail > li {
  display: grid;
  grid-template-columns: 8px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.43;
  text-align: justify;
}
.p_care-list-detail__detail > li::before {
  content: "";
  margin-top: 0.4em;
  border-radius: 50%;
  background-color: #0469ac;
  aspect-ratio: 1/1;
}
.p_care-list-detail__detail > li + li {
  margin-top: 12px;
}

.p_care-list-detail__note {
  font-size: 12px;
  line-height: 1.5;
  text-align: justify;
}

.p_care-list-detail__etc {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.43;
  text-align: right;
}

.p_care-list-detail__subject {
  margin: 0 -18px;
  padding: 18px 22px 20px;
  background-color: #f0f5f8;
}

.p_care-list-detail__subject__ttl {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}

.p_care-list-detail__subject__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 8px;
}
.p_care-list-detail__subject__list > li {
  padding: 9px 0 7px;
  border-radius: 3px;
  background-color: #0469ac;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}
.p_care-list-detail__subject__list > li.is-disabled {
  background-color: #b6bec4;
}

.p_care-list-detail__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p_care-list-detail__btn > a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.04em;
}

.p_care {
  --kv: url("../img/care/kv.jpg");
}

.p_care__lede {
  padding: 150px 0 120px 20px;
}
.p_care__lede > .txt {
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1.88;
  text-align: justify;
}

.p_care__anchor__link {
  display: block;
  padding: 18px 16px;
  border: 1px solid #fff;
  background-color: #d5dfe6;
  font-size: 14px;
}

.p_care__wrap {
  padding: 100px 0 140px;
  background-color: #f0f5f8;
}

.p_care__ttl {
  margin-bottom: 80px;
}

.p_care__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
  margin-bottom: 96px;
}
.p_care__heading__img img {
  width: 100%;
}

.p_care__heading__ttl {
  margin-bottom: 14px;
  color: #0469ac;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: justify;
}

.p_care__heading__txt {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: justify;
}

.p_care__schedule__ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px 24px;
  background-color: #0469ac;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.p_care__schedule__main {
  padding: 60px 0 72px 140px;
  background-color: #fff;
}

.p_care__schedule__list {
  position: relative;
  z-index: 0;
}
.p_care__schedule__list::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 35px;
  bottom: 35px;
  left: 98px;
  width: 1px;
  background-color: #b6bec4;
}

.p_care__schedule__item {
  display: grid;
  grid-template-columns: 94px 9px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p_care__schedule__time {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 50px;
  color: #0469ac;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}

.p_care__schedule__dot {
  border-radius: 50%;
  background-color: #0469ac;
  aspect-ratio: 1/1;
}

.p_care__schedule__label {
  position: relative;
  z-index: 1;
  aspect-ratio: 1/1;
}
.p_care__schedule__label > span {
  display: grid;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 51px;
  padding-top: 1px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px solid #0469ac;
  border-radius: 50%;
  background-color: #fff;
  color: #0469ac;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  aspect-ratio: 1/1;
  place-content: center;
}
.p_care__schedule__label.home > span {
  background-color: #0469ac;
  color: #fff;
}

.p_care__schedule__body {
  position: relative;
  z-index: 0;
  padding-left: 108px;
}
.p_care__schedule__body::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 93px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 2px dotted #62a4d0;
}
.p_care__schedule__body > .txt {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
.p_care__schedule__body > .program {
  display: grid;
  width: 344px;
  height: 57px;
  border: 1px solid #62a4d0;
  background-color: #d5dfe6;
  color: #62a4d0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  place-content: center;
}

.p_care__policy {
  padding-top: 100px;
}

.p_care__policy__main {
  padding: 58px 34px 74px;
  background-color: #fff;
}

.p_care__policy__main__ttl {
  margin-bottom: 20px;
  color: #0469ac;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
}

.p_care__policy__main__txt {
  margin-bottom: 52px;
  padding: 0 8px;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: center;
}
.p_care__policy__main__txt.justify {
  margin: 32px 0 0;
  text-align: justify;
}

.p_care__policy__purpose {
  display: grid;
  grid-template-columns: 138px 1fr;
  grid-template-rows: repeat(3, 78px);
  gap: 10px 16px;
  margin-bottom: 80px;
}

.p_care__policy__purpose__ttl {
  display: grid;
  grid-row: 1/span 3;
  background-color: #d5dfe6;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  place-content: center;
}

.p_care__policy__purpose__item {
  display: grid;
  grid-column: 2;
  border: 1px solid #d5dfe6;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-align: center;
  place-content: center;
}

.p_care__policy__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 13px;
}

.p_care__policy__item {
  display: grid;
  width: 100%;
  border: 1px solid #0469ac;
  background-color: #d8e5ed;
  color: #0469ac;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.45;
  aspect-ratio: 176/142;
  place-content: center;
}
.p_care__policy__item.small {
  font-size: 19px;
  letter-spacing: inherit;
}
.p_care__policy__item > span {
  display: block;
  padding: 0.1em 0;
  font-size: 12px;
  letter-spacing: 0.065em;
}

.p_care__policy__btn {
  width: 500px;
  margin: 70px auto 0;
}

.p_care__system {
  padding-top: 180px;
}

.p_care__system__ttl {
  margin-bottom: 100px;
}

.p_care__system__item {
  position: relative;
  z-index: 0;
  padding-bottom: 120px;
}
.p_care__system__item::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #f0f5f8;
  inset: 100px 0 0 calc(50% - 500px);
}
.p_care__system__item + .p_care__system__item {
  margin-top: 100px;
}
.p_care__system__item.rev::before {
  inset: 100px calc(50% - 500px) 0 0;
}

.p_care__system__body > .ttl {
  margin-bottom: 16px;
  color: #0469ac;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: justify;
}
.p_care__system__body > .txt {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: justify;
}

.p_care__system__btn {
  padding: 90px 55px 0 0;
}

.p_care__care {
  padding: 180px 0 100px;
}

.p_care__care__ttl {
  margin-bottom: 32px;
}

.p_care__care__lede {
  margin-bottom: 48px;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: center;
}

.p_care__care__map {
  margin-bottom: 72px;
}
.p_care__care__map img {
  width: 100%;
}

.p_care__care__txt {
  margin-bottom: 72px;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: justify;
}

.p_care__care__card {
  display: grid;
  grid-template-columns: 405px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}

.p_care__care__card__img img {
  width: 100%;
}

.p_care__care__card__body {
  padding: 0 42px;
}

.p_care__care__card__ttl {
  margin-bottom: 14px;
  color: #0469ac;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: justify;
}

.p_care__care__card__txt {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: justify;
}

.p_history {
  --kv: url("../img/history/kv.jpg");
}

.p_history-mv {
  position: relative;
  padding: 203px 0 137px;
  text-align: center;
}
.p_history-mv img.mv-img01 {
  position: absolute;
  top: -100%;
  right: -20%;
  width: 633px;
  z-index: -1;
}
.p_history-mv img.mv-img02 {
  position: absolute;
  bottom: -66%;
  left: -22%;
  width: 633px;
  z-index: -1;
}
.p_history-mv__txt {
  width: 561px;
  margin: 0 auto;
}
.p_history-mv__txt h2 {
  color: #0469AC;
  font-size: 25px;
  line-height: 48px;
  letter-spacing: 0.18em;
  margin-bottom: 43px;
}
.p_history-mv__txt p {
  color: #3B3B3B;
  line-height: 28px;
  letter-spacing: 0.06em;
  text-align: left;
}

.p_history-timeline {
  background-color: #F0F5F8;
  padding: 80px 0 100px;
  overflow: hidden;
}
.p_history-timeline .timeline-title {
  position: relative;
  color: #3B3B3B;
  font-size: 34px;
  line-height: 32px;
  letter-spacing: 0.18em;
  text-align: center;
  margin-bottom: 24px;
}
.p_history-timeline .timeline-title::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  translate: -50% 0;
  width: 40px;
  height: 2px;
  background-color: #62A4D0;
}
.p_history-timeline__block {
  position: relative;
}
.p_history-timeline__block::before {
  content: "";
  position: absolute;
  top: 130px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 3px;
  height: 100%;
  background-color: #D6E2EA;
  z-index: 0;
}
.p_history-timeline__block--item {
  position: -webkit-sticky;
  position: sticky;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 184px 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  margin-bottom: 17px;
}
.p_history-timeline__block--item .history-txt {
  grid-area: 1/1/2/4;
}
.p_history-timeline__block--item .history-txt__box {
  width: 414px;
  background-color: #fff;
  padding: 35px 40px 36px;
}
.p_history-timeline__block--item .history-txt__box h4 {
  text-align: center;
  color: #0469AC;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #D5DFE6;
  margin-bottom: 11px;
  padding-bottom: 18px;
  font-weight: bold;
}
.p_history-timeline__block--item .history-txt__box p {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.04em;
}
.p_history-timeline__block--item .history-date {
  grid-area: 1/2/2/3;
  justify-self: center;
  align-self: center;
}
.p_history-timeline__block--item .history-date h3 {
  position: relative;
  text-align: center;
  color: #fff;
  font-family: "EB Garamond";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-position: center;
  background-size: 100%;
  font-size: 20px;
}
.p_history-timeline__block--item .history-date h3 span {
  line-height: 45px;
}
.p_history-timeline__block--item .history-date h3.circle-big {
  width: 184px;
  height: 184px;
  background-image: url("../img/history/circle-big.png");
}
.p_history-timeline__block--item .history-date h3.circle-big span {
  font-size: 38px;
}
.p_history-timeline__block--item .history-date h3.circle-big::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 450px;
  height: 2px;
  background-image: url("../img/history/dot-border.png");
  background-size: 100%;
  z-index: -1;
}
.p_history-timeline__block--item .history-date h3.circle-small {
  width: 108px;
  height: 108px;
  background-image: url("../img/history/circle-small.png");
  margin: 15px 0;
}
.p_history-timeline__block--item .history-date h3.circle-small span {
  font-size: 30px;
  line-height: 36px;
}
.p_history-timeline__block--item .history-date h3.circle-small::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 220%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 450px;
  height: 2px;
  background-image: url("../img/history/dot-border.png");
  background-size: 100%;
  z-index: -1;
}
.p_history-timeline__block--item .history-remarks {
  grid-area: 1/3/2/4;
  align-self: center;
}
.p_history-timeline__block--item .history-remarks__txt {
  background-color: #F0F5F8;
  padding-left: 25px;
}
.p_history-timeline__block--item .history-remarks__txt p {
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.04em;
}
.p_history-timeline__block--item .history-remarks__img {
  padding-left: 90px;
}
.p_history-timeline .history1992 .history-txt {
  translate: 0 83px;
}
.p_history-timeline .history1992 .history-remarks__img {
  padding-left: 92px;
}
.p_history-timeline .history1994 {
  margin-top: -74px;
}
.p_history-timeline .history1998 .history-txt {
  translate: 0 44px;
}
.p_history-timeline .history1998 .history-remarks__img {
  padding-left: 131px;
}
.p_history-timeline .history2000 {
  margin-top: -42px;
}
.p_history-timeline .history2003 {
  margin-top: -16px;
}
.p_history-timeline .history2005 {
  margin-top: -18px;
}
.p_history-timeline .history2006 {
  margin-top: -18px;
}
.p_history-timeline .history200609 {
  margin-top: 29px;
}
.p_history-timeline .history2009 {
  margin-top: 30px;
}
.p_history-timeline .history2011 {
  margin-top: -12px;
}
.p_history-timeline .history2011 .history-txt {
  translate: 0 4px;
}
.p_history-timeline .history2013 {
  margin-top: 2px;
}
.p_history-timeline .history2013 .history-txt {
  translate: 0 11px;
}
.p_history-timeline .history2014 {
  margin-top: 34px;
}
.p_history-timeline .history2016 {
  margin-top: 34px;
}
.p_history-timeline .history201607 {
  margin-top: 33px;
}
.p_history-timeline .history2018 {
  margin-top: -23px;
}
.p_history-timeline .history2018 .history-txt {
  translate: 0 59px;
}
.p_history-timeline .history2019 {
  margin-top: -20px;
}
.p_history-timeline .history202004 {
  margin-top: 17px;
}
.p_history-timeline .history202004 .history-txt {
  translate: 0 15px;
}
.p_history-timeline .history2020 {
  margin-top: 18px;
}
.p_history-timeline .history202407 {
  margin-top: 30px;
}
.p_history-timeline .history202409 {
  margin-top: 31px;
}
.p_history-timeline .history202409 .history-txt {
  translate: 0 43px;
}
.p_history-timeline .history202409 .history-remarks__img {
  padding-left: 121px;
}
.p_history-timeline .history202410 {
  margin-top: 39px;
}
.p_history-timeline .history202410 .history-txt {
  translate: 0 57px;
}
.p_history-timeline .history202410 .history-remarks__img {
  padding-left: 121px;
}
/* -----------------------------------------------
* news Module
* newsページ用
-------------------------------------------------- */
.p_news-body {
  margin-top: 90px;
  padding-bottom: 152px;
}

.p_news-d-body {
  margin-top: 135px;
}
.p_news-d-body__btn {
  max-width: 364px;
  margin: auto;
}

.p_news-ttl-box .news-ttl01 {
  margin-top: 10px;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 0;
  color: #3B3B3B;
  display: block;
}
.p_news-ttl-box .news-ttl02 {
  display: block;
  font-weight: bold;
}
.p_news-ttl-box .news-ttl03 {
  display: block;
  font-weight: bold;
}
.p_news-ttl-box br {
  display: none;
}
@media only screen and (min-width: 641px) {
  .inner-block {
    margin: 0 auto;
  }
  .inner-block02 {
    margin: 0 auto;
  }
  .inner-block03 {
    margin: 0 auto;
  }
  .sp {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  .c-header__contact .link:hover {
    opacity: 0.8;
  }
  .c-header-list > li:hover .c-header-sub-list {
    opacity: 1;
    visibility: visible;
  }
  .c-header-sub-list__link:hover {
    opacity: 0.8;
  }
  main {
    margin-top: 80px;
  }
  .l-mv01__ttl {
    font-size: 60px;
  }
  .l-mv01__sub {
    font-size: 18px;
  }
  .l-mv02 {
    padding: 84px 0 97px;
  }
  .c-article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c-article__main {
    width: 998px;
  }
  .c-article__side {
    padding-left: 32px;
    width: calc(100% - 998px);
  }
  .c-article__box02 + .c-article__box02 {
    margin-top: 40px;
  }
  .c-article__list02 {
    margin-top: 20px;
    overflow-y: scroll;
  }
  .c-article-list {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
  .c-article-list__ttl {
    padding-bottom: 20px;
  }
  .c-article-list__box {
    margin-top: auto;
    padding-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c-article-list__img {
    width: 178px;
  }
  .c-article-list__img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 178/251;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .c-article-list__txt {
    padding-left: 16px;
    width: calc(100% - 178px);
  }
  .c-article-list__tag {
    width: 225px;
  }
  .c-article-list__cap {
    margin-top: 22px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3.5;
  }
  .c-article-list02 {
    max-height: 160px;
  }
  .c-article-list02.ptn01 {
    max-height: 269px;
  }
  .c-article-d__tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 14px 23px;
  }
  .c-article-d__tag.top {
    margin-top: 35px;
  }
  .c-article-d__tag .ttl01 {
    text-align: center;
    width: 90px;
  }
  .c-article-d__tag-list {
    padding-left: 43px;
    width: 743px;
  }
  .c-article-d__tag-list .c-tag-list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .c-article-d__tag-list .c-tag-list__li {
    min-width: 48px;
  }
  .c-article-d__tag-list.long {
    width: 825px;
  }
  .c-article-d__tag-list.long .c-tag-list {
    display: block;
  }
  .c-article-d__tag-list.long .c-tag-list__li {
    display: inline-block;
    min-width: 48px;
    margin: 0 2px;
  }
  .c-article-d__tag-list .c-tag-list {
    grid-template-columns: repeat(11, 1fr);
  }
  .c-article-d__box {
    margin-top: 37px;
  }
  .c-article-d__box table th,
  .c-article-d__box table td {
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: solid #D5DFE6 1px;
  }
  .c-article-d__box table th {
    width: 120px;
    padding-right: 24px;
    vertical-align: top;
  }
  .c-article-d__box table td {
    font-size: 15px;
    padding-left: 30px;
  }
  .c-article-d__btn {
    margin-top: 40px;
  }
  .c-list01__li + .c-list01__li {
    margin-top: 20px;
  }
  .c-list01__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    border: solid #d8e5ed 1px;
    background: #fff;
  }
  .c-list01__icon {
    width: 91px;
    padding: 20px;
    background: #d8e5ed;
  }
  .c-list01__txt {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 0 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .c-list01__txt .txt {
    font-size: 18px;
  }
  .c-list03__item {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-list03__item:hover {
    opacity: 0.8;
  }
  .c-list03__item:hover .c-list03__dec {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  .c-list03__dec {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-list04 {
    gap: 35px;
    grid-template-columns: repeat(3, 1fr);
  }
  .c-list04__box {
    padding: 22px 20px 20px 30px;
  }
  .c-list04__dec {
    margin-top: auto;
  }
  .c-cont__wrap {
    gap: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c-cont__img {
    margin-left: -83px;
  }
  .c-cont__img.right {
    margin-left: 0;
    margin-right: -83px;
  }
  .c-cont__box {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-right: 100px;
  }
  .c-cont__list {
    margin-top: 60px;
    padding-left: 43px;
  }
  .c-cont__list02 {
    margin-top: 60px;
    padding-right: 127px;
  }
  .c-list-btn__dec {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-btn01 {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-btn01:hover {
    opacity: 0.8;
    background: -webkit-gradient(linear, right top, left top, from(#0469ac), to(#62a4d0));
    background: linear-gradient(right, #0469ac 0%, #62a4d0 100%);
  }
  .c-btn01:hover .c-btn01__dec {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  .c-btn01::before {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-bread {
    padding: 10px 0;
  }
  .c-table01 th {
    padding-left: 30px;
  }
  .c-table01 th.ptn01 {
    min-width: 245px;
  }
  .c-table01 th.ptn02 {
    min-width: 195px;
    text-align: left;
  }
  .c-table01 th + td {
    padding: 27px 30px;
  }
  .c-dec .txt {
    font-size: 15px;
  }
  .c-paging-area > * {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .c-paging-area > *:not(.dots):hover {
    background: #62A4D0;
    color: #fff;
  }
  #pagetop a {
    padding: 14.5px 21px;
  }
  #pagetop:hover a {
    background-color: #e1647b;
  }
  .c-bread .inner-block {
    margin: 0;
    margin-right: auto;
    padding: 0 84px;
  }
  .c-kv__inner {
    width: 1000px;
    margin: 0 auto;
  }
  .c-site-flow__link:hover .c-site-flow__txt::after {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  .c-wide-link .title {
    font-size: 30px;
    text-align: right;
  }
  .c-form--entry {
    padding-bottom: 100px;
  }
  .c-form__inner {
    width: 830px;
    margin: 0 auto;
  }
  .c-form__dl {
    display: grid;
    grid-template-columns: 1fr 628px;
  }
  .c-form__dt {
    grid-column: 1;
  }
  .c-form__dt--content {
    -ms-flex-item-align: start;
        align-self: flex-start;
    padding-top: 24px;
  }
  .c-form__dd {
    grid-column: 2;
  }
  .c-form__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 40px;
  }
  .c-form__submit {
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  .c-form__submit:hover {
    opacity: 0.8;
  }
  .c-form__submit.back {
    width: 240px;
  }
  .p_top-tel__wrap {
    padding-left: 100px;
    position: relative;
  }
  .p_top-lead {
    margin-top: 151px;
  }
  .p_top-lead__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p_top-lead__txt {
    width: 480px;
    padding-left: 100px;
  }
  .p_top-lead__txt-lead {
    padding-left: 57px;
    position: relative;
  }
  .p_top-lead__img {
    padding-left: 140px;
    width: calc(100% - 480px);
  }
  .p_top-lead__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p_top-info {
    margin-top: 180px;
  }
  .p_top-care {
    overflow: hidden;
    margin-top: 72px;
    position: relative;
    z-index: 2;
  }
  .p_top-news {
    margin-top: 70px;
  }
  .p_top-up {
    margin-top: -40px;
    padding-top: 238px;
    padding-bottom: 250px;
  }
  .p_top-up__dec01 {
    position: absolute;
    top: -148px;
    left: 0;
    width: 328px;
    height: 346px;
  }
  .p_top-up__dec02 {
    width: 335px;
    height: 330px;
  }
  .p_top-up__ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p_top-up__list {
    margin-top: 40px;
  }
  .p_top-up-list__li:nth-child(2) {
    border-top: solid 1px #D5DFE6;
  }
  .p_top-up-list__link {
    display: block;
    padding-top: 20px;
    padding-bottom: 16px;
  }
  .p_top-up-list__txt {
    font-size: 14px;
    -webkit-line-clamp: 1;
  }
  .p_top-up-about {
    padding: 0 0 170px;
    margin-top: 200px;
  }
  .p_top-up-about__img {
    margin-left: -83px;
  }
  .p_top-up-about__box {
    padding-left: 120px;
  }
  .p_privacy {
    padding-bottom: 175px;
  }
  .p_privacy-cont__lead {
    margin-top: 67px;
  }
  .p_privacy-cont__box {
    margin-top: 78px;
  }
  .p_privacy-cont__item.top02 {
    margin-top: 135px !important;
  }
  .p_privacy-cont__item + .p_privacy-cont__item {
    margin-top: 75px;
  }
  .p_privacy-cont__item-ttl {
    padding-bottom: 15px;
  }
  .p_privacy-cont__item-txt {
    padding-top: 15px;
    font-size: 15px;
  }
  .p_woman {
    padding-bottom: 150px;
  }
  .p_woman-cont__lead {
    margin-top: 67px;
  }
  .p_woman-cont__box {
    margin-top: 78px;
  }
  .p_woman-cont__table-wrap {
    padding-top: 30px;
  }
  .p_recruit-cont {
    margin-top: 152px;
  }
  .p_recruit-cont__lead {
    text-align: center;
  }
  .p_recruit-cont__list {
    margin-top: 90px;
  }
  .p_recruit-cont .c-wide-link {
    margin-top: 215px;
  }
  .p_recruit-d {
    padding-bottom: 127px;
  }
  .p_recruit-d-cont__wrap {
    margin-top: 90px;
  }
  .p_recruit-d-cont__table {
    margin-top: 90px;
  }
  .p_recruit-d-cont__table.ptn01 {
    margin-top: 0;
  }
  .p_recruit-d-cont__btn {
    margin-top: 70px;
  }
  .p_recruit-d-cont__link {
    margin-top: 45px;
  }
  .p_service-cont {
    margin-block: 150px;
  }
  .p_service-cont__lead {
    text-align: center;
  }
  .p_program-cont {
    margin-top: 150px;
  }
  .p_program-cont__lead {
    text-align: center;
    font-size: 24px;
  }
  .p_program-cont__activity-image {
    height: 240px;
  }
  .p_program-cont__activity-notice {
    margin-inline: -20px;
  }
  .p_program-cont__info .side-wrap .image {
    width: 301px;
  }
  .p_clinic-cont {
    margin-top: 150px;
  }
  .p_clinic-cont__place-content {
    min-height: 190px;
  }
  .p_clinic-cont__overseas .content {
    padding-right: 80px;
  }
  .p_clinic-detail .l-mv03__image {
    aspect-ratio: 2732/680;
  }
  .p_clinic-detail__news-articles a:nth-last-child(-n+2) {
    border-bottom: 1px solid #D5DFE6;
  }
  .p_clinic-detail__news-articles .title {
    font-size: 14px;
    -webkit-line-clamp: 1;
  }
  .p_clinic-detail__director .wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p_clinic-detail__director .wrap .image {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p_clinic-detail__director .wrap .image {
    width: 300px;
  }
  .p_clinic-detail__director .wrap .text {
    width: calc(100% - 300px);
  }
  .p_clinic-detail__director .tel {
    width: 730px;
    height: 128px;
    margin: 70px auto 0;
  }
  .p_clinic-detail__director .pdf .thumbnail {
    width: 540px;
    margin: 30px auto 0;
  }
  .p_attractiveness-cont {
    margin-top: 90px;
  }
  .p_attractiveness-cont__wanted.reverse .image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-right: -240px;
    margin-left: 80px;
  }
  .p_attractiveness-cont__wanted .image {
    margin-right: 80px;
    margin-left: -240px;
  }
  .p_entry__site-flow {
    grid-template-columns: repeat(2, 360px);
    gap: 0 110px;
  }
  .p_entry__site-flow .c-site-flow__txt {
    padding-left: 8px;
  }
  .p_entry__site-flow .c-site-flow__txt::after {
    width: 28px;
    height: 28px;
    background-size: 12px auto;
  }
  .p_entry__contact {
    display: grid;
    grid-template-columns: 222px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p_message-thema__contents--img .img_txt {
    position: absolute;
  }
  .p_message-thema__contents--img .img_txt.left {
    bottom: 150px;
    left: -80px;
  }
  .p_message-thema__contents--img .img_txt.right {
    bottom: 120px;
    right: -80px;
  }
  .p_message-books-ptn01 {
    gap: 22px !important;
  }
  .p_message-books-ptn01 .ad_width {
    width: 179px;
  }
  .p_guest__about__list__link {
    margin-top: auto;
  }
  .p_guest__about__list__link:hover::after {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  .p_guest__flow__step__item {
    display: grid;
    grid-template-columns: 162px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 36px;
    min-height: 275px;
  }
  .p_guest__flow__you__col {
    display: grid;
    grid-template-columns: 524px 1fr;
  }
  .p_guest__flow__you__box__item + .p_guest__flow__you__box__item {
    border-left: 1px solid #fff;
  }
  .p_guest__flow__you__box__ttl {
    display: grid;
    place-content: center;
  }
  .p_care-list__item {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
  }
  .p_care-list__ttl {
    display: grid;
    min-height: 99px;
    place-content: center;
  }
  .p_care-list__link-wrap:hover {
    opacity: 0.8;
  }
  .p_care-list-detail__acceptance .title {
    border-right: 1px solid #fff;
  }
  .p_care-list-detail__pagenav-wrap {
    padding-inline: 20px;
  }
  .p_care-list-detail__introduction-text {
    font-size: 20px;
  }
  .p_care-list-detail__box01-side-image {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p_care-list-detail__box05-item:last-child {
    padding-bottom: 36px;
  }
  .p_care-list-detail__side-text {
    padding-left: 36px;
  }
  .p_care-list-detail__item {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
  }
  .p_care-list-detail__ttl {
    display: grid;
    min-height: 99px;
    place-content: center;
  }
  .p_care-list-detail__box01-side-image {
    width: 390px;
  }
  .p_care-list-detail__box01-side-content {
    width: calc(100% - 390px);
  }
  .p_care__lede > .txt {
    width: 800px;
    margin: 0 auto;
  }
  .p_care__anchor {
    position: fixed;
    z-index: 99;
    top: 25%;
    right: 0;
  }
  .p_care__anchor__link {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transition-property: background-color, color;
    transition-property: background-color, color;
  }
  .p_care__anchor__link:hover {
    background-color: #0469ac;
    color: #fff;
  }
  .p_care__anchor__link.is-active {
    background-color: #0469ac;
    color: #fff;
  }
  .p_care__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .p_care__heading.rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p_care__heading__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 405px;
  }
  .p_care__schedule__list {
    display: grid;
    grid-auto-rows: minmax(70px, auto);
  }
  .p_care__policy__list {
    margin-top: 28px;
  }
  .p_care__policy__item {
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  .p_care__policy__item:hover {
    opacity: 0.8;
  }
  .p_care__system__item.rev .p_care__system__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-right: -47px;
    margin-left: 0;
  }
  .p_care__system__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 32px;
    margin-left: -47px;
  }
  .p_care__system__inner.i03 {
    gap: 0 61px;
    margin-left: -100px;
  }
  .p_care__system__inner.i03 .p_care__system__img {
    width: 484px;
  }
  .p_care__system__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 460px;
  }
  .p_news-d-body__btn {
    margin-top: 83px;
    padding-bottom: 118px;
  }
}
@media only screen and (max-width: 640px) {
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  .outer-block {
    min-width: 320px;
  }
  .inner-block {
    padding: 0 20px;
    width: auto;
  }
  #wrapper {
    min-width: 320px;
    position: relative;
    overflow: hidden;
  }
  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  .pc {
    display: none !important;
  }
  .c-header {
    padding-left: 10px;
  }
  .c-header__logo {
    width: 160px;
  }
  .c-header__right {
    width: calc(100% - 160px);
  }
  .c-header__search {
    width: 100%;
  }
  .c-footer {
    padding-bottom: 90px;
  }
  .c-footer__wrap {
    display: block;
  }
  .c-footer__left {
    width: 200px;
    margin: 0 auto;
  }
  .c-footer__right {
    width: 100%;
    padding-left: 0;
    margin-top: 50px;
  }
  .c-footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .c-footer__ttl {
    letter-spacing: 0;
  }
  .c-footer__copy {
    font-size: 9px;
  }
  .c-footer-list {
    margin-top: 8px;
  }
  .c-footer-list.flex > li:first-child.sp_long {
    width: 100%;
  }
  .c-footer-list.flex.sp_mt {
    margin-top: 40px;
  }
  main {
    margin-top: 60px;
  }
  .l-mv01__ttl {
    font-size: max(6vw, 24px);
  }
  .l-mv01__sub {
    font-size: max(3vw, 16px);
  }
  .l-mv02 {
    padding: 40px 0 55px;
  }
  .l-mv02__ttl {
    font-size: 22px;
  }
  .l-mv03__title {
    font-size: 22px;
  }
  .c-info-wrap {
    padding: 80px 0 40px;
  }
  .c-info-wrap .p_top-clinic-swiper {
    margin-top: 0;
  }
  .c-article__side {
    margin-top: 35px;
  }
  .c-article__box02 + .c-article__box02 {
    margin-top: 20px;
  }
  .c-article__list02 {
    margin-top: 10px;
    max-height: 200px;
    overflow: auto;
  }
  .c-article-list__li + .c-article-list__li {
    margin-top: 45px;
  }
  .c-article-list__ttl {
    padding-bottom: 10px;
  }
  .c-article-list__box {
    margin-top: 10px;
  }
  .c-article-list__img {
    text-align: center;
    margin-top: 15px;
    max-height: 307px;
  }
  .c-article-list__img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .c-article-list__tag {
    margin-top: 15px;
  }
  .c-article-list__cap {
    margin-top: 10px;
  }
  .c-article-d__ttl .ttl {
    font-size: 18px;
  }
  .c-article-d__tag {
    padding: 10px;
  }
  .c-article-d__tag.top {
    margin-top: 20px;
  }
  .c-article-d__tag.top02 {
    margin-top: 15px;
  }
  .c-article-d__tag-list {
    margin-top: 8px;
  }
  .c-article-d__tag-list .c-tag-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-article-d__box a:hover {
    opacity: 0.8;
  }
  .c-article-d__box {
    margin-top: 25px;
  }
  .c-article-d__box table th,
  .c-article-d__box table td {
    display: block;
  }
  .c-article-d__box table th {
    border-bottom: solid #D5DFE6 1px;
  }
  .c-article-d__box table td {
    padding-top: 15px;
    padding-bottom: 30px;
  }
  .c-article-d__btn {
    margin-top: 20px;
  }
  .c-ttl01__en {
    font-size: 30px;
  }
  .c-ttl01__en.pat-sp-right {
    text-align: right;
  }
  .c-ttl01__ja {
    font-size: 15px;
  }
  .c-ttl01__ja.pat-sp-right {
    text-align: right;
  }
  .c-ttl02 .text {
    font-size: 22px;
  }
  .c-ttl03 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .c-ttl03::before {
    height: 26px;
  }
  .c-ttl04 {
    font-size: 22px;
  }
  .c-ttl04::after {
    width: 32px;
  }
  .c-ttl05 {
    font-size: 22px;
  }
  .c-list03__item {
    padding: 16px 7px 16px 5px;
  }
  .c-list03__ttl {
    font-size: 15px;
  }
  .c-list03__dec {
    width: 17px;
    height: 17px;
  }
  .c-list03__dec::before {
    width: 7px;
    height: 7px;
  }
  .c-list04 {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }
  .c-list04__li.no::after {
    font-size: 18px;
  }
  .c-list04__box {
    padding: 10px;
  }
  .c-list04__txt {
    font-size: 16px;
  }
  .c-list04__dec {
    margin-top: auto;
  }
  .c-list04__dec .txt {
    font-size: 14px;
  }
  .c-list04__dec .dec {
    width: 20px;
    height: 20px;
  }
  .c-list04__dec .dec::before {
    width: 7px;
    height: 7px;
  }
  .c-cont__img.care {
    margin-left: auto;
    margin-right: -20px;
    width: 245px;
    height: 214px;
  }
  .c-cont__box.left {
    padding-left: 0;
  }
  .c-btn01 {
    padding: 24px 45px;
    display: block;
    position: relative;
  }
  .c-btn01__txt {
    text-align: center;
    font-size: 15px;
  }
  .c-btn01::before {
    position: absolute;
    right: 17px;
    margin: auto 0;
    width: 22px;
    height: 22px;
  }
  .c-btn01::after {
    width: 8px;
    height: 8px;
    right: 24px;
  }
  .c-bread {
    padding: 5px 0;
  }
  .c-table01.spb th,
  .c-table01.spb td {
    display: block;
    width: 100%;
    padding: 20px;
  }
  .c-table01.spb th {
    text-align: center;
  }
  .c-table01.spb td {
    padding-bottom: 35px;
  }
  .c-table01 th {
    padding-left: 15px;
  }
  .c-table01 th.ptn01 {
    min-width: 80px;
  }
  .c-table01 th + td {
    padding: 14px 15px;
  }
  .c-dec.right.ptn01 {
    padding-right: 20px;
  }
  .c-dec.right.ptn01::before {
    width: 14px;
    height: 14px;
  }
  .c-dec.right.ptn01::after {
    right: 4px;
  }
  .c-dec .txt {
    font-size: 14px;
  }
  .c-dec .dec {
    width: 14px;
    height: 14px;
  }
  #pagetop a {
    padding: 16px 21px;
  }
  #pagetop img {
    margin-top: 1px;
  }
  .c-bread__list > li {
    font-size: 11px;
  }
  .c-kv {
    height: 160px;
  }
  .c-kv__inner {
    padding: 0 10px;
  }
  .c-kv__ttl {
    margin-left: 0;
    font-size: 30px;
  }
  .c-kv__ttl > .ja {
    margin-top: 0.25em;
    font-size: 15px;
  }
  .c-site-flow {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px 0;
    padding: 40px;
  }
  .c-site-flow__txt {
    font-size: 15px;
  }
  .c-modal__inner {
    padding: 60px 20px;
  }
  .c-modal__container {
    width: 100%;
    padding: 40px 20px;
  }
  .c-modal__ttl {
    margin-bottom: 24px;
    padding: 10px 0;
    font-size: 20px;
  }
  .c-modal__txt {
    font-size: 14px;
  }
  .c-wide-link .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .c-form {
    padding: 100px 0;
  }
  .c-form__inner {
    padding: 0 20px;
  }
  .c-form__lede {
    font-size: 14px;
  }
  .c-form__list {
    margin-bottom: 64px;
  }
  .c-form__item {
    font-size: 13px;
  }
  .c-form__label {
    vertical-align: 0.1em;
  }
  .c-form__ttl {
    padding-bottom: 8px;
  }
  .c-form__dd {
    padding: 12px 0 0;
  }
  .c-form__dd + .c-form__dt {
    margin-top: 32px;
  }
  .c-form__name {
    font-size: 14px;
  }
  .c-form__btn {
    margin-top: 32px;
    padding-top: 32px;
  }
  .c-form__submit {
    width: 100%;
    font-size: 15px;
  }
  .c-form__submit + .c-form__submit {
    margin-top: 16px;
  }
  .c-form__radio-list {
    padding: 8px;
  }
  .mv_anm {
    -webkit-animation: mvAnm2 2s forwards;
            animation: mvAnm2 2s forwards;
  }
  .p_home-mv {
    margin-top: 110px;
  }
  .p_home-mv__img {
    height: 120vw;
  }
  .p_home-mv__dec {
    left: unset;
    top: -56px;
    right: 50px;
    width: 110px;
  }
  .p_home-mv__txt {
    right: unset;
    left: 50%;
    bottom: -65px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p_home-mv__txt .txt {
    width: 30px;
    display: inline-block;
  }
  .p_home-mv__txt .txt:not(:first-child) {
    margin-left: 20px;
  }
  .p_top-clinic-swiper {
    margin-top: 180px;
  }
  .p_top-clinic-swiper__img {
    overflow: hidden;
    max-height: 100px;
  }
  .p_top-clinic-swiper__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p_top-lead {
    margin-top: 104px;
  }
  .p_top-lead__txt-dec {
    -webkit-transform-origin: top right;
            transform-origin: top right;
    -webkit-transform: rotate(90deg) translateX(100%);
            transform: rotate(90deg) translateX(100%);
    left: initial;
    top: 0;
    right: 0;
    font-size: 15px;
  }
  .p_top-lead__txt-dec::after {
    width: 57px;
  }
  .p_top-lead__txt-lead {
    font-size: 13px;
    line-height: 2.7;
  }
  .p_top-lead__img {
    margin-top: -3em;
    margin-right: -20px;
    margin-left: -20px;
  }
  .p_top-care {
    position: relative;
    margin-top: 120px;
  }
  .p_top-care::before {
    content: "";
    display: block;
    width: 100%;
    height: 116%;
    -webkit-clip-path: polygon(0 0, 100% 42%, 100% 60%, 74% 100%, 0 90%);
            clip-path: polygon(0 0, 100% 42%, 100% 60%, 74% 100%, 0 90%);
    background: -webkit-gradient(linear, left bottom, right top, from(#f0f5f8), to(#fff));
    background: linear-gradient(left bottom, #f0f5f8 0%, #fff 100%);
    position: absolute;
    top: 40px;
    left: 0;
  }
  .p_top-care__btn {
    margin-top: 28px;
  }
  .p_top-care__img {
    margin-top: -37px;
    margin-right: -20px;
    text-align: right;
    padding-left: 109px;
  }
  .p_top-news__img {
    position: relative;
    z-index: 2;
    padding-right: 174px;
    margin-top: 100px;
  }
  .p_top-news__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 25px;
  }
  .p_top-seminer {
    margin-top: -16px;
  }
  .p_top-seminer__box01 {
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p_top-up {
    margin-top: 150px;
  }
  .p_top-up::before {
    top: 67px;
    height: 1100px;
    background: -webkit-gradient(linear, left top, left bottom, from(#f0f5f8), to(#fff));
    background: linear-gradient(#f0f5f8 0%, #fff 100%);
    -webkit-clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 90%);
            clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 90%);
  }
  .p_top-up__dec01 {
    position: relative;
    z-index: 2;
    padding-left: 170px;
  }
  .p_top-up__list {
    margin-top: 30px;
  }
  .p_top-up-list {
    display: block;
  }
  .p_top-up-list__link {
    display: block;
    padding: 21px 0;
  }
  .p_top-up-list__data {
    font-size: 13px;
  }
  .p_top-up-list__txt {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
  .p_top-up-about {
    margin-top: 140px;
    padding: 0 0 120px;
    border-bottom: 1px solid #D5DFE6;
  }
  .p_top-up-about__img {
    width: 145px;
    margin-right: -20px;
  }
  .p_top-up-about__box {
    width: calc(100% - 145px);
  }
  .p_top-up-about__btn {
    margin-top: 40px;
  }
  .p_home-info {
    margin-top: 110px;
  }
  .p_privacy {
    padding-bottom: 85px;
  }
  .p_privacy-cont__lead {
    margin-top: 35px;
  }
  .p_privacy-cont__box {
    margin-top: 39px;
  }
  .p_privacy-cont__item.top02 {
    margin-top: 75px !important;
  }
  .p_privacy-cont__item + .p_privacy-cont__item {
    margin-top: 35px;
  }
  .p_privacy-cont__item-ttl {
    padding-bottom: 8px;
  }
  .p_privacy-cont__item-txt {
    padding-top: 8px;
    font-size: 13px;
  }
  .p_woman {
    padding-bottom: 75px;
  }
  .p_woman-cont__lead {
    margin-top: 35px;
  }
  .p_woman-cont__box {
    margin-top: 35px;
  }
  .p_woman-cont__table-wrap {
    padding-top: 15px;
    gap: 10px;
  }
  .p_recruit-cont {
    margin-top: 75px;
  }
  .p_recruit-cont__list::before {
    height: calc(100% + 25px);
    width: 100%;
  }
  .p_recruit-cont__list {
    margin-top: 45px;
  }
  .p_recruit-cont .c-wide-link {
    margin-top: 120px;
  }
  .p_recruit-d {
    padding-bottom: 60px;
  }
  .p_recruit-d-cont__wrap {
    margin-top: 45px;
  }
  .p_recruit-d-cont__table {
    margin-top: 45px;
  }
  .p_recruit-d-cont__table.ptn01 {
    margin-top: 0;
  }
  .p_recruit-d-cont__btn {
    max-width: 300px;
    margin-top: 35px;
  }
  .p_recruit-d-cont__btn .c-btn01__txt {
    margin-left: -1em;
    text-align: left;
  }
  .p_recruit-d-cont__link {
    margin-top: 20px;
  }
  .tag-head__li {
    padding: 15px;
  }
  .p_service-cont {
    margin-block: 75px;
  }
  .p_service-cont__examples {
    padding: 60px 20px 160px;
  }
  .p_service-cont__examples .examples-list__image {
    text-align: center;
  }
  .p_service-cont__examples-letter {
    right: 0;
  }
  .p_service-cont__info {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .p_service-cont__box {
    padding: 30px 20px;
  }
  .p_service-cont__other {
    padding: 36px 20px;
    margin-inline: 20px;
  }
  .p_service-cont__other ul li {
    padding-left: 20px;
  }
  .p_service-cont__other ul li::before {
    left: 0px;
  }
  .p_program-cont {
    margin-top: 75px;
  }
  .p_program-cont__activity {
    grid-template-columns: 1fr;
  }
  .p_program-cont__activity-box {
    padding: 30px 20px;
  }
  .p_program-cont__lineup {
    grid-template-columns: 1fr;
  }
  .p_program-cont__lineup .content {
    padding: 34px 20px 40px;
  }
  .p_program-cont.bg-blue {
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(1%, #fff), color-stop(1%, #f0f5f8), to(#f0f5f8));
    background: linear-gradient(180deg, #fff 0%, #fff 1%, #f0f5f8 1%, #f0f5f8 100%);
  }
  .p_program-cont__info .info-area {
    padding: 30px 20px;
  }
  .p_program-cont__info .info-box + .info-box {
    margin-top: 60px;
  }
  .p_program-cont__info .other-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .p_program-cont__info .side-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .p_program-cont__info .gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .p_program-cont__info .gallery img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p_clinic .bg-blue {
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(1%, #fff), color-stop(1%, #f0f5f8), to(#f0f5f8));
    background: linear-gradient(180deg, #fff 0%, #fff 1%, #f0f5f8 1%, #f0f5f8 100%);
  }
  .p_clinic .bg-blue::before {
    content: none;
  }
  .p_clinic-cont {
    margin-top: 75px;
  }
  .p_clinic-cont__map {
    grid-template-columns: 1fr;
  }
  .p_clinic-cont__map .content {
    padding: 20px;
    gap: 10px;
  }
  .p_clinic-cont__map .content .title {
    font-size: 18px;
  }
  .p_clinic-cont__place {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .p_clinic-cont__place-content {
    min-height: 160px;
  }
  .p_clinic-cont__place-heading {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .p_clinic-cont__lineup {
    grid-template-columns: 1fr;
  }
  .p_clinic-cont__lineup .content {
    padding: 34px 20px 40px;
  }
  .p_clinic-cont.bg-blue {
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(1%, #fff), color-stop(1%, #f0f5f8), to(#f0f5f8));
    background: linear-gradient(180deg, #fff 0%, #fff 1%, #f0f5f8 1%, #f0f5f8 100%);
    padding-bottom: 40px;
  }
  .p_clinic-cont__overseas {
    padding: 40px 0;
  }
  .p_clinic-cont__overseas::before {
    content: none;
  }
  .p_clinic-cont__overseas-wrap {
    grid-template-columns: 1fr;
  }
  .p_clinic-cont__overseas .content {
    padding: 20px 0;
    text-align: center;
  }
  .p_clinic-cont__overseas .c-link {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .p_clinic-cont__overseas .title {
    font-size: 24px;
  }
  .p_clinic-cont__overseas .subtitle {
    font-size: 18px;
  }
  .p_clinic-detail .l-mv03__image {
    aspect-ratio: 375/160;
  }
  .p_clinic-detail .detail-title {
    font-size: 22px;
  }
  .p_clinic-detail .bg-blue::before {
    content: none;
  }
  .p_clinic-detail__news-articles {
    grid-template-columns: 1fr;
  }
  .p_clinic-detail__news-articles a:last-child {
    border-bottom: 1px solid #D5DFE6;
  }
  .p_clinic-detail__news-articles .title {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
  .p_clinic-detail__target-area {
    padding: 40px 20px 60px;
  }
  .p_clinic-detail__target-wrap {
    grid-template-columns: 1fr;
  }
  .p_clinic-detail .schedule-table {
    overflow: scroll;
  }
  .p_clinic-detail .schedule-table table {
    width: 700px;
  }
  .p_clinic-detail__access-area .text-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
  }
  .p_clinic-detail__director {
    padding-bottom: 40px;
  }
  .p_clinic-detail__director-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
    text-align: center;
  }
  .p_clinic-detail__director-title .position {
    font-size: 20px;
  }
  .p_clinic-detail__director-title .name {
    font-size: 24px;
  }
  .p_clinic-detail__director .greeting-box {
    padding: 20px;
  }
  .p_clinic-detail__director .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .p_clinic-detail__director .wrap .image img {
    width: 100%;
    height: auto;
  }
  .p_clinic-detail__director .tel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    padding: 20px;
    margin-top: 40px;
  }
  .p_clinic-detail__director .tel .text {
    font-size: 16px;
  }
  .p_clinic-detail__director .tel .number {
    font-size: 28px;
  }
  .p_clinic-detail__director .tel .number::before {
    width: 28px;
    height: 28px;
  }
  .p_clinic-detail__director .pdf .thumbnail img {
    width: 100%;
    height: auto;
  }
  .p_attractiveness .bg-blue {
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(1%, #fff), color-stop(1%, #f0f5f8), to(#f0f5f8));
    background: linear-gradient(180deg, #fff 0%, #fff 1%, #f0f5f8 1%, #f0f5f8 100%);
  }
  .p_attractiveness .bg-blue::before {
    content: none;
  }
  .p_attractiveness .bg-blue02 {
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(1%, #fff), color-stop(1%, #f0f5f8), to(#f0f5f8));
    background: linear-gradient(180deg, #fff 0%, #fff 1%, #f0f5f8 1%, #f0f5f8 100%);
  }
  .p_attractiveness .bg-blue02::before {
    content: none;
  }
  .p_attractiveness-cont {
    margin-top: 60px;
  }
  .p_attractiveness-cont__lead {
    margin-top: 80px !important;
  }
  .p_attractiveness-cont__point {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .p_attractiveness-cont__point-heading {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .p_attractiveness-cont__wanted {
    grid-template-columns: 1fr;
  }
  .p_attractiveness-cont__wanted .title {
    line-height: 1.6;
    font-size: 24px;
    margin-bottom: 10px;
  }
  .p_attractiveness-cont__wanted .subtitle {
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .p_attractiveness-cont__wanted .text {
    line-height: 1.8;
  }
  .p_attractiveness-cont__wanted .image {
    margin-bottom: 20px;
  }
  .p_entry__contact {
    margin-top: 80px;
    padding: 32px 20px;
  }
  .p_entry__contact__ttl {
    margin-bottom: 24px;
    font-size: 18px;
  }
  .p_entry__contact__body {
    padding: 32px 0 0;
    border-top: 2px solid #d5dfe6;
    border-left: none;
  }
  .p_entry__contact__txt {
    margin-bottom: 16px;
    font-size: 13px;
    text-align: center;
  }
  .p_entry__contact__tel {
    margin: 0 auto;
    font-size: 32px;
  }
  .p_overseas-img {
    margin-top: 80px;
  }
  .p_overseas-img__bg {
    top: 60px;
  }
  .p_overseas-img__bg .inner {
    max-width: 90%;
  }
  .p_overseas-img__bg .inner .box {
    height: 280px;
  }
  .p_overseas-img img {
    width: 100%;
    height: auto;
  }
  .p_overseas-img h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-top: 20px;
  }
  .p_overseas-img h2 span {
    display: none;
  }
  .p_overseas-info {
    padding: 90px 0 50px;
  }
  .p_overseas-info .inner-block02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p_overseas-info__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 40px;
    width: 100%;
    display: block;
  }
  .p_overseas-info__img .info01 {
    width: 46%;
    height: auto;
  }
  .p_overseas-info__img .info02 {
    translate: -23px 56px;
    width: 30%;
    height: auto;
  }
  .p_overseas-info__img .info03 {
    width: 40%;
    height: auto;
    position: absolute;
    top: -28px;
    right: 20px;
    z-index: -1;
  }
  .p_overseas-info__txt {
    width: 100%;
  }
  .p_overseas-info__txt p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .p_overseas-loop {
    padding: 40px 0;
  }
  .p_overseas-loop__wrap {
    gap: 8px;
  }
  .p_overseas-loop__wrap--item {
    gap: 8px;
  }
  .p_overseas-loop__wrap--item li {
    width: 100px;
    height: 69px;
  }
  .p_overseas-loop__bg .inner {
    gap: 8px;
    max-width: 90%;
  }
  .p_overseas-loop__bg .inner .box {
    height: 149px;
  }
  img.message-deco01 {
    top: 205px;
  }
  .p_message-mv {
    padding-bottom: 0;
  }
  .p_message-mv__img {
    right: -50px;
    width: 80%;
    z-index: 1;
  }
  .p_message-mv__img img {
    width: 100%;
    height: auto;
  }
  .p_message-mv__txt {
    padding-left: 25px;
    position: -webkit-sticky;
    position: sticky;
    z-index: 2;
  }
  .p_message-mv__txt--item .mv-title {
    font-size: 26px;
    line-height: 40px;
    background-color: rgba(255, 255, 255, 0.8784313725);
    display: inline-block;
    margin-bottom: 4px;
    padding: 8px 16px 8px 0;
  }
  .p_message-mv__txt--item .mv-subtitle {
    font-size: 12px;
    padding-bottom: 60px;
  }
  .p_message-mv__txt--item .mv-subtitle::after {
    bottom: 30px;
  }
  .p_message-mv__txt--item .director-post {
    font-size: 12px;
    line-height: 20px;
  }
  .p_message-mv__txt--item .director-name {
    font-size: 25px;
  }
  .p_message-profile {
    padding: 0 0 100px;
    margin-top: 30%;
  }
  .p_message-profile__header h4 {
    margin-bottom: 10px;
  }
  .p_message-profile__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .p_message-profile__contents .profile01 {
    width: 100%;
  }
  .p_message-profile__contents .profile02 {
    width: 100%;
  }
  .p_message-profile__contents--item ul {
    margin-bottom: 10px;
  }
  .p_message-profile__contents--item ul li {
    font-size: 12px;
    letter-spacing: 0;
  }
  .p_message-profile__contents--item p {
    font-size: 12px;
    letter-spacing: 0;
    line-height: 24px;
  }
  .p_message-profile__contents--item dl div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
  }
  .p_message-profile__contents--item dl div dt {
    font-size: 12px;
    letter-spacing: 0;
  }
  .p_message-profile__contents--item dl div dd {
    font-size: 12px;
    line-height: 24px;
  }
  .p_message-profile__contents--item .list-box__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
  }
  .p_message-profile__contents--item .list-box__item .ttl {
    font-size: 12px;
    letter-spacing: 0;
  }
  .p_message-profile__contents--item .list-box__item .txt {
    font-size: 12px;
    line-height: 24px;
  }
  .p_message-thema {
    padding-bottom: 40px;
  }
  .p_message-thema__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 40px;
  }
  .p_message-thema__contents.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: -25px 0 0;
    margin-top: 40px;
  }
  .p_message-thema__contents--img {
    width: 100%;
    padding-top: 30px;
    margin-bottom: -20px;
  }
  .p_message-thema__contents--img img.theme-img01 {
    translate: -10px 0;
    width: 54%;
  }
  .p_message-thema__contents--img img.theme-img02 {
    width: 83%;
    translate: 0;
    position: absolute;
    top: 30%;
    right: -10%;
  }
  .p_message-thema__contents--img img.theme-img03 {
    position: inherit;
    translate: 14% 0;
    width: 84%;
  }
  .p_message-thema__contents--img img.theme-img04 {
    position: inherit;
    translate: 81px -20px;
    width: 80%;
  }
  .p_message-thema__contents--img img.theme-img05 {
    left: auto;
    right: -12%;
    width: 64%;
  }
  .p_message-thema__contents--img .img_txt.left {
    margin-top: 45px;
  }
  .p_message-thema__contents--img .img_txt.right {
    margin-top: -20px;
  }
  .p_message-thema__contents--txt {
    width: 100%;
  }
  .p_message-thema__contents--txt img {
    translate: -20px 27px;
  }
  .p_message-thema__contents--txt .theme-title {
    font-size: 8.2vw;
    margin-bottom: 20px;
    line-height: 36px;
  }
  .p_message-thema__contents--txt p {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .p_message-books {
    padding: 50px 0;
    margin-top: 60px;
  }
  .p_message-books h2 {
    font-size: 28px;
    margin-bottom: 60px;
  }
  .p_message-books__block {
    margin-bottom: 20px;
  }
  .p_message-books__block.books__block02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .p_message-books__block.books__block02 .p_message-books__block--item {
    width: 100%;
  }
  .p_message-books__block--item {
    padding: 20px;
  }
  .p_message-books__block--item .books-cat-title {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
  }
  .p_message-books__block--item ul {
    gap: 30px 0;
  }
  .p_message-books__block--item ul li {
    width: 46%;
  }
  .p_message-books__block--item ul li img {
    margin-bottom: 8px;
  }
  .p_message-books__block--item ul li .book-title {
    font-size: 11px;
    white-space: inherit;
    line-height: 1.4;
  }
  .p_message-books__block--item ul li p {
    font-size: 11px;
  }
  .p_guest__about {
    padding: 100px 0 0;
  }
  .p_guest__about__ttl {
    margin-bottom: 40px;
  }
  .p_guest__about__wrap {
    padding-bottom: 60px;
  }
  .p_guest__about__wrap::before {
    inset: 32px 0 0 0;
  }
  .p_guest__about__list {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }
  .p_guest__about__list__body {
    margin: -40px 15px 0;
    padding: 32px 20px 20px;
  }
  .p_guest__about__list__ttl {
    font-size: 16px;
  }
  .p_guest__about__list__txt {
    margin-bottom: 24px;
    font-size: 14px;
  }
  .p_guest__about__list__link {
    grid-template-columns: 1fr 24px;
    gap: 0 8px;
    height: 90px;
    padding: 0 15px;
    font-size: 14px;
  }
  .p_guest__about__list__link::after {
    background-size: 10px auto;
  }
  .p_guest__flow {
    padding: 80px 0 0;
  }
  .p_guest__flow__ttl {
    margin-bottom: 56px;
  }
  .p_guest__flow__step {
    padding-bottom: 80px;
  }
  .p_guest__flow__step__item {
    min-height: 148px;
    padding: 24px 20px 32px;
  }
  .p_guest__flow__step__item + .p_guest__flow__step__item {
    margin-top: 50px;
  }
  .p_guest__flow__step__item + .p_guest__flow__step__item::before {
    width: 32px;
  }
  .p_guest__flow__step__num {
    padding: 5px 12px 4px;
    font-size: 16px;
  }
  .p_guest__flow__step__icon {
    width: 100px;
    margin: 0 16px 8px 0;
    float: left;
  }
  .p_guest__flow__step__icon img {
    max-width: 50%;
    max-height: 55%;
  }
  .p_guest__flow__step__ttl {
    font-size: 16px;
  }
  .p_guest__flow__step__txt {
    font-size: 14px;
  }
  .p_guest__flow__you__col__img {
    margin-left: -20px;
  }
  .p_guest__flow__you__col__body {
    margin: -80px -20px 0 0;
    padding: 104px 40px 32px 20px;
  }
  .p_guest__flow__you__col__ttl {
    margin-bottom: 12px;
    font-size: 16px;
  }
  .p_guest__flow__you__col__txt {
    font-size: 14px;
  }
  .p_guest__flow__you__box {
    grid-template-columns: 1fr;
    margin-top: 40px;
    padding: 8px 16px;
  }
  .p_guest__flow__you__box__item {
    grid-template-rows: 120px 1fr auto;
    padding: 24px 16px;
  }
  .p_guest__flow__you__box__item + .p_guest__flow__you__box__item {
    border-top: 1px solid #fff;
  }
  .p_guest__flow__you__box__icon {
    margin-top: 0;
    padding-bottom: 4px;
  }
  .p_guest__flow__you__box__icon img {
    max-width: 50%;
    max-height: 50%;
  }
  .p_guest__flow__you__box__ttl {
    padding: 16px 0 12px;
    font-size: 16px;
  }
  .p_guest__flow__you__box__txt {
    font-size: 14px;
  }
  .p_faq__main {
    padding: 100px 0 0;
  }
  .p_faq__main__heading {
    width: 100%;
  }
  .p_faq__main__heading__txt {
    margin-bottom: 24px;
    font-size: 16px;
  }
  .p_faq__list {
    gap: 12px 0;
    margin-top: 80px;
  }
  .p_faq__container {
    grid-template-columns: 48px 1fr;
    padding: 12px 40px 16px 0;
  }
  .p_faq__container > .en {
    padding-left: 4px;
    font-size: 20px;
  }
  .p_faq__container > .arrow {
    top: 16px;
    right: 4px;
    width: 28px;
  }
  .p_faq__list_ttl > .ja {
    padding-top: 2px;
    font-size: 15px;
  }
  .p_faq__list__body__inner > .txt {
    padding: 4px 0;
    font-size: 14px;
  }
  .p_care-list__main {
    padding: 100px 0 80px;
  }
  .p_care-list__wrap {
    padding-bottom: 60px;
  }
  .p_care-list__wrap::before {
    inset: 100px 0 0 0;
  }
  .p_care-list__list {
    grid-template-columns: 1fr;
    gap: 60px 0;
  }
  .p_care-list__item {
    padding: 0 20px 10px;
  }
  .p_care-list__img {
    margin: 0 -20px;
  }
  .p_care-list__ttl {
    font-size: 16px;
  }
  .p_care-list__lede {
    padding-top: 16px;
  }
  .p_care-list__txt {
    padding: 16px 0;
    font-size: 14px;
  }
  .p_care-list__detail {
    padding: 20px 0 16px;
  }
  .p_care-list__detail > li + li {
    margin-top: 8px;
  }
  .p_care-list__etc {
    margin-bottom: 0;
  }
  .p_care-list__subject {
    margin: 16px -10px 0;
    padding: 20px;
  }
  .p_care-list__link-wrap + p {
    margin-top: 20px;
  }
  .p_care-list-detail__main {
    padding: 100px 0 80px;
  }
  .p_care-list-detail__acceptance-wrap {
    padding: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .p_care-list-detail__acceptance .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .p_care-list-detail__acceptance .title {
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p_care-list-detail__acceptance .place {
    width: 100%;
    height: 40px;
  }
  .p_care-list-detail__pagenav {
    padding-block: 40px;
  }
  .p_care-list-detail__pagenav-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .p_care-list-detail__pagenav-wrap a {
    height: 80px;
    gap: 4px;
  }
  .p_care-list-detail__pagenav-wrap .number {
    font-size: 20px;
  }
  .p_care-list-detail__pagenav-wrap .text {
    font-size: 18px;
  }
  .p_care-list-detail__title .number {
    font-size: 80px;
  }
  .p_care-list-detail__title .text {
    font-size: 24px;
  }
  .p_care-list-detail__table {
    overflow: scroll;
  }
  .p_care-list-detail__table table {
    width: 700px;
  }
  .p_care-list-detail__introduction-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .p_care-list-detail__introduction-item .item {
    padding: 4px;
  }
  .p_care-list-detail__introduction-text {
    font-size: 16px;
  }
  .p_care-list-detail__box01 {
    padding: 20px;
  }
  .p_care-list-detail__box01 + .p_care-list-detail__box01 {
    margin-top: 20px;
  }
  .p_care-list-detail__box01-title {
    font-size: 18px;
  }
  .p_care-list-detail__box01-image img {
    width: 100%;
    height: auto;
  }
  .p_care-list-detail__box01-side {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .p_care-list-detail__box01-side-image img {
    width: 100%;
    height: auto;
  }
  .p_care-list-detail__box02 {
    padding: 20px;
  }
  .p_care-list-detail__box03 {
    padding: 20px;
  }
  .p_care-list-detail__box05 {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px 20px;
  }
  .p_care-list-detail__box05-item:last-child {
    padding-top: 40px;
  }
  .p_care-list-detail__side {
    grid-template-columns: 1fr;
  }
  .p_care-list-detail__side-image {
    margin-bottom: 20px;
  }
  .p_care-list-detail__side-image img {
    width: 100%;
    height: auto;
  }
  .p_care-list-detail__list {
    grid-template-columns: 1fr;
    gap: 60px 0;
  }
  .p_care-list-detail__item {
    padding: 0 20px 10px;
  }
  .p_care-list-detail__img {
    margin: 0 -20px;
  }
  .p_care-list-detail__ttl {
    font-size: 16px;
  }
  .p_care-list-detail__lede {
    padding-top: 16px;
  }
  .p_care-list-detail__txt {
    padding: 16px 0;
    font-size: 14px;
  }
  .p_care-list-detail__detail {
    padding: 20px 0 16px;
  }
  .p_care-list-detail__detail > li + li {
    margin-top: 8px;
  }
  .p_care-list-detail__etc {
    margin-bottom: 0;
  }
  .p_care-list-detail__subject {
    margin: 16px -10px 0;
    padding: 20px;
  }
  .p_care__lede {
    padding: 100px 20px 60px;
  }
  .p_care__lede > .txt {
    font-size: 14px;
  }
  .p_care__anchor__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 80px;
  }
  .p_care__anchor__link {
    display: grid;
    padding: 18px 0;
    text-align: center;
    place-content: center;
  }
  .p_care__wrap {
    padding: 60px 0 80px;
  }
  .p_care__ttl {
    margin-bottom: 60px;
  }
  .p_care__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px 0;
    margin-bottom: 60px;
  }
  .p_care__heading__ttl {
    font-size: 16px;
  }
  .p_care__heading__txt {
    font-size: 14px;
  }
  .p_care__schedule__ttl {
    padding: 8px 16px;
    font-size: 16px;
  }
  .p_care__schedule__main {
    padding: 32px 16px 60px;
  }
  .p_care__schedule__list::before {
    top: 21px;
    bottom: 21px;
    left: 64px;
  }
  .p_care__schedule__item {
    grid-template-columns: 60px 9px 1fr;
    padding: 12px 0;
  }
  .p_care__schedule__time {
    min-width: 36px;
    font-size: 12px;
  }
  .p_care__schedule__label > span {
    width: 42px;
    font-size: 12px;
  }
  .p_care__schedule__body {
    padding-left: 40px;
  }
  .p_care__schedule__body::before {
    width: 32px;
  }
  .p_care__schedule__body > .txt {
    font-size: 13px;
  }
  .p_care__schedule__body > .program {
    width: 100%;
    height: 40px;
    font-size: 14px;
  }
  .p_care__policy {
    padding-top: 80px;
  }
  .p_care__policy__main {
    padding: 32px 16px 60px;
  }
  .p_care__policy__main__ttl {
    margin-bottom: 16px;
    font-size: 16px;
  }
  .p_care__policy__main__txt {
    margin-bottom: 32px;
    font-size: 14px;
  }
  .p_care__policy__main__txt.justify {
    margin-top: 24px;
  }
  .p_care__policy__purpose {
    grid-template-columns: 56px 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 60px;
  }
  .p_care__policy__purpose__ttl {
    font-size: 14px;
  }
  .p_care__policy__purpose__item {
    padding: 8px;
    font-size: 13px;
    text-align: justify;
  }
  .p_care__policy__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .p_care__policy__item {
    font-size: 16px;
  }
  .p_care__policy__item.small {
    font-size: 15px;
  }
  .p_care__policy__item > span {
    font-size: 11px;
  }
  .p_care__policy__btn {
    width: auto;
    margin-top: 40px;
  }
  .p_care__system {
    padding-top: 100px;
  }
  .p_care__system__ttl {
    margin-bottom: 60px;
  }
  .p_care__system__item {
    padding-bottom: 60px;
  }
  .p_care__system__item::before {
    inset: 80px 0 0 20px;
  }
  .p_care__system__item + .p_care__system__item {
    margin-top: 40px;
  }
  .p_care__system__item.rev::before {
    inset: 80px 20px 0 0;
  }
  .p_care__system__item.rev .p_care__system__inner {
    padding-right: 20px;
    padding-left: 0;
  }
  .p_care__system__inner {
    padding-left: 20px;
  }
  .p_care__system__img {
    margin-bottom: 24px;
  }
  .p_care__system__body > .ttl {
    font-size: 20px;
  }
  .p_care__system__body > .txt {
    font-size: 14px;
  }
  .p_care__system__btn {
    padding: 60px 0 0;
  }
  .p_care__care {
    padding: 100px 0 80px;
  }
  .p_care__care__ttl {
    margin-bottom: 24px;
  }
  .p_care__care__lede {
    margin-bottom: 32px;
    font-size: 14px;
  }
  .p_care__care__map {
    margin-bottom: 40px;
  }
  .p_care__care__txt {
    margin-bottom: 40px;
    font-size: 14px;
  }
  .p_care__care__card {
    grid-template-columns: 1fr;
  }
  .p_care__care__card__body {
    padding: 20px;
  }
  .p_care__care__card__ttl {
    font-size: 16px;
  }
  .p_care__care__card__txt {
    font-size: 14px;
  }
  .p_history-mv {
    padding: 100px 0;
  }
  .p_history-mv img.mv-img01 {
    top: -46%;
    right: -28%;
    width: 90%;
    opacity: 0.9;
  }
  .p_history-mv img.mv-img02 {
    bottom: -36%;
    left: -11%;
    width: 90%;
    opacity: 0.8;
  }
  .p_history-mv__txt {
    width: 100%;
  }
  .p_history-mv__txt h2 {
    font-size: 23px;
  }
  .p_history-timeline .timeline-title {
    font-size: 24px;
  }
  .p_history-timeline__block::before {
    top: 20px;
    left: 30px;
    height: 200%;
  }
  .p_history-timeline__block--item .history-txt__box {
    width: 100%;
    padding: 12px 16px;
  }
  .p_history-timeline__block--item .history-txt__box h4 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .p_history-timeline__block--item .history-txt__box p {
    font-size: 12px;
    line-height: 24px;
  }
  .p_history-timeline__block--item .history-date {
    justify-self: left;
    -ms-flex-item-align: start;
        align-self: start;
  }
  .p_history-timeline__block--item .history-date h3 {
    font-size: 12px;
  }
  .p_history-timeline__block--item .history-date h3.circle-big {
    width: 80px;
    height: 80px;
    translate: -10px 0;
  }
  .p_history-timeline__block--item .history-date h3.circle-big span {
    font-size: 18px;
    line-height: 1;
  }
  .p_history-timeline__block--item .history-date h3.circle-big::before {
    left: -90px;
    width: 360px;
  }
  .p_history-timeline__block--item .history-date h3.circle-small {
    width: 60px;
    height: 60px;
  }
  .p_history-timeline__block--item .history-date h3.circle-small span {
    font-size: 18px;
    line-height: 1;
  }
  .p_history-timeline__block--item .history-date h3.circle-small::before {
    left: 0;
    width: 360px;
  }
  .p_history-timeline__block--item .history-remarks__txt {
    padding-left: 0;
  }
  .p_history-timeline__block--item .history-remarks__txt p {
    font-size: 14px;
    line-height: 20px;
    translate: 0 2px;
  }
  .p_history-timeline__block--item .history-remarks__img {
    padding-left: 0;
  }
  .p_history-timeline__block--item .history-remarks__img img {
    width: 100%;
    height: auto;
  }
  .p_history-timeline .history1992 .history-txt {
    translate: 0 0;
  }
  .p_history-timeline .history1992 .history-remarks__img {
    padding-left: 0;
  }
  .p_history-timeline .history1994 {
    margin-top: 0;
  }
  .p_history-timeline .history1998 {
    margin-top: 0;
  }
  .p_history-timeline .history1998 .history-txt {
    translate: 0 0;
  }
  .p_history-timeline .history1998 .history-remarks__img {
    padding: 0;
  }
  .p_history-timeline .history2000 {
    margin-top: 0;
  }
  .p_history-timeline .history2003 {
    margin-top: 0;
  }
  .p_history-timeline .history2005 {
    margin-top: 0;
  }
  .p_history-timeline .history2006 {
    margin-top: 0;
  }
  .p_history-timeline .history200609 {
    margin-top: 0;
  }
  .p_history-timeline .history2009 {
    margin-top: 0;
  }
  .p_history-timeline .history2011 {
    margin-top: 0;
  }
  .p_history-timeline .history2013 {
    margin-top: 0;
  }
  .p_history-timeline .history2014 {
    margin-top: 0;
  }
  .p_history-timeline .history2016 {
    margin-top: 0;
  }
  .p_history-timeline .history201607 {
    margin-top: 0;
  }
  .p_history-timeline .history2018 {
    margin-top: 0;
  }
  .p_history-timeline .history2018 .history-txt {
    translate: 0 0;
  }
  .p_history-timeline .history2019 {
    margin-top: 0;
  }
  .p_history-timeline .history202004 {
    margin-top: 0;
  }
  .p_history-timeline .history202004 .history-txt {
    translate: 0 0;
  }
  .p_history-timeline .history2020 {
    margin-top: 0;
  }
  .p_history-timeline .history202407 {
    margin-top: 0;
  }
  .p_history-timeline .history202409 {
    margin-top: 0;
  }
  .p_history-timeline .history202409 .history-txt {
    translate: 0 0;
  }
  .p_history-timeline .history202409 .history-remarks__img {
    padding-left: 0;
  }
  .p_history-timeline .history202410 {
    margin-top: 0;
  }
  .p_history-timeline .history202410 .history-txt {
    translate: 0 0;
  }
  .p_history-timeline .history202410 .history-remarks__img {
    padding-left: 0;
  }
  .d-pc {
    display: none;
  }
  .p_history-timeline__block--item {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .p_history-timeline__block--item .history-txt {
    grid-area: 1/2/2/3;
  }
  .p_history-timeline__block--item .history-date {
    grid-area: 1/1/3/2;
  }
  .p_history-timeline__block--item .history-remarks {
    grid-area: 2/2/3/3;
  }
  .p_history-timeline__block--item .history-txt:empty ~ .history-date {
    grid-area: 1/1/2/2;
    /* 左側に移動 */
  }
  .p_history-timeline__block--item .history-txt:empty ~ .history-remarks {
    grid-area: 1/2/2/3;
    /* 右側に移動 */
  }
  .p_news-body {
    margin-top: 45px;
    padding-bottom: 85px;
  }
  .p_news-d-body {
    margin-top: 65px;
  }
  .p_news-d-body__btn {
    margin-top: 40px;
    padding-bottom: 55px;
  }
  .p_news-ttl-box .news-ttl01 {
    font-size: 18px;
  }
}
@media (any-hover: hover) {
  .c-article-list__link:hover .c-article-list__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .c-list01__link:hover .c-list01__txt .dec {
    -webkit-transform: translate(5px);
            transform: translate(5px);
  }
  .c-list04__link:hover .c-list04__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .c-list04__link:hover .c-list04__dec .dec {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  .c-btn01.ptn01:hover {
    background: #0469AC;
  }
  .c-btn01.ptn01:hover .c-btn01__txt {
    color: #fff;
  }
  .c-btn01.ptn01:hover .c-btn01__dec {
    background: none;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .c-btn01.ptn01:hover .c-btn01__dec::before {
    -webkit-mask-image: url(../img/news/news-dec.svg);
            mask-image: url(../img/news/news-dec.svg);
    background: #fff;
  }
  .p_top-up-list__link:hover {
    background: #F0F5F8;
  }
}
@media not print {
  .anm {
    opacity: 0;
  }
  .anm.is-animated {
    -webkit-animation: fadeIn 1.5s forwards;
    animation: fadeIn 1.5s forwards;
  }
  .anm-up {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
  .anm-up.is-animated {
    -webkit-animation: fadeInUp 1.5s forwards;
    animation: fadeInUp 1.5s forwards;
  }
  .anm-left {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
  }
  .anm-left.is-animated {
    -webkit-animation: fadeInLeft 1.5s forwards;
    animation: fadeInLeft 1.5s forwards;
  }
  .anm-right {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
  }
  .anm-right.is-animated {
    -webkit-animation: fadeInRight 1.5s forwards;
    animation: fadeInRight 1.5s forwards;
  }
}
@media screen and (641px <= width <= 1240px) {
  .p_home-mv__dec {
    top: 120px;
    left: 100px;
  }
}
@media only screen and (max-width: 366px) {
  .p_top-tel-list.modal-tel .p_top-tel-list__ttl {
    font-size: 10px;
  }
  .p_top-tel-list.modal-tel .p_top-tel-list__tel .num {
    font-size: 12px;
  }
}
@media (min-width: 1600px) {
  .p_top-info::before {
    width: 100vw;
  }
  .p_top-up::before {
    width: 100vw;
  }
}
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */