@charset "UTF-8";
/* ==============================
Foundation
================================= */
/*
---
name: index
category:
  - object
  - object/foundation/index
---
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

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

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

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

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

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

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/*
---
name: index
category:
  - object
  - object/global/index
---
*/
/*
---
name: variable
category:
  - global/variable
---

変数 設定

*/
/*
---
name: mixin
category:
  - global/mixin
---

*/
/*
---
name: base
category:
  - foundation/base
---

基本設定

*/
@font-face {
  font-family: "Noto Serif Japanese";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/NotoSerifJP-Regular.otf) format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif Japanese";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/NotoSerifJP-Bold.otf) format("opentype");
  font-display: swap;
}
html {
  font-size: 62.5%;
}

body {
  font-size: 2rem;
  font-family: "Kiwi Maru", serif;
  line-height: 1.5;
  color: #414141;
  margin: 0;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 0;
    font-size: 1.6rem;
  }
}

a {
  transition-duration: 0.4s;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

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

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

address {
  font-style: normal;
}

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

dd {
  margin-left: 0;
}

/* ==============================
Layout
================================= */
/*
---
name: index
category:
  - object
  - object/layout/index
---
*/
/*
---
name: container
category:
  - object
  - object/layout/container
---

container

*/
.l-container {
  max-width: 1520px;
  margin-inline: auto;
}
@media screen and (max-width: 1200px) {
  .l-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.l-container__narrow {
  max-width: 1120px;
  margin-inline: auto;
}
@media screen and (max-width: 1200px) {
  .l-container__narrow {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.l-container__narrow.hidden {
  overflow: hidden;
}

/*
---
name: header
category:
  - object
  - object/layout/header
---

ヘッダー全体。

*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
}

/*
---
name: footer
category:
  - object
  - object/layout/footer
---

フッター全体。

*/
/* ==============================
Object
================================= */
/*
Component
----------------------------- */
/*
---
name: index
category:
  - object
  - object/component/index
---
*/
/*
---
name: anchor
category:
  - object
  - object/component/anchor
---

固定ヘッダーのときのページ内リンクのアンカーのずれを解消するためのクラスです。

*/
.c-anchor {
  margin-top: -80px !important;
  padding-top: 80px !important;
}

/*
---
name: animation
category:
  - object
  - object/component/animation
---

animation

*/
.c-animation-scroll {
  color: #3eb38f;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  cursor: pointer;
}
.c-animation-scroll::before {
  animation: scroll 2s infinite;
  background-color: #3eb38f;
  bottom: -65px;
  content: "";
  height: 55px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2px;
}
.c-animation-scroll::after {
  content: "";
  background-color: #3eb38f;
  border-radius: 50px;
  width: 7px;
  height: 7px;
  position: absolute;
  bottom: -80px;
  right: 0;
  left: 0;
  margin: auto;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*
---
name: arrow
category:
  - object
  - object/component/arrow
---

矢印

*/
.c-arrow {
  position: relative;
  display: inline-block;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  transition: all 0.5s;
}
.c-arrow:before, .c-arrow:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  content: "";
  vertical-align: middle;
  transition: all 0.5s;
}

/*
---
name: bg
category:
  - object
  - object/component/bg
---

bg

*/
.c-bg-lightgreen {
  background-color: #19a6a8;
}
.c-bg-white {
  background-color: #ffffff;
}
.c-bg-beige {
  background-color: #F2EFEB;
}

/*
---
name: bnr
category:
  - object
  - object/component/bnr
---

bnr

*/
.c-bnr-floating {
  position: fixed;
  bottom: 55px;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  background-image: url(../images/common/bg_bnrfloating.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100%;
  width: 68px;
  height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
@media screen and (max-width: 768px) {
  .c-bnr-floating {
    bottom: 70px;
    width: 50px;
    height: 125px;
  }
}
.c-bnr-floating.show {
  opacity: 1;
  visibility: visible;
}
.c-bnr-floating a:not(:first-child) {
  border-top: 1px solid #fff;
  padding-top: 15px;
  margin-top: 15px;
}
.c-bnr-floating img {
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-bnr-floating img {
    width: 80%;
    display: block;
    margin-inline: auto;
  }
}
.c-bnr-floating img:hover {
  transform: scale(1.2);
}

/*
---
name: box
category:
  - object
  - object/component/box
---

ボックス

*/
.c-box-imageborder img {
  border: 2px solid #cecece;
  padding: 10px;
}

.c-box-linebase {
  background-color: #fff;
  border: 2px solid #19a6a8;
  border-radius: 10px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .c-box-linebase {
    padding: 15px;
    font-size: 1.6rem;
  }
}
.c-box-linebase.mini {
  padding: 15px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .c-box-linebase.mini {
    font-size: 1.6rem;
    padding-right: 10px;
    padding-left: 10px;
  }
}

.c-box-wavesquare {
  background-color: #f0ede9;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
}
.c-box-wavesquare__img img {
  width: 100%;
}
.c-box-wavesquare__txt {
  background-color: #f0ede9;
  border-radius: 0 0 30px 30px;
  text-align: center;
  position: relative;
  padding-top: 5px;
  padding-bottom: 30px;
  padding-right: 10px;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .c-box-wavesquare__txt {
    padding-right: 5px;
    padding-left: 5px;
  }
}
.c-box-wavesquare__txt .c-title-color {
  flex-grow: 1;
}
.c-box-wavesquare__txt p {
  padding-right: 40px;
  padding-left: 40px;
  flex-grow: 1;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 768px) {
  .c-box-wavesquare__txt p {
    padding-right: 0;
    padding-left: 0;
    font-size: 1.2rem;
  }
}
.c-box-wavesquare__txt .c-btn-round {
  padding: 5px 65px 5px 60px;
}
.c-box-wavesquare__txt .c-btn-round.detail-btn {
  width: auto;
}
.c-box-wavesquare__txt .c-btn-round.btn-ver2 {
  width: auto;
}
.c-box-wavesquare__txt::before {
  content: "";
  background-image: url(../images/common/bnr_wave.svg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100%;
  height: 40px;
}
@media screen and (max-width: 768px) {
  .c-box-wavesquare__txt::before {
    background-image: url(../images/common/bnr_wave-sp.svg);
    top: -40px;
  }
}
.c-box-wavesquare.white-ver {
  background-color: #fff;
}
.c-box-wavesquare.white-ver .c-box-wavesquare__txt {
  background-color: #fff;
}
.c-box-wavesquare.white-ver .c-box-wavesquare__txt::before {
  background-image: url(../images/common/bnr_wave_w.svg);
}
@media screen and (max-width: 768px) {
  .c-box-wavesquare.white-ver .c-box-wavesquare__txt::before {
    background-image: url(../images/common/bnr_wave_w-sp.svg);
  }
}
.c-box-wavesquare.beige-ver {
  background-color: #f7f5f2;
}
.c-box-wavesquare.beige-ver .c-box-wavesquare__txt {
  background-color: #f7f5f2;
}
.c-box-wavesquare.beige-ver .c-box-wavesquare__txt::before {
  background-image: url(../images/common/bnr_wave_be.svg);
}
@media screen and (max-width: 768px) {
  .c-box-wavesquare.beige-ver .c-box-wavesquare__txt::before {
    background-image: url(../images/common/bnr_wave_be-sp.svg);
  }
}
.c-box-wavesquare.beige-ver.col3-ver .c-box-wavesquare__txt::before {
  background-image: url(../images/common/bnr_wave_be_3.svg);
}
@media screen and (max-width: 768px) {
  .c-box-wavesquare.beige-ver.col3-ver .c-box-wavesquare__txt::before {
    background-image: url(../images/common/bnr_wave_be_3-sp.svg);
    background-size: 100%;
    background-position: top;
  }
}
.c-box-wavesquare.border-on .c-box-wavesquare__img {
  border: 2px solid #f7f5f2;
  border-radius: 30px;
}
.c-box-wavesquare.col1-style {
  max-width: 563px;
}

.c-box-plane {
  background-color: #fff;
  border-radius: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .c-box-plane {
    padding-top: 35px;
  }
}
.c-box-plane__contents {
  display: flex;
  flex-direction: column;
}
.c-box-plane__title {
  flex-grow: 1;
}
.c-box-plane__txt {
  flex-grow: 1;
}

.c-box-slider {
  background-color: #fbfbfb;
  border-radius: 10px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.c-box-slider.symbiosis-emergency {
  width: 950px;
}
.c-box-slider__contents {
  background-color: #EBF7F2;
  border-radius: 10px;
  padding: 10px;
  height: 200px;
}
.c-box-slider__title {
  color: #19a6a8;
}
.c-box-slider__txt {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .c-layout-2grid-sp .c-box-wavesquare .c-title-color {
    font-size: 1.8rem;
  }
  .c-layout-2grid-sp .c-box-wavesquare.beige-ver.col3-ver .c-box-wavesquare__txt::before {
    background-size: 180px;
    background-position: center 22px;
  }
}
/*
---
name: btn
category:
  - object
  - object/component/btn
---

ボタン

*/
.c-btn-simple {
  border-radius: 10px;
  text-align: center;
  background: #19a6a8;
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: bold;
  padding: 15px 10px;
  color: #fff;
}

.c-btn-round {
  display: block;
  background-image: url(../images/common/btn_blue.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  border-radius: 50px;
  box-shadow: 0px 3px 0px 0px rgb(202, 199, 210);
}
@media screen and (max-width: 992px) {
  .c-btn-round {
    width: 180px;
  }
}
.c-btn-round.btn-ver2 {
  width: 170px;
}
@media screen and (max-width: 992px) {
  .c-btn-round.btn-ver2 {
    min-width: 30%;
    display: inline-flex;
    width: auto;
    justify-content: center;
    padding-left: 30px;
    padding-right: 35px;
  }
  .c-btn-round.btn-ver2.c-icon-arrow-r::after {
    right: 15px;
  }
  .c-btn-round.btn-ver2.c-icon-blank {
    padding-right: 40px;
  }
}
.c-btn-round.btn-ver3 {
  width: 360px;
}
@media screen and (max-width: 992px) {
  .c-btn-round.btn-ver3 {
    width: 90%;
  }
}
.c-btn-round.detail-btn {
  width: 170px;
}
@media screen and (max-width: 992px) {
  .c-btn-round.detail-btn {
    width: 114px;
    justify-content: inherit;
    padding-left: 20px;
    padding-right: 25px;
  }
}
.c-btn-round.green-btn {
  background-image: url(../images/common/btn_green.png);
}
.c-btn-round.blue-btn {
  background-image: url(../images/common/btn_deepblue.png);
}
.c-btn-round.pink-btn {
  background-image: url(../images/common/btn_pink.png);
}
.c-btn-round.orange-btn {
  background-image: url(../images/common/btn_orange.png);
}
.c-btn-round.purple-btn {
  background-image: url(../images/common/btn_purple.png);
}
.c-btn-round.sns-f {
  padding-left: 30px;
}
.c-btn-round.sns-f::before {
  content: "";
  background-image: url(../images/common/icon_f.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-btn-round.sns-x {
  padding-left: 30px;
}
.c-btn-round.sns-x::before {
  content: "";
  background-image: url(../images/common/icon_x.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.c-btn-grade {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.8rem;
  border-radius: 20px;
  width: 346px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 500;
  box-shadow: 0px 5px 0px -2px rgb(212, 212, 226);
  background-color: [object object];
  background-image: linear-gradient(90deg, rgb(91, 177, 211), rgb(118, 201, 209));
}
@media screen and (max-width: 768px) {
  .c-btn-grade {
    width: 100%;
    font-size: 16px;
  }
}
.c-btn-grade.square {
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .c-btn-grade.l-size {
    width: 422px;
    height: 65px;
  }
}

.c-btn-other {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #2488b0;
  font-size: 18px;
  border-radius: 20px;
  width: 346px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: bold;
  border: 2px solid #5bb1d3;
  box-shadow: 0px 5px 0px -2px rgb(212, 212, 226);
  background-color: #ddfbf6;
}
@media screen and (max-width: 768px) {
  .c-btn-other {
    width: 100%;
  }
}

.c-btn-yellow {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  text-decoration: none;
  color: #090909;
  font-size: 1.8rem;
  border-radius: 50px;
  width: 346px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 400;
  background-color: #ffe16d;
  border: #f6b929 1px solid;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 768px) {
  .c-btn-yellow {
    width: 100%;
    font-size: 16px;
  }
}

/*
---
name: hamburger
category:
  - object
  - object/component/hamburger
---

動くハンバーガーアイコンです。

*/
@media screen and (min-width: 992px) {
  .c-hamburger__area input[type=checkbox] {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .c-hamburger__area {
    width: 150px;
    height: 35px;
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(to right, #46d0ac, #64d7c2);
    border-radius: 50px;
    transition: all 0.5s;
  }
  .c-hamburger__area input[type=checkbox] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
  }
  .c-hamburger__area input[type=checkbox]:checked + .c-hamburger__bar span {
    background-color: transparent;
  }
  .c-hamburger__area input[type=checkbox]:checked + .c-hamburger__bar span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .c-hamburger__area input[type=checkbox]:checked + .c-hamburger__bar span::after {
    bottom: 0;
    transform: rotate(-45deg);
  }
  .c-hamburger__area input[type=checkbox]:checked ~ .c-hamburger__nav {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 992px) {
  .c-hamburger__bar {
    display: block;
    width: 26px;
    height: 16px;
    position: relative;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
  }
  .c-hamburger__bar::after {
    content: "menu";
    position: absolute;
    top: 35%;
    left: 40px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    font-size: 18px;
    color: #fff;
  }
  .c-hamburger__bar span, .c-hamburger__bar span::before, .c-hamburger__bar span::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.5s;
  }
  .c-hamburger__bar span {
    background-color: transparent;
  }
  .c-hamburger__bar span::before {
    top: -5px;
  }
  .c-hamburger__bar span::after {
    bottom: -5px;
  }
}
@media screen and (max-width: 992px) {
  .c-hamburger__nav {
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    overflow-y: scroll;
  }
}

.is-open {
  overflow: hidden;
}

@media screen and (max-width: 992px) {
  .is-open .c-hamburger__area {
    width: 70px;
  }
}
@media screen and (max-width: 992px) {
  .is-open .c-hamburger__bar {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 992px) {
  .is-open .c-hamburger__bar::after {
    display: none;
  }
}

/*
---
name: icon
category:
  - object
  - object/component/icon
---

icon

*/
.c-icon-arrow-r {
  position: relative;
}
.c-icon-arrow-r::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: inline-block;
}
.c-icon-arrow-r.icon-blue::after {
  border-top: 2px solid #2488b0;
  border-right: 2px solid #2488b0;
}
.c-icon-blank {
  position: relative;
}
.c-icon-blank::after {
  content: "\f35d";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-icon-blank::after {
    right: 15px;
    font-size: 1.2rem;
  }
}
.c-icon-print {
  position: relative;
}
.c-icon-print::after {
  content: "";
  background-image: url(../images/common/icon_print.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  width: 38px;
  height: 33px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-icon-print::after {
    background-size: 100%;
    width: 30px;
    right: 15px;
  }
}
.c-icon-pdf {
  position: relative;
}
.c-icon-pdf::after {
  content: "";
  background-image: url(../images/common/icon_pdf.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-icon-pdf::after {
    background-size: 100%;
    width: 30px;
    right: 15px;
  }
}
.c-icon-moviestart {
  position: relative;
}
.c-icon-moviestart::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
@media screen and (max-width: 992px) {
  .c-icon-moviestart::before {
    background: url(../images/common/icon_moviestart.png) no-repeat center center;
    background-size: 60px 60px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 992px) {
  .c-icon-moviestart::before {
    background: url(../images/common/icon_moviestart.png) no-repeat center center;
    background-size: 60px 60px;
    width: 60px;
    height: 60px;
  }
}

/*
---
name: layout
category:
  - object
  - object/component/layout
---

layout

*/
.c-layout-half {
  display: flex;
  gap: 50px;
}
.c-layout-half--item {
  -webkit-flex: 1;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .c-layout-half {
    flex-direction: column;
    gap: 20px;
  }
}

.c-layout-2grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: max-content;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .c-layout-2grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .c-layout-2grid.cause-allergy-igE {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-layout-2grid.specialist-box {
    gap: 20px;
  }
}

.c-layout-2grid-stay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: max-content;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .c-layout-2grid-stay {
    gap: 15px;
  }
}

.c-layout-2grid-narrow {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 40px;
}
.c-layout-2grid-narrow.center {
  display: grid;
  place-items: center start;
}
@media screen and (min-width: 768px) {
  .c-layout-2grid-narrow .item01 {
    grid-column: span 6/span 6;
  }
  .c-layout-2grid-narrow .item02 {
    grid-column: span 2/span 2;
    grid-column-start: 7;
  }
}
@media screen and (max-width: 768px) {
  .c-layout-2grid-narrow {
    gap: 20px;
  }
  .c-layout-2grid-narrow .item01 {
    grid-column: span 8/span 8;
  }
  .c-layout-2grid-narrow .item02 {
    grid-column: span 4/span 4;
    grid-column-start: 9;
  }
}

.c-layout-3grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: max-content;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .c-layout-3grid {
    grid-template-columns: 1fr;
  }
}

.c-layout-4grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: max-content;
  gap: 35px;
}
@media screen and (max-width: 768px) {
  .c-layout-4grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

.c-layout-5grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-rows: max-content;
  gap: 35px;
}
@media screen and (max-width: 768px) {
  .c-layout-5grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

@media screen and (min-width: 768px) {
  .c-layout-lmain-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 40px;
  }
  .c-layout-lmain-grid .item01 {
    grid-column: span 8/span 8;
  }
  .c-layout-lmain-grid .item02 {
    grid-column: span 4/span 4;
    grid-column-start: 9;
  }
}
@media screen and (max-width: 768px) {
  .c-layout-lmain-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.c-layout-lmain-grid.type02 .item01 {
  grid-column: span 9/span 9;
}
.c-layout-lmain-grid.type02 .item02 {
  grid-column: span 3/span 3;
  grid-column-start: 10;
}
.c-layout-lmain-grid.type03 .item01 {
  grid-column: span 3/span 3;
}
.c-layout-lmain-grid.type03 .item02 {
  grid-column: span 9/span 9;
  grid-column-start: 4;
}

@media screen and (max-width: 768px) {
  .p-reverse-sp {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .p-reverse-sp .item01 {
    order: 2;
  }
  .p-reverse-sp .item02 {
    order: 1;
  }
}
@media screen and (min-width: 768px) {
  .c-layout-3block-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px 40px;
    align-items: start;
  }
  .c-layout-3block-grid .item01 {
    grid-column: span 8/span 8;
  }
  .c-layout-3block-grid .item02 {
    grid-column: span 4/span 4;
    grid-row: span 2/span 2;
    grid-column-start: 9;
  }
  .c-layout-3block-grid .item03 {
    grid-column: span 8/span 8;
    grid-row-start: 2;
  }
}
@media screen and (max-width: 768px) {
  .c-layout-3block-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .c-layout-1grid-sp {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .c-layout-2grid-sp {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }
}

@media screen and (min-width: 768px) {
  .row-gap0-pc {
    row-gap: 0;
  }
}

.flex-direction-column {
  flex-direction: column;
}

.justify-content-center {
  justify-content: center;
}

.align-items-start {
  align-items: start;
}

.align-items-flex-start {
  align-items: flex-start;
}

.align-self-center {
  align-self: center;
}

.p-specialist-box .c-layout-lmain-grid {
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-specialist-box .c-layout-lmain-grid {
    gap: 5px;
    align-items: start;
  }
}
.p-specialist-box .c-layout-lmain-grid.type03 .item01 {
  grid-column: span 2/span 2;
}
.p-specialist-box .c-layout-lmain-grid.type03 .item02 {
  grid-column: span 10/span 10;
  grid-column-start: 3;
}

/*
---
name: link
category:
  - object
  - object/component/link
---

リンク

*/
.c-link--default {
  color: #19a6a8;
  text-decoration: underline;
  overflow-wrap: anywhere;
}
.c-link--default:hover {
  text-decoration: none;
}

.c-link--default-b {
  color: #414141;
  text-decoration: underline;
}
.c-link--default-b:hover {
  text-decoration: none;
}

.c-link--b {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
  border-bottom: 1px solid #b1afad;
  color: #414141;
}

/*
---
name: list
category:
  - object
  - object/component/list
---

list

*/
.c-list-basic li {
  margin-top: 15px;
}
.c-list-basic li > ul {
  margin-left: 20px;
}
.c-list-dot {
  padding-left: 20px;
}
.c-list-dot li {
  position: relative;
  margin-top: 10px;
}
.c-list-dot li::before {
  position: absolute;
  content: "・";
  color: #19a6a8;
  left: -18px;
  top: -4px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .c-list-dot li::before {
    top: -2px;
  }
}
.c-list-blackdot {
  padding-left: 20px;
}
.c-list-blackdot li {
  position: relative;
  margin-top: 30px;
}
.c-list-blackdot li::before {
  position: absolute;
  content: "・";
  color: #000;
  left: -18px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .c-list-blackdot li::before {
    top: -2px;
  }
}
.c-list-custom {
  padding-left: 20px;
}
.c-list-custom li {
  counter-increment: list-counter;
  position: relative;
  margin-top: 10px;
  padding-left: 1.25rem;
}
.c-list-custom li::before {
  position: absolute;
  content: counter(list-counter) "）";
  left: -18px;
}
.c-list-custom.sankou li {
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .c-list-custom.sankou li {
    padding-left: 0;
  }
}

/*
---
name: pagetop
category:
  - object
  - object/component/pagetop
---

ページトップ

*/
.c-pagetop {
  display: none;
}
@media screen and (max-width: 992px) {
  .c-pagetop {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/common/bg_pagetop.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 67px;
    height: 66px;
    border-radius: 50px;
    box-shadow: 0px 3px 0px 0px rgba(202, 199, 210, 0.6);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
  }
  .c-pagetop.show {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 992px) {
  .c-pagetop__arrow {
    color: #fff;
    font-size: 1.7rem;
    padding-top: 20px;
  }
  .c-pagetop__arrow::before {
    content: "";
    width: 20px;
    height: 20px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateX(-50%) translateY(20%) rotate(-45deg);
    position: absolute;
    top: 10px;
    left: 50%;
  }
}

/*
---
name: section
category:
  - object
  - object/component/section
---

区切り

*/
.c-section {
  margin-top: 60px;
}
.c-section-top-pc {
  margin-top: 160px;
}
@media screen and (max-width: 768px) {
  .c-section-top-sp {
    margin-top: 75px;
  }
}
.c-section-under {
  margin-top: 165px;
}
@media screen and (max-width: 768px) {
  .c-section-under {
    margin-top: 50px;
  }
}
.c-section-under-contents {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .c-section-under-contents {
    margin-top: 40px;
  }
}

/*
---
name: separate
category:
  - object
  - object/component/separate
---

区切り線

*/
.p-separate--01 {
  border-bottom: 1px dotted #000;
}

/*
---
name: table
category:
  - object
  - object/component/table
---

table

*/
.c-table-base table {
  width: 100%;
  border-collapse: collapse;
}
.c-table-base table th,
.c-table-base table td {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 10px;
  padding-left: 10px;
  text-align: center;
}
.c-table-base table tr.strong {
  background: #ebf7f2;
}
.c-table-base table tr.strong th {
  background: #c9eadf;
}
.c-table-base table th {
  font-weight: bold;
  background: #f5f5f2;
  text-align: center;
}
.c-table-base table th:first-child {
  text-align: left;
}
.c-table-base .tbl-1 .head {
  width: 170px;
}
.c-table-base .tbl-1 .col {
  width: calc(100% - 21.25px);
}
.c-table-base .tbl-2 thead th {
  font-size: 17px;
  font-size: 1.7rem;
}
.c-table-base .tbl-2 th,
.c-table-base .tbl-2 td {
  padding: 10px;
}
.c-table-base .tbl-2 thead tr td:first-child {
  background: #fffbd9;
}
.c-table-base .tbl-2 th {
  background: #fffbd9;
}
.c-table-base .tbl-2 .head {
  width: 30%;
}
.c-table-base .tbl-2 .col {
  width: 23%;
}
.c-table-base .tbl-3 {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .c-table-base .tbl-3 .thead {
    display: none;
  }
}
.c-table-base .tbl-3 .thead .tr {
  display: table;
  width: 100%;
  color: #fff;
  font-weight: 500;
  font-size: 2.4rem;
}
.c-table-base .tbl-3 .thead .tr p {
  margin-bottom: 0;
}
.c-table-base .tbl-3 .thead .tr div {
  display: table-cell;
}
.c-table-base .tbl-3 .thead .tr .th {
  width: 60%;
  background-color: #37adaf;
  border: 1px solid #dadada;
  padding-left: 24px;
  height: 57px;
  vertical-align: middle;
}
.c-table-base .tbl-3 .thead .tr .td {
  width: 20%;
  background-color: #37adaf;
  border: 1px solid #dadada;
  text-align: center;
  height: 57px;
  vertical-align: middle;
}
.c-table-base .tbl-3 .tbody .tr {
  display: table;
  width: 100%;
  font-weight: 500;
  font-size: 2rem;
}
@media screen and (max-width: 576px) {
  .c-table-base .tbl-3 .tbody .tr {
    display: block;
    width: 100%;
    font-size: 1.6rem;
  }
}
.c-table-base .tbl-3 .tbody .tr .th {
  display: table-cell;
  width: 60%;
  padding-left: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .c-table-base .tbl-3 .tbody .tr .th {
    display: block;
    width: 100%;
    height: auto !important;
    padding-left: 0;
    text-align: center;
    background-color: #d3f4e9 !important;
  }
}
.c-table-base .tbl-3 .tbody .tr .th p {
  margin-bottom: 0;
}
.c-table-base .tbl-3 .tbody .tr .th,
.c-table-base .tbl-3 .tbody .tr .tr-sp .td {
  border: 1px solid #dadada;
  border-top: none;
  vertical-align: middle;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .c-table-base .tbl-3 .tbody .tr .th,
  .c-table-base .tbl-3 .tbody .tr .tr-sp .td {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.c-table-base .tbl-3 .tbody .tr-sp {
  display: table;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .c-table-base .tbl-3 .tbody .tr-sp {
    width: 100%;
  }
}
.c-table-base .tbl-3 .tbody .tr-sp div {
  display: table-cell;
}
.c-table-base .tbl-3 .tbody .tr .tr-sp .td {
  width: 50%;
  text-align: center;
}
.c-table-base .tbl-3 .tbody .tr .th:first-child {
  border-right: none;
}
.c-table-base .tbl-3 .tbody .tr:nth-child(odd) .th,
.c-table-base .tbl-3 .tbody .tr:nth-child(odd) .td {
  background-color: #ffffff;
}
.c-table-base .tbl-3 .tbody .tr:nth-child(even) .th,
.c-table-base .tbl-3 .tbody .tr:nth-child(even) .td {
  background-color: #d3f4e9;
}
@media screen and (max-width: 576px) {
  .c-table-base .tbl-3 .tbody .tr:nth-child(even) .td {
    background-color: #ffffff !important;
  }
}
.c-table-base .tbl-3 .tbody .tr .tr-sp .td:last-child {
  border-left: none;
}
.c-table-base .tbl-4 {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .c-table-base .tbl-4 .thead {
    display: none;
  }
}
.c-table-base .tbl-4 .tbody .tr {
  display: table;
  width: 100%;
  color: #19a6a8;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", serif;
}
.c-table-base .tbl-4 .tbody .tr div {
  display: table-cell;
}
.c-table-base .tbl-4 .tbody .tr .tr-row {
  display: table;
  width: 100%;
}
.c-table-base .tbl-4 .tbody .tr .tr-row .td {
  background-color: #fff;
  border: 1px solid #dcdcdc;
  text-align: center;
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  width: 50%;
}

.tbl-5 {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.tbl-5 .thead .tr {
  display: table;
  width: 100%;
  color: #fff;
  font-weight: 500;
  font-size: 2.4rem;
}
.tbl-5 .thead .tr div {
  display: table-cell;
}
.tbl-5 .thead .tr .th,
.tbl-5 .thead .tr .td {
  background-color: #37adaf;
  border: 1px solid #dadada;
  color: #fff;
  padding-left: 24px;
  vertical-align: middle;
  padding-top: 20px;
  padding-bottom: 15px;
}
@media screen and (max-width: 576px) {
  .tbl-5 .thead .tr .th,
  .tbl-5 .thead .tr .td {
    padding-top: 15px;
  }
}
.tbl-5 .thead .tr .th {
  width: 80%;
}
@media screen and (max-width: 576px) {
  .tbl-5 .thead .tr .th {
    width: 100%;
    background-color: #d3f4e9;
    font-size: 1.6rem;
    color: #59504d;
  }
}
.tbl-5 .thead .tr .td {
  width: 20%;
  text-align: center;
  padding-left: 0;
}
@media screen and (max-width: 576px) {
  .tbl-5 .thead .tr .td {
    display: none;
  }
}
.tbl-5 .tbody .tr {
  display: table;
  width: 100%;
  font-weight: 500;
  font-size: 2rem;
  color: #59504d;
}
.tbl-5 .tbody .tr:nth-child(odd) .th, .tbl-5 .tbody .tr:nth-child(odd) .td {
  background-color: #ffffff;
}
.tbl-5 .tbody .tr:nth-child(even) .th, .tbl-5 .tbody .tr:nth-child(even) .td {
  background-color: #d3f4e9;
}
.tbl-5 .tbody .tr .th,
.tbl-5 .tbody .tr .td {
  border: 1px solid #dadada;
  border-top: none;
  vertical-align: middle;
  padding-top: 20px;
  padding-bottom: 15px;
}
@media screen and (max-width: 576px) {
  .tbl-5 .tbody .tr .th,
  .tbl-5 .tbody .tr .td {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.tbl-5 .tbody .tr .th {
  display: table-cell;
  width: 80%;
  padding-left: 24px;
}
@media screen and (max-width: 576px) {
  .tbl-5 .tbody .tr .th {
    font-size: 1.5rem;
    color: #19a6a8;
    padding-left: 0;
    text-align: center;
  }
}
.tbl-5 .tbody .tr .tr-sp {
  display: table;
  width: 100%;
}
.tbl-5 .tbody .tr .tr-sp div {
  display: table-cell;
}
.tbl-5 .tbody .tr .tr-sp .td {
  width: 50%;
  text-align: center;
}

.hold-left .hold {
  display: none;
}

.hold-frame .arrow {
  display: none;
}

@media screen and (max-width: 576px) {
  .hold-frame .arrow.scroll-hint-show {
    display: block;
  }
}

@media screen and (max-width: 576px) {
  .hold-frame {
    position: relative;
    text-align: center;
    line-height: 35px;
  }
  .hold-frame th,
  .hold-frame td {
    padding-top: 0;
    padding-bottom: 0;
  }
  .hold-frame .arrow {
    position: absolute;
    top: 50%;
    right: 50px;
    z-index: 10;
    width: 220px;
    margin-top: -80px;
  }
  .hold-frame .hold-left {
    overflow-x: auto;
    margin-bottom: 10px;
    padding-left: 158px;
    padding-bottom: 20px;
  }
  .hold-frame .hold-left.frequency {
    padding-left: 208px;
  }
  .hold-frame .hold-left.bee-what {
    padding-left: 158px;
  }
  .hold-frame .hold-left.narrow {
    padding-left: 88px;
  }
  .hold-frame .hold-left .hold-base col {
    width: 12%;
  }
  .hold-frame .hold-left .hold-base th:first-child,
  .hold-frame .hold-left .hold-base td:first-child {
    display: none;
  }
  .hold-frame .hold-left table {
    margin-bottom: 0;
    line-height: 1;
  }
  .hold-frame .hold-left .hold {
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
    display: table;
    width: 160px;
  }
  .hold-frame .hold-left .hold.frequency {
    width: 210px;
  }
  .hold-frame .hold-left .hold.which {
    width: 90px;
  }
  .hold-frame .hold-left .hold .em {
    color: #414141;
    background: #c9eadf;
    padding: 0 10px;
    height: 47px;
  }
  .type2 .hold-left {
    padding-left: 150px;
  }
  .type2 .hold-left .hold {
    width: 151px;
  }
  .type2 .hold-left .hold tbody tr:first-child td {
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .type2 .hold-left .hold th,
  .type2 .hold-left .hold td {
    background: #fffbd9;
    white-space: nowrap;
  }
  .type2 .tbl-2 {
    width: 100%;
  }
  .type2 .tbl-2 thead th,
  .type2 .tbl-2 thead td {
    font-size: 14px;
    font-size: 1.4rem;
    white-space: nowrap;
  }
  .type2 .tbl-2 col {
    width: 90px !important;
  }
}
.hold.radius-table {
  border-radius: 10px;
  border-spacing: 0;
  border: none;
  border-left: 1px solid #e1e1e1;
  border-top: 1px solid #e1e1e1;
  border-collapse: separate;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .hold.radius-table {
    border-radius: 10px 0 0 10px;
  }
}

.hold.radius-table tr > * {
  border: none;
  border-right: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}

.hold.radius-table tr:first-child > *:first-child {
  border-radius: 10px 0 0 0;
}

.hold.radius-table tr:last-child > *:first-child {
  border-radius: 0 0 0 10px;
}

.radius-lower-left {
  border-radius: 0 0 0 10px !important;
}

.no-radius {
  border-radius: 0 0 0 0 !important;
}

.hold-base.radius-table {
  border-radius: 10px;
  border-spacing: 0;
  border: none;
  border-left: 1px solid #e1e1e1;
  border-top: 1px solid #e1e1e1;
  border-collapse: separate;
}
@media screen and (max-width: 768px) {
  .hold-base.radius-table {
    border-radius: 0 10px 10px 0;
  }
}

.hold-base.radius-table tr > * {
  border: none;
  border-right: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}
@media screen and (max-width: 768px) {
  .hold-base.radius-table tr > * {
    padding: 15px 20px;
    white-space: nowrap;
  }
}

.hold-base.radius-table thead tr:first-child > *:first-child {
  border-radius: 10px 0 0 0;
}

.hold-base.radius-table thead tr:first-child > *:last-child {
  border-radius: 0 10px 0 0;
}

.hold-base.radius-table tbody tr:last-child > *:first-child {
  border-radius: 0 0 0 10px;
}

.hold-base.radius-table tbody tr:last-child > *:last-child {
  border-radius: 0 0 10px 0;
}

@media screen and (max-width: 768px) {
  .c-table-base:has(.hold-whole) {
    position: relative;
  }
}

.hold-whole table {
  table-layout: fixed;
  border-spacing: 0;
  border: none;
  border-left: 1px solid #e1e1e1;
  border-top: 1px solid #e1e1e1;
  border-collapse: separate;
}
.hold-whole table tr > * {
  border: none;
  border-right: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}
@media screen and (max-width: 768px) {
  .hold-whole {
    overflow-x: auto;
    padding-bottom: 20px;
  }
  .hold-whole table {
    width: 500px;
  }
}

.arrow {
  display: none;
}
@media screen and (max-width: 768px) {
  .arrow {
    position: absolute;
    top: 50%;
    right: 50px;
    z-index: 10;
    width: 220px;
    margin-top: -80px;
  }
}

@media screen and (max-width: 576px) {
  .scroll-hint-show {
    display: block;
  }
}

.bee-what .hold-whole table .head {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .bee-what .hold-whole table .head {
    width: 100px;
  }
}

.c-table-simple {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}
.c-table-simple tr {
  border-bottom: 1px solid #e1e1e1;
}
.c-table-simple tr:first-child th:first-child {
  border-radius: 10px 0 0 0;
}
.c-table-simple tr:first-child :last-child {
  border-radius: 0 10px 0 0;
}
.c-table-simple tr:last-child {
  border-bottom: none;
}
.c-table-simple tr:last-child th:first-child {
  border-radius: 0 0 0 10px;
}
.c-table-simple tr:last-child :last-child {
  border-radius: 0 0 10px 0;
}
.c-table-simple th {
  background-color: #EBF7F2;
  padding: 10px 20px;
  text-align: left;
}
.c-table-simple td {
  background-color: #fbfbfb;
  padding: 10px 20px;
}
.c-table-simple.symbiosis-emergency tr td ul {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 260px);
}
.c-table-simple.symbiosis-emergency tr:first-child td ul {
  grid-template-columns: 260px 2fr;
}

@media screen and (max-width: 768px) {
  .c-table-scroll-wrapper {
    position: relative;
  }
}
.c-table-scroll-wrapper .arrow {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-table-scroll-wrapper .arrow {
    position: absolute;
    top: 50%;
    right: 50px;
    z-index: 10;
    width: 220px;
    margin-top: -80px;
  }
  .c-table-scroll-wrapper .arrow.symbiosis-emergency {
    top: 30%;
  }
  .c-table-scroll-wrapper .arrow.prevention-treatment {
    top: 35%;
  }
}
@media screen and (max-width: 576px) {
  .c-table-scroll-wrapper .scroll-hint-show {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .c-table-scroll-wrapper .table-scroll {
    overflow-x: auto;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .c-table-other01 .hold-base.radius-table {
    border-radius: 10px;
  }
}

@media screen and (max-width: 768px) {
  tr.line-break-2 {
    height: 63px;
  }
}

@media screen and (max-width: 768px) {
  .milk th.lines-3 {
    height: 153px;
  }
  .milk th.lines-1 {
    height: 47px;
  }
}

/*
---
name: title
category:
  - object
  - object/component/title
---

各種タイトル

*/
.c-title-wave {
  font-size: 2.2rem;
  font-weight: 500;
  background: url(../images/common/bg_wave.png) bottom repeat-x;
  padding-bottom: 10px;
  background-size: 100%;
}
@media screen and (max-width: 576px) {
  .c-title-wave {
    font-size: 1.6rem;
    line-height: 1.8;
    padding-bottom: 8px;
    background-size: auto;
  }
}
.c-title-wave.head-tit {
  font-size: 4rem;
  padding-bottom: 50px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .c-title-wave.head-tit {
    font-size: 3.2rem;
    padding-bottom: 20px;
    line-height: 1.25;
  }
}
.c-title-wave.top {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .c-title-wave.top {
    display: inline;
  }
}
.c-title-wave.no-wave {
  background: none;
  padding-bottom: 0;
}

.c-title-redbubble {
  position: relative;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.c-title-redbubble::before {
  content: "";
  background: url(../images/common/bg_redbubble.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 94px;
  height: 54px;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.c-title-underline {
  font-size: 1.8rem;
  font-weight: normal;
  border-bottom: 2px solid #19a6a8;
  display: inline-block;
}

.c-title-lv2 {
  font-size: 3.2rem;
  position: relative;
  text-align: center;
  padding-bottom: 20px;
  font-weight: 400;
}
.c-title-lv2::after {
  content: "";
  border-bottom: 5px solid #19a6a8;
  border-radius: 50px;
  width: 65px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .c-title-lv2 {
    font-size: 2.4rem;
  }
}
.c-title-lv2 .sub-text {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .c-title-lv2 .sub-text {
    font-size: 2rem;
  }
}

.c-title-color {
  font-size: 2.4rem;
  font-weight: 400;
  color: #19a6a8;
}
@media screen and (max-width: 768px) {
  .c-title-color {
    font-size: 2rem;
    text-align: center;
  }
}

.c-title-black {
  font-size: 2.4rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .c-title-black {
    font-size: 2rem;
    text-align: center;
  }
}

.c-title-color--amber {
  font-size: 2.4rem;
  font-weight: 500;
  color: #f6b929;
}
@media screen and (max-width: 768px) {
  .c-title-color--amber {
    font-size: 2rem;
    text-align: center;
  }
}

.c-title-base {
  font-size: 2.2rem;
  font-weight: 500;
}

.c-title-dot {
  color: #19a6a8;
}
.c-title-dot::before {
  content: "・";
  color: #19a6a8;
}

.c-title-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  border-radius: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 25px;
  padding-left: 25px;
  background-color: [object object];
  background-image: linear-gradient(90deg, rgb(91, 177, 211), rgb(118, 201, 209));
  display: inline-block;
}

/*
Project
----------------------------- */
/*
---
name: index
category:
  - object
  - object/project/index
---
*/
/*
---
name: app
category:
  - object
  - object/project/app
---


マイエピ

*/
.p-app__title {
  position: relative;
  margin-bottom: 100px;
}
.p-app__title .logo,
.p-app__title .side {
  display: block;
  width: auto;
  margin-inline: auto;
}
.p-app__title .side {
  position: absolute;
  top: 100px;
}
@media screen and (max-width: 768px) {
  .p-app__title .side {
    top: 250px;
  }
}
.p-app__sign {
  position: absolute;
  inset: 0;
  top: 250px;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-app__sign {
    position: static;
    margin-top: 30px;
  }
}
.p-app__sign .name {
  margin: 12px 0;
}
@media screen and (max-width: 768px) {
  .p-app__sign .name {
    margin: 20px 0;
  }
}
.p-app__sign .name span {
  font-size: 2rem;
}
.p-app__point {
  gap: 0;
}
@media screen and (max-width: 768px) {
  .p-app__point {
    gap: 50px;
  }
}
.p-app__point-contents {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  text-align: center;
}
.p-app__point-contents h3 {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.4;
  margin: 30px 0 10px;
  min-height: 60px;
  display: flex;
  align-self: center;
  text-align: center;
}
.p-app__point-contents p {
  margin-top: 0;
}
.p-app__point-contents img {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-app__point-contents h3 {
    min-height: auto;
  }
  .p-app__point-contents img {
    width: 120px;
  }
}
.p-app__detail {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-app__detail {
    flex-direction: column;
    gap: 20px;
  }
}
.p-app__detail:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-app__detail:nth-child(2n) {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-app__detail:not(:first-child) {
    margin-top: 40px;
  }
}
.p-app__detail-img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-app__detail-img {
    width: 400px;
  }
  .p-app__detail-img img {
    width: 100vw;
    margin: calc(50% - 50vw);
  }
}
.p-app__detail-txt {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-app__detail-txt {
    width: 100%;
  }
}
.p-app__detail-txt .title {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .p-app__detail-txt .title {
    font-size: 2.4rem;
  }
}
.p-app__detail-txt .text {
  margin-top: 20px;
}
.p-app__store {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-app__store {
    flex-direction: column;
    width: 220px;
    margin-inline: auto;
  }
  .p-app__store img {
    width: 100%;
  }
}

/*
---
name: cause
category:
  - object
  - object/project/cause
---

原因別アナフィラキシー

*/
.p-cause-unexpected__content {
  /* モーダルコンテンツ */
}
.p-cause-unexpected__content .custom-modal {
  display: none;
  position: absolute; /* PC用 */
  z-index: 5;
  background-image: url(../images/under/cause/unexpected/bg_modal.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #fff;
  border-radius: 30px;
  padding-top: 45px;
  padding-left: 45px;
  padding-right: 45px;
  padding-bottom: 30px;
  max-width: 620px;
  box-shadow: 5px 5px 9px 8px rgba(112, 112, 125, 0.2);
}
@media (max-width: 1400px) {
  .p-cause-unexpected__content .custom-modal {
    z-index: 9999;
    max-width: min(92vw, 720px);
  }
}
@media screen and (max-width: 768px) {
  .p-cause-unexpected__content .custom-modal {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 90%;
    padding-right: 25px;
    padding-left: 25px;
    max-width: min(92vw, 480px);
  }
}
.p-cause-unexpected__content .modal-content {
  position: relative;
  /* 閉じるボタン */
}
@media screen and (max-width: 768px) {
  .p-cause-unexpected__content .modal-content .modal-text {
    height: 500px;
    overflow: scroll;
    overflow-x: hidden;
    position: relative;
  }
}
.p-cause-unexpected__content .modal-content .modal-close {
  position: absolute;
  top: -65px;
  right: -60px;
  background-image: url(../images/common/bg_round_lightblue.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 54px;
  height: 54px;
  border: none;
  font-size: 3.8rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-cause-unexpected__content .modal-content .modal-close {
    top: -60px;
    right: -30px;
    width: 38px;
    height: 38px;
    font-size: 2.4rem;
  }
}
.p-cause-unexpected__content .modal-content .modal-title-box {
  display: flex;
  justify-content: space-between;
}
.p-cause-unexpected__content .modal-content .modal-title {
  color: #19a6a8;
  font-size: 2.8rem;
  font-weight: 500;
}
.p-cause-unexpected__content .modal-content .modal-cause {
  color: #414141;
  font-size: 2.2rem;
  font-weight: 500;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-cause-unexpected__content .modal-content .modal-cause {
    font-size: 2rem;
  }
}
.p-cause-unexpected__content .modal-content .modal-img {
  margin-left: 20px;
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 768px) {
  .p-cause-unexpected__content .modal-content .modal-img {
    margin-left: 0;
  }
}
.p-cause-unexpected__content .modal-content .modal-img img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-cause-unexpected__content .modal-content .modal-img img {
    width: 100%;
  }
}
.p-cause-unexpected__content .modal-content .modal-desc {
  margin-top: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-cause-unexpected__content .modal-content .modal-desc {
    margin-top: 20px;
  }
}
.p-cause-unexpected__content .modal-content .modal-ref {
  margin-top: 50px;
  font-size: 1.2rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-cause-unexpected__content .modal-content .modal-ref {
    margin-top: 25px;
  }
}
.p-cause-unexpected__click {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-cause-unexpected__click {
    padding: 0 20px;
  }
}
.p-cause-unexpected__click-img {
  position: absolute;
  right: 0;
  left: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-cause-unexpected__click-img {
    width: 30%;
    top: -30px;
    left: 230px;
  }
}

.webp .p-cause-unexpected__content .custom-modal {
  background-image: url("../images/under/cause/unexpected/bg_modal.webp");
}

/*
---
name: check
category:
  - object
  - object/project/check
---

食物アレルギーでよく見られる症状

*/
.p-check-textarea {
  width: 100%;
  border-color: #dadada;
  outline: none;
  resize: none;
  overflow: auto;
  margin: 0;
}

.p-check-select input[type=radio] {
  display: none; /* ラジオボタンを非表示にする */
}
.p-check-select .radio-label {
  margin-bottom: 0;
  font-weight: 400;
  color: #19a6a8;
  width: 140px;
  height: 50px;
  line-height: 50px;
  font-size: 1.8rem;
  display: inline-block;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 576px) {
  .p-check-select .radio-label {
    font-size: 1.5rem;
    height: 20px;
    line-height: 20px;
  }
}
.p-check-select .radio-label:hover {
  cursor: pointer;
}
.p-check-select .radio-input:checked + label {
  background: #19a6a8;
  color: #fff;
  width: 140px;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
}
@media screen and (max-width: 576px) {
  .p-check-select .radio-input:checked + label {
    height: auto;
    width: auto !important;
    padding: 10px 25px;
    line-height: 1.5;
  }
}
.p-check-select .radio-label.type2 {
  width: 200px;
  line-height: 50px;
}
@media screen and (max-width: 576px) {
  .p-check-select .radio-label.type2 {
    height: auto;
    width: auto !important;
    padding: 10px 25px;
    line-height: 1.5;
  }
}
.p-check-select .radio-input:checked + label.type2 {
  width: 200px;
}
.p-check-select input[type=checkbox] {
  display: none;
}
.p-check-select .check-label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 15px;
  position: relative;
  width: auto;
  margin-bottom: 1rem;
}
.p-check-select .check-label:before {
  background: #fff;
  border: 1px solid #dadada;
  content: "";
  display: block;
  height: 30px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 30px;
}
.p-check-select input[type=checkbox]:checked + .check-label::before {
  background-image: url(../images/common/icon_checked.png);
  background-position: -5px -11px;
}

/*
---
name: figure
category:
  - object
  - object/project/figure
---

図表関連

*/
.p-figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-figure.table {
  display: block;
  width: 86%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-figure.table {
    width: 100%;
  }
}
.p-figure img {
  display: block;
  margin: 0 auto; /* 画像を中央に寄せる */
}
.p-figure__caption {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  width: auto; /* 初期設定は自動 */
  text-align: left;
  line-height: 1.5;
  font-size: 1.6rem;
  text-align: right;
}
.p-figure__caption.left {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-figure__caption {
    font-size: 1.2rem;
  }
}
.p-figure__caption--sub {
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  .p-figure__caption--sub {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .sp-img-scroll-wrapper {
    position: relative;
  }
}

.sp-img-scroll-wrapper .arrow {
  display: none;
}

@media screen and (max-width: 576px) {
  .sp-img-scroll-wrapper .arrow.scroll-hint-show {
    display: block;
    position: absolute;
    top: 60%;
    right: 50px;
    z-index: 10;
    width: 220px;
    margin-top: -80px;
  }
}

@media screen and (max-width: 768px) {
  .sp-img-scroll {
    overflow-x: auto;
    padding-bottom: 20px;
  }
  .sp-img-scroll img {
    width: auto;
    max-width: none;
  }
}

@media screen and (max-width: 768px) {
  .p-figure:has(.sp-img-scroll-wrapper) {
    display: block;
  }
}

/*
---
name: footer
category:
  - object
  - object/project/footer
---

フッターの中身。

*/
.p-footer-content01 {
  background-image: url(../images/common/bg_footer.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 75px;
  padding-bottom: 70px;
}
@media screen and (max-width: 992px) {
  .p-footer-content01 {
    background-image: url(../images/common/bg_footer-sp.png);
    background-position: top center;
    padding-top: 45px;
    padding-bottom: 20px;
  }
}
.p-footer__nav--list {
  list-style: none;
  margin: 0;
  padding-left: 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 992px) {
  .p-footer__nav--list {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 992px) {
  .p-footer__nav {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: max-content;
  }
  .p-footer__nav--list.nav-01 {
    grid-column: 1/4;
    grid-row: 1/2;
  }
  .p-footer__nav--list.nav-02 {
    grid-column: 1/4;
    grid-row: 2/6;
    margin-top: 25px;
    border-top: 2px solid #19a6a8;
    padding-top: 25px;
  }
  .p-footer__nav--list.nav-03 {
    grid-column: 6/10;
    grid-row: 1/3;
  }
  .p-footer__nav--list.nav-04 {
    grid-column: 6/10;
    grid-row: 3/6;
    border-top: 2px solid #19a6a8;
    padding-top: 25px;
  }
  .p-footer__nav--list.nav-05 {
    grid-column: 11/13;
    grid-row: 1/4;
  }
  .p-footer__nav--list.nav-06 {
    grid-column: 11/13;
    grid-row: 4/6;
  }
  .p-footer__nav--item:not(:first-child) {
    padding-top: 25px;
  }
  .p-footer__nav--sns:not(:first-child) {
    padding-top: 10px;
  }
}
@media screen and (max-width: 992px) {
  .p-footer__nav--list:not(:first-child) {
    margin-top: 20px;
    border-top: 2px solid #19a6a8;
    padding-top: 20px;
  }
  .p-footer__nav--item:not(:first-child) {
    padding-top: 20px;
  }
}
.p-footer-content02 {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .p-footer-content02 {
    padding-top: 25px;
    padding-bottom: 20px;
  }
}
.p-footer-content02 .p-footer__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: max-content;
}
.p-footer-content02 .p-footer__logoArea {
  grid-column: 1/3;
  grid-row: 1/2;
}
@media screen and (max-width: 992px) {
  .p-footer-content02 .p-footer__logoArea {
    grid-column: 1/13;
    grid-row: 2/3;
    margin-top: 40px;
  }
}
.p-footer-content02 .p-footer__address {
  grid-column: 4/13;
  grid-row: 1/2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 992px) {
  .p-footer-content02 .p-footer__address .text-l {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 992px) {
  .p-footer-content02 .p-footer__address {
    font-size: 1.5rem;
    grid-column: 1/13;
    grid-row: 3/4;
    margin-top: 20px;
  }
}
.p-footer-content02 .p-footer__about {
  grid-column: 1/13;
  grid-row: 2/3;
  text-align: center;
  margin-top: 60px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
@media screen and (max-width: 992px) {
  .p-footer-content02 .p-footer__about {
    margin-top: 0;
    text-align: left;
    font-size: 1.5rem;
    grid-column: 1/13;
    grid-row: 1/2;
  }
}
.p-footer-content03 {
  background-color: #f1efeb;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.p-footer-content03 .p-footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 992px) {
  .p-footer-content03 .p-footer__copyright {
    font-size: 1.4rem;
  }
}

/*
---
name: header
category:
  - object
  - object/project/header
---

ヘッダーの中身。

*/
.p-header-inner {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 992px) {
  .p-header-inner {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-header__logoArea {
  display: inline-block;
}
@media screen and (max-width: 992px) {
  .p-header__logoArea img {
    max-width: 141px;
  }
}
.p-header__nav {
  list-style: none;
}
.p-header__nav.pc-nav {
  display: grid;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  column-gap: 90px;
  justify-content: center;
  padding: 15px;
  margin: 0;
  background: linear-gradient(to right, #a7e3d1, #98dce8);
}
@media screen and (max-width: 992px) {
  .p-header__nav.pc-nav {
    display: none;
  }
}
.p-header__nav.pc-nav .p-header__nav--item {
  font-size: 1.8rem;
  font-weight: 500;
}
.p-header__nav.sp-nav {
  width: 100%;
  height: 100svh;
  background-image: url(../images/common/bg_nav_sp.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 80px;
  padding-top: 25px;
  padding-bottom: 120px;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 992px) {
  .p-header__nav.sp-nav {
    display: none;
  }
}
.p-header__nav.sp-nav .p-header__nav--list {
  list-style: none;
}
.p-header__nav.sp-nav .p-header__nav--list:not(:first-child) {
  border-top: 1px solid #19a6a8;
  margin-top: 20px;
}
.p-header__nav.sp-nav .p-header__nav--item {
  padding-top: 20px;
}

.top-page .p-header-under {
  display: none;
}

.under-page .p-header-inner {
  position: relative;
}
.under-page .p-header-under {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.under-page .p-header-under img {
  width: 100%;
}
@media screen and (max-width: 992px) {
  .under-page .p-header-under {
    display: none;
  }
}

/*
---
name: app
category:
  - object
  - object/project/app
---


学ぶ、食物アレルギー

*/
.p-manabu__digitalcomic-link {
  width: 1120px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-manabu__digitalcomic-link {
    width: 100%;
  }
}
.p-manabu__digitalcomic-link li {
  padding-left: 1em;
  text-indent: -1em;
}

/*
---
name: news
category:
  - object
  - object/project/news
---

お知らせ

*/
@media screen and (max-width: 768px) {
  .p-news-head {
    display: none;
  }
}
.p-news-head .p-news__content:not(:first-child) {
  display: none;
}
.p-news-head__content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  background-color: #f1efeb;
  border-radius: 50px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 90px;
  padding-left: 90px;
}
.p-news-head__tit {
  grid-column: 1/3;
  font-size: 2.4rem;
}
.p-news-head__list {
  grid-column: 3/10;
}
.p-news-head__list .p-news__content {
  display: flex;
  gap: 30px;
}
.p-news-head__list .p-news__article {
  color: #19a6a8;
}
.p-news-head__list .p-news__article a {
  color: #19a6a8;
}
.p-news-head__list .p-news__tag {
  display: none;
}
.p-news-head__list .p-news__detail {
  display: none;
}
.p-news-head__btn {
  grid-column: 11/13;
}
.p-news-head__btn a {
  padding-right: 5px;
}

.p-news-ex .p-news__data {
  font-size: 1.6rem;
}
.p-news-ex__content {
  margin-top: 40px;
}
.p-news-ex__btn {
  text-align: center;
  margin-top: 30px;
}
.p-news-ex__btn a {
  display: inline-block;
}

.p-news-list {
  margin-top: 105px;
}
@media screen and (max-width: 768px) {
  .p-news-list {
    margin-top: 60px;
  }
}

.p-news-ex .p-news__content,
.p-news-list .p-news__content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: max-content;
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 20px;
}
.p-news-ex .p-news__content:not(:first-child),
.p-news-list .p-news__content:not(:first-child) {
  margin-top: 20px;
}
.p-news-ex .p-news__data,
.p-news-list .p-news__data {
  grid-column: 1/3;
  grid-row: 1/2;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-news-ex .p-news__data,
  .p-news-list .p-news__data {
    font-size: 1.6rem;
  }
}
.p-news-ex .p-news__tag,
.p-news-list .p-news__tag {
  grid-column: 12/13;
  grid-row: 1/2;
  background-color: #55a8d5;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-news-ex .p-news__tag,
  .p-news-list .p-news__tag {
    grid-column: 11/13;
  }
}
.p-news-ex .p-news__article,
.p-news-list .p-news__article {
  grid-column: 1/13;
  grid-row: 2/3;
  color: #19a6a8;
  margin-top: 5px;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-news-ex .p-news__article,
  .p-news-list .p-news__article {
    font-size: 2rem;
  }
}
.p-news-ex .p-news__article a,
.p-news-list .p-news__article a {
  color: #19a6a8;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-news-ex .p-news__article a,
  .p-news-list .p-news__article a {
    font-size: 2rem;
  }
}
.p-news-ex .p-news__detail,
.p-news-list .p-news__detail {
  grid-column: 1/13;
  grid-row: 3/4;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .p-news-ex .p-news__detail,
  .p-news-list .p-news__detail {
    font-size: 1.6rem;
  }
}

.p-news-ex .p-news__detail.ex-detail {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 450px;
}

/*
---
name: patient
category:
  - object
  - object/project/patient
---

患者様へ共通部分

*/
.p-patient {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-patient {
    margin-top: 80px;
    padding-bottom: 40px;
    background-color: #fff;
  }
}
.p-patient__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: max-content;
}
.p-patient__link {
  grid-column: 1/13;
  grid-row: 1/2;
}
@media screen and (max-width: 768px) {
  .p-patient__link {
    grid-row: 2/3;
    padding-top: 30px;
  }
}
.p-patient__bnr {
  grid-column: 1/13;
  grid-row: 2/3;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-patient__bnr--inner {
    display: flex;
    gap: 50px;
  }
  .p-patient__bnr--inner .item01,
  .p-patient__bnr--inner .item02 {
    -webkit-flex: 1;
    flex: 1;
  }
}
@media screen and (max-width: 768px) {
  .p-patient__bnr {
    grid-row: 1/2;
    padding-top: 65px;
    padding-bottom: 60px;
    background-color: #f6f4f2;
  }
  .p-patient__bnr .item01 img, .p-patient__bnr .item02 img {
    width: 100%;
  }
  .p-patient__bnr .item02 {
    margin-top: 40px;
  }
}
.p-patient__txt {
  grid-column: 1/13;
  grid-row: 3/4;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-patient__txt {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

/*
---
name: qa
category:
  - object
  - object/project/qa
---


質問Q&A

*/
.p-qa__item dt {
  padding: 30px 40px 30px 120px;
  cursor: pointer;
  position: relative;
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .p-qa__item dt {
    font-size: 1.6rem;
    padding: 30px 40px 30px 100px;
  }
}
.p-qa__item dt:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f067";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.p-qa__item dt.active:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f068";
}
.p-qa__item .qa_01 {
  background: url(../images/under/qa/img_01.png) no-repeat center left 10px;
}
.p-qa__item .qa_02 {
  background: url(../images/under/qa/img_02.png) no-repeat center left 10px;
}
.p-qa__item .qa_03 {
  background: url(../images/under/qa/img_03.png) no-repeat center left 10px;
}
.p-qa__item .qa_04 {
  background: url(../images/under/qa/img_04.png) no-repeat center left 10px;
}
.p-qa__item .qa_05 {
  background: url(../images/under/qa/img_05.png) no-repeat center left 10px;
}
.p-qa__item .qa_06 {
  background: url(../images/under/qa/img_06.png) no-repeat center left 10px;
}
.p-qa__item .qa_07 {
  background: url(../images/under/qa/img_07.png) no-repeat center left 10px;
}
.p-qa__item .qa_08 {
  background: url(../images/under/qa/img_08.png) no-repeat center left 10px;
}
.p-qa__item .qa_09 {
  background: url(../images/under/qa/img_09.png) no-repeat center left 10px;
}
.p-qa__item .qa_10 {
  background: url(../images/under/qa/img_10.png) no-repeat center left 10px;
}
.p-qa__item .qa_11 {
  background: url(../images/under/qa/img_11.png) no-repeat center left 10px;
}
.p-qa__item .qa_12 {
  background: url(../images/under/qa/img_12.png) no-repeat center left 10px;
}
.p-qa__item .qa_13 {
  background: url(../images/under/qa/img_13.png) no-repeat center left 10px;
}
.p-qa__item .qa_14 {
  background: url(../images/under/qa/img_14.png) no-repeat center left 10px;
}
.p-qa__item .qa_15 {
  background: url(../images/under/qa/img_15.png) no-repeat center left 10px;
}
.p-qa__item .qa_16 {
  background: url(../images/under/qa/img_16.png) no-repeat center left 10px;
}
.p-qa__item .qa_17 {
  background: url(../images/under/qa/img_17.png) no-repeat center left 10px;
}
.p-qa__item .qa_18 {
  background: url(../images/under/qa/img_18.png) no-repeat center left 10px;
}
.p-qa__item .qa_19 {
  background: url(../images/under/qa/img_19.png) no-repeat center left 10px;
}
.p-qa__item .qa_20 {
  background: url(../images/under/qa/img_20.png) no-repeat center left 10px;
}
.p-qa__item .qa_21 {
  background: url(../images/under/qa/img_21.png) no-repeat center left 10px;
}
.p-qa__item .qa_22 {
  background: url(../images/under/qa/img_22.png) no-repeat center left 10px;
}
.p-qa__item dd {
  display: none;
  margin: 0;
  padding: 10px 20px;
  padding-bottom: 20px;
  border-top: none;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-qa__item dd {
    font-size: 1.6rem;
  }
}
.p-qa__item dd:before {
  display: block;
  content: "A";
  font-size: 150%;
}
.p-qa__item dd li .p-qa__item dt:after {
  line-height: 2;
}

.p-qa-link {
  margin-top: 60px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .p-qa-link {
    flex-wrap: wrap;
  }
}
.p-qa-link__btn {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  border: 2px solid #19a6a8;
  color: #414141;
  border-radius: 25px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-qa-link__btn {
    flex-basis: 19%;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .p-qa-link__btn {
    flex-basis: 17%;
  }
}
@media screen and (max-width: 576px) {
  .p-qa-link__btn {
    flex-basis: 49.5%;
    margin-bottom: 0.3em;
    padding: 15px 0;
  }
  .p-qa-link__btn:first-child {
    flex-basis: 100%;
  }
}
.p-qa-link__btn:hover {
  background-color: #19a6a8;
  color: #fff;
  opacity: 1;
  text-decoration: none;
}
.p-qa-link__btn.active {
  background: #19a6a8;
  color: #fff;
}

.p-qa-content {
  margin-top: 40px;
}
.p-qa-content .p-box03 {
  border: 2px solid #19a6a8;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 20px;
}
.p-qa-content .p-box03 dd {
  background: #d5f2e8;
  border-radius: 0 0 10px 10px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .p-qa-content .p-qa__info {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .p-qa-content .p-qa__info a {
    word-wrap: break-word;
  }
}
.p-qa-content .p-qa__info .p-qa__cf {
  font-size: 1.6rem;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-qa-content .p-qa__info .p-qa__cf {
    font-size: 1.4rem;
  }
}
.p-qa-content .p-qa__info .p-qa__cf .c-list-blackdot li {
  margin-top: 5px;
}
.p-qa-content .p-btn.btn-02 {
  border: 2px solid #19a6a8;
  border-radius: 25px;
  text-align: center;
  background: #fff;
  display: inline-block;
  color: #414141;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: bold;
  padding: 15px 10px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-qa-content .p-btn.btn-02 {
    width: 100%;
  }
}

/*
---
name: search
category:
  - object
  - object/project/search
---

医療施設検索

*/
/* 医療施設検索ページ
-------------------------*/
@media screen and (min-width: 768px) {
  .p-map .p-prefList {
    position: relative;
  }
}
@media screen and (max-width: 576px) {
  .p-map .p-prefList__item {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-map .p-prefList__item {
    margin-bottom: 0;
    position: absolute;
    width: 250px;
  }
  .p-map .p-prefList__item.pref01 {
    top: 90px;
    right: 0;
  }
  .p-map .p-prefList__item.pref02 {
    top: 280px;
    right: 0;
  }
  .p-map .p-prefList__item.pref03 {
    top: 0;
    left: 290px;
  }
  .p-map .p-prefList__item.pref04 {
    top: 230px;
    left: 290px;
  }
  .p-map .p-prefList__item.pref05 {
    top: 230px;
    left: 0;
  }
  .p-map .p-prefList__item.pref06 {
    top: 470px;
    right: 175px;
  }
  .p-map .p-prefList__item.pref07 {
    top: 380px;
    left: 0;
  }
}
.p-map .p-prefList__item dt {
  padding: 5px 10px;
  font-weight: 400;
  font-family: "Noto Sans JP", serif;
}
.p-map .p-prefList__item dt.hokkaido-tohoku + dd a:hover {
  background-color: rgba(130, 195, 215, 0.6);
}
.p-map .p-prefList__item dt.kanto + dd a:hover {
  background-color: rgba(94, 195, 115, 0.6);
}
.p-map .p-prefList__item dt.hokuriku-chubu + dd a:hover {
  background-color: rgba(188, 218, 88, 0.6);
}
.p-map .p-prefList__item dt.kinki + dd a:hover {
  background-color: rgba(236, 220, 11, 0.6);
}
.p-map .p-prefList__item dt.chugoku + dd a:hover {
  background-color: rgba(241, 159, 83, 0.6);
}
.p-map .p-prefList__item dt.shikoku + dd a:hover {
  background-color: rgba(241, 155, 154, 0.6);
}
.p-map .p-prefList__item dt.kyushu + dd a:hover {
  background-color: rgba(242, 98, 74, 0.6);
}
.p-map .p-prefList__item .pref {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  box-sizing: border-box;
}
.p-map .p-prefList__item .pref li {
  max-width: 33.33333%;
  flex: 0 0 33.33333%;
  text-align: center;
  box-sizing: border-box;
  border-collapse: separate;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.p-map .p-prefList__item .pref li a {
  padding: 5px;
  display: block;
  background: #fff;
  color: #0f91e7;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .map-container {
    margin-left: 150px;
  }
}

.p-search-txt {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .p-search-txt {
    margin-top: 50px;
  }
}
.p-search-map {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-search-map {
    margin-top: 35px;
  }
}

/* 医療施設検索ページ　キーワード検索
-------------------------*/
.p-keywordSearch {
  width: 100%;
  background: #f5f5f2;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 12px;
}
@media screen and (max-width: 768px) {
  .p-keywordSearch {
    padding-bottom: 20px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
.p-keywordSearch__txt {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-keywordSearch__txt {
    text-align: center;
  }
}

.search_container {
  margin-top: 15px;
  box-sizing: border-box;
  position: relative;
  background: #fff;
  border: 2px solid #19a6a8;
  border-radius: 50px;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .search_container {
    padding: 5px;
    padding-left: 8px;
  }
}
.search_container input[type=text] {
  border: none;
  line-height: 1.8;
  float: left;
  width: calc(100% - 3em);
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 576px) {
  .search_container input[type=text] {
    float: left;
    font-size: 1.6rem;
  }
}
.search_container input[type=text]:focus {
  outline: 0;
}
.search_container button[type=submit],
.search_container button[type=button] {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 2px 0 0 0;
  appearance: none;
  color: #19a6a8;
  float: right;
}
@media screen and (max-width: 576px) {
  .search_container button[type=submit],
  .search_container button[type=button] {
    width: 2em;
  }
}
.search_container button[type=submit] i,
.search_container button[type=button] i {
  font-size: 24px;
}

.p-area-result {
  padding: 0.8em;
  margin-bottom: 20px;
  color: #19a6a8;
  font-size: 120%;
  font-weight: bold;
  border: solid 2px #19a6a8;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  overflow: hidden;
}

.p-search-title {
  font-size: 18px;
  border-bottom: 1px solid #19a6a8;
  font-weight: bold;
  line-height: 1.5;
  padding-left: 24px;
  text-indent: -24px;
}
.p-search-title:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f058";
  color: #19a6a8;
  margin-right: 5px;
}

.p-area-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}
.p-area-list li {
  margin-bottom: 10px;
}
@media screen and (max-width: 576px) {
  .p-area-list li {
    max-width: 50%;
    flex: 0 0 50%;
  }
}
@media screen and (min-width: 768px) {
  .p-area-list li {
    max-width: 20%;
    flex: 0 0 20%;
  }
}
.p-area-list li a {
  color: #0f91e7;
}

/* クリニック情報
-------------------------*/
.p-pref-select {
  background: #f1efeb;
  padding: 10px 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-pref-select__inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
  }
}
.p-pref-select__inner p {
  margin-bottom: 0;
}
.p-pref-select__inner select {
  height: 30px;
  margin-right: 5px;
  padding: 4px;
  vertical-align: middle;
  display: inline-block;
  border: solid 1px #d1d1d1;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}
.p-pref-select__inner button {
  cursor: pointer;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f1f1f1));
  background-image: -webkit-linear-gradient(to bottom, #ffffff, #f1f1f1);
  background-image: -moz-linear-gradient(to bottom, #ffffff, #f1f1f1);
  background-image: linear-gradient(to bottom, #ffffff, #f1f1f1);
  background-color: #fbfbfb;
  border-radius: 5px;
  margin-bottom: 0;
  border: 2px solid #f1f1f1;
  height: 30px;
  padding: 4px 20px !important;
  vertical-align: middle;
  display: inline-block;
  font-size: 13px !important;
  white-space: nowrap;
}

select[name=page_max] {
  height: 30px;
  margin-right: 5px;
  padding: 4px;
  vertical-align: middle;
  display: inline-block;
  border: solid 1px #d1d1d1;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

/* クリニック情報印刷
-------------------------*/
.p-printMap {
  margin: 60px auto;
}
@media screen and (min-width: 768px) {
  .p-printMap {
    width: 640px;
  }
}
@media screen and (max-width: 576px) {
  .p-printMap {
    width: 100%;
    padding: 0 15px;
  }
}

.google-maps {
  position: relative;
  height: 0;
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-printMap .google-maps {
    padding-bottom: 360px;
  }
}
@media screen and (min-width: 768px) {
  .google-maps#gmaps {
    padding-bottom: 310px;
  }
}
@media screen and (max-width: 576px) {
  .google-maps#gmaps {
    padding-bottom: 60%;
  }
}
.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.p-info-clinic {
  background: #f1efeb;
  padding: 40px 20px 20px 20px;
  border-radius: 12px;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .p-info-clinic__btn {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-info-clinic__btn {
    position: absolute;
    top: 0;
    right: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-info-clinic__btn p {
    background: #19a6a8;
    border-radius: 0 0 5px 5px;
  }
}
@media screen and (min-width: 768px) {
  .p-info-clinic__btn p a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .p-info-clinic__btn p a:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .p-info-clinic__btn p a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f02f";
    margin-right: 0.5em;
  }
}
.p-info-clinic__table {
  width: 100%;
  font-size: 16px;
  word-break: break-all;
  margin-top: 20px;
}
.p-info-clinic__table a {
  color: #0f91e7;
}
.p-info-clinic__table th,
.p-info-clinic__table td {
  text-align: left;
  background: transparent;
  border: none;
  padding: 10px;
}
@media screen and (max-width: 576px) {
  .p-info-clinic__table th,
  .p-info-clinic__table td {
    width: 100%;
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-info-clinic__table th,
  .p-info-clinic__table td {
    border-bottom: 1px solid #cccccc;
  }
}
.p-info-clinic__table th {
  font-weight: bold;
  color: #19a6a8;
}
@media screen and (max-width: 576px) {
  .p-info-clinic__table th {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-info-clinic__table th {
    width: 180px;
  }
}
@media screen and (max-width: 576px) {
  .p-info-clinic__table td {
    padding-top: 0;
    border-bottom: 1px solid #cccccc;
  }
}
.p-info-clinic__table tr:last-child th,
.p-info-clinic__table tr:last-child td {
  border: 0;
  padding-bottom: 0;
}
.p-info-clinic__comment {
  margin-bottom: 0;
  line-height: 1.6;
  padding-left: 1.5em;
  position: relative;
  margin-top: 10px;
}
.p-info-clinic__comment:before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
  color: #19a6a8;
}

.pagination {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
}
.pagination ol {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding-left: 0;
  list-style: none;
}
.pagination ol li {
  margin-right: 10px;
  font-size: 16px;
}
.pagination ol li:last-child {
  margin-right: 0;
}
.pagination ol li span {
  background: #fff;
  color: #19a6a8;
  padding: 5px 10px;
}
.pagination ol li a {
  background: #19a6a8;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}

/*
---
name: qa
category:
  - object
  - object/project/specialist
---


専門医に学ぶ食物アレルギー

*/
.p-specialist-groupingTab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: #f5f5f2;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 105px;
  padding-right: 105px;
  border-radius: 10px;
  margin-top: 15px;
  grid-gap: 1rem;
}
.p-specialist-groupingTab-content:last-child {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-specialist-groupingTab-content:last-child {
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 992px) {
  .p-specialist-groupingTab-content {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .p-specialist-groupingTab-content {
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.p-specialist-groupingTab-content.all-item {
  margin-top: 0;
}
.p-specialist-groupingTab-title {
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .p-specialist-groupingTab-title {
    grid-row: 1/4;
    grid-column: 1/2;
  }
}
.p-specialist-groupingTab-title p {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .p-specialist-groupingTab-title p {
    max-width: 140px;
    text-align: center;
  }
}
.p-specialist-groupingTab-item a {
  text-align: center;
  background-color: #fff;
  border: 2px solid #19a6a8;
  color: #414141;
  border-radius: 25px;
  display: inline-block;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-specialist-groupingTab-item a {
    width: 100%;
    max-width: 190px;
  }
}
@media screen and (min-width: 992px) {
  .p-specialist-groupingTab-item a:hover {
    background-color: #19a6a8;
    color: #fff;
    opacity: 1;
    text-decoration: none;
  }
}
.p-specialist-groupingTab-item a.active {
  background-color: #19a6a8;
  color: #fff;
  opacity: 1;
  text-decoration: none;
}

.p-specialist-item {
  margin-top: 50px;
  overflow: hidden;
}
.p-specialist-item .p-specialist-q {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 10px 5px;
  align-items: center;
}
.p-specialist-item .p-specialist-q__img {
  grid-column: span 1/span 1;
  text-align: center;
  background-color: #f5f5f2;
  border-radius: 12px;
}
@media screen and (max-width: 992px) {
  .p-specialist-item .p-specialist-q__img {
    grid-column: span 5/span 5;
    margin-left: 25px;
  }
}
.p-specialist-item .p-specialist-q__about {
  grid-column: span 2/span 2;
  grid-column-start: 2;
  font-size: 2rem;
  font-weight: 500;
  margin-left: 20px;
}
@media screen and (max-width: 992px) {
  .p-specialist-item .p-specialist-q__about {
    grid-column: span 7/span 7;
    grid-column-start: 6;
    margin-right: 25px;
  }
}
.p-specialist-item .p-specialist-q__about .age {
  font-size: 1.6rem;
}
.p-specialist-item .p-specialist-q__text {
  grid-column: span 9/span 9;
  grid-column-start: 4;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
}
@media screen and (max-width: 992px) {
  .p-specialist-item .p-specialist-q__text {
    grid-column: span 12/span 12;
    grid-row-start: 2;
    justify-content: center;
  }
}
@media screen and (min-width: 992px) {
  .p-specialist-item .p-specialist-q__text--detail {
    padding-left: 60px;
    position: relative;
  }
  .p-specialist-item .p-specialist-q__text--detail:before {
    content: "Q";
    font-family: "Kiwi Maru", serif;
    font-size: 2.4rem;
    position: absolute;
    top: -3px;
    left: 0;
    color: #fff;
    background-color: [object object];
    background-image: linear-gradient(90deg, rgb(91, 177, 211), rgb(118, 201, 209));
    border-radius: 11px;
    width: 45px;
    height: 45px;
    text-align: center;
  }
}
.p-specialist-item .p-specialist-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 1.5rem;
}
@media screen and (min-width: 992px) {
  .p-specialist-item .p-specialist-tag {
    justify-content: flex-start;
  }
}
.p-specialist-item .p-specialist-tag__item {
  text-align: center;
  background-color: #fff;
  border: 2px solid #19a6a8;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 30px;
  margin-bottom: 0;
}
.p-specialist-item .p-specialist-a {
  margin-top: 30px;
  display: none;
}
.p-specialist-item .p-specialist-a-inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 10px 5px;
  align-items: flex-start;
}
.p-specialist-item .p-specialist-a__text {
  grid-column: span 6/span 6;
  grid-column-start: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 20px;
  background-color: #d5f2e8;
  border-radius: 30px;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  .p-specialist-item .p-specialist-a__text {
    padding: 30px;
  }
}
@media screen and (max-width: 992px) {
  .p-specialist-item .p-specialist-a__text {
    grid-column: span 12/span 12;
  }
}
.p-specialist-item .p-specialist-a__text:before, .p-specialist-item .p-specialist-a__text:after {
  position: absolute;
  bottom: -20px;
  right: 40px;
  width: 40px;
  height: 20px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}
.p-specialist-item .p-specialist-a__text:before {
  background-color: #d5f2e8;
}
.p-specialist-item .p-specialist-a__text:after {
  bottom: -17px;
  background-color: #d5f2e8;
}
@media screen and (min-width: 992px) {
  .p-specialist-item .p-specialist-a__text:before, .p-specialist-item .p-specialist-a__text:after {
    position: absolute;
    top: 95px;
    right: -20px;
    width: 20px;
    height: 40px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    content: "";
  }
  .p-specialist-item .p-specialist-a__text:before {
    background-color: #d5f2e8;
  }
  .p-specialist-item .p-specialist-a__text:after {
    right: -20px;
    background-color: #d5f2e8;
  }
}
.p-specialist-item .p-specialist-a__text--detail {
  position: relative;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-specialist-item .p-specialist-a__text--detail {
    padding-top: 50px;
  }
}
.p-specialist-item .p-specialist-a__text--detail a {
  word-break: break-all;
}
.p-specialist-item .p-specialist-a__text--detail:before {
  content: "A";
  font-size: 2.4rem;
  font-family: "Kiwi Maru", serif;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background-color: #ffffff;
  color: #55a8d5;
  border-radius: 11px;
  width: 45px;
  height: 45px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .p-specialist-item .p-specialist-a__text--detail {
    padding-left: 35px;
    padding-top: 0;
  }
  .p-specialist-item .p-specialist-a__text--detail:before {
    content: "A";
    top: 0px;
    left: 5px;
  }
}
.p-specialist-item .p-specialist-a__about {
  grid-column: span 2/span 2;
  grid-column-start: 10;
  text-align: right;
  margin-right: 20px;
  font-size: 1.5rem;
}
@media screen and (min-width: 992px) {
  .p-specialist-item .p-specialist-a__about {
    margin-top: 80px;
  }
}
@media screen and (max-width: 992px) {
  .p-specialist-item .p-specialist-a__about {
    grid-column: span 7/span 7;
    grid-row-start: 2;
    margin-top: 20px;
  }
}
.p-specialist-item .p-specialist-a__img {
  grid-column: span 1/span 1;
  grid-column-start: 12;
  background-color: #f5f5f2;
  border-radius: 12px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .p-specialist-item .p-specialist-a__img {
    margin-top: 80px;
  }
}
@media screen and (max-width: 992px) {
  .p-specialist-item .p-specialist-a__img {
    grid-column: span 5/span 5;
    grid-column-start: 8;
    grid-row-start: 2;
    margin-top: 20px;
  }
}
.p-specialist-item .p-specialist-morebtn {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 10px 5px;
  align-items: flex-start;
}
.p-specialist-item .p-specialist-morebtn__detail {
  margin-top: 20px;
  grid-column: span 9/span 9;
  grid-column-start: 4;
}
@media screen and (max-width: 992px) {
  .p-specialist-item .p-specialist-morebtn__detail {
    grid-column: span 12/span 12;
  }
}

.p-specialistContents {
  position: relative;
}
.p-specialistContents .bg-popup {
  z-index: 1050;
}

.p-specialist-popup {
  display: none;
  transform: translateX(-50%);
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  max-width: 950px;
  width: 90%;
  max-height: 713px;
}
.p-specialist-popup-inner {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffea39;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 576px) {
  .p-specialist-popup-inner {
    min-width: 90%;
  }
}
.p-specialist-popup-inner.noscroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-specialist-popup-inner.noscroll::-webkit-scrollbar {
  display: none;
}
.p-specialist-popup .closeBtn {
  width: 50px;
  height: 50px;
  font-size: 45px;
  color: #000;
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: -20px;
  right: -15px;
  background: #ffea39;
  z-index: 99999;
}
.p-specialist-popup.textbox {
  height: 90%;
}
@media screen and (max-width: 576px) {
  .p-specialist-popup.textbox .p-specialist-popup-inner {
    min-width: 90%;
    height: 90%;
    padding: 50px 15px 30px 15px;
    overflow-y: scroll;
  }
}
@media screen and (min-width: 768px) {
  .p-specialist-popup.textbox .p-specialist-popup-inner {
    width: 950px;
    padding: 70px 30px 50px 30px;
    max-height: 100%;
    overflow-y: scroll;
  }
}
.p-specialist-popup.textbox .p-specialist-popup-inner::-webkit-scrollbar {
  background: #fff;
  width: 10px;
  height: 10px;
  border-radius: 20px;
}
.p-specialist-popup.textbox .p-specialist-popup-inner::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 20px;
}

.p-specialist-numberList {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}
.p-specialist-numberList li {
  text-indent: -2.5em;
  padding-left: 2.5em;
  margin-bottom: 20px;
}
.p-specialist-numberList li:before {
  counter-increment: item;
  content: counter(item) "";
  padding-right: 0.5em;
  font-weight: bold;
  font-size: 2.5rem;
  font-weight: bold;
  background-color: #f2c200;
  color: #fff;
  padding: 0px 10px;
  margin-right: 5px;
}
.p-specialist-numberList .list-title {
  color: #f2c200;
  font-weight: bold;
  font-size: 2rem;
}
.p-specialist-numberList .strong-text {
  font-size: 1.7rem;
  font-weight: bold;
  border-bottom: 2px solid #f2c200;
  padding-bottom: 5px;
  display: flex;
  justify-content: center;
  text-indent: initial;
}

/*
---
name: top
category:
  - object
  - object/project/top
---

トップページ

*/
.p-top-main {
  background-image: url(../images/top/bg_maintitle.png), url(../images/top/bg_top.png);
  background-repeat: no-repeat, no-repeat;
  background-position: top 90px center, top;
  background-size: auto, 100% 100%;
  padding-top: 45px;
  padding-bottom: 70px;
  position: relative;
  margin-top: 160px;
}
@media screen and (max-width: 992px) {
  .p-top-main {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-main {
    background-image: url(../images/top/bg_maintitle-sp.png), url(../images/top/bg_top-sp.png);
    background-position: top, top;
    background-size: cover, 100% 100%;
    padding-bottom: 170px;
    margin-top: 80px;
  }
}
.p-top-main__title {
  text-align: center;
}
.p-top-main__img {
  margin-top: 45px;
  text-align: center;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-top-main__img {
    margin-top: 50px;
  }
}
.p-top-main__txt {
  margin-top: 35px;
  font-size: 1.8rem;
  text-align: center;
}
.p-top-main__txt .txt-l {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .p-top-main__txt {
    margin-top: 40px;
  }
}
.p-top-main__scroll {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-top-main__scroll {
    bottom: 110px;
  }
}
.p-top-content01 {
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .p-top-content01 {
    margin-top: 75px;
  }
}
.p-top-content01__main {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .p-top-content01__main {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-content01__main .item02 {
    display: none;
  }
}
.p-top-content01__sub {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-top-content01__sub {
    margin-top: 45px;
  }
}
.p-top-content01__sub--item .sub-inner {
  position: relative;
}
.p-top-content01__sub--item .sub-txt {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .p-top-content01__sub--item .sub-txt {
    bottom: 30px;
  }
}
@media screen and (max-width: 992px) {
  .p-top-content01__sub .c-title-base {
    font-size: 1.6rem;
  }
}
.p-top-content02 {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .p-top-content02 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.p-top-content02__inner {
  background-image: url(../images/top/bg_content02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  padding-top: 70px;
  padding-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .p-top-content02__inner {
    background-image: url(../images/top/bg_content02-sp.png);
  }
}
@media screen and (max-width: 768px) {
  .p-top-content02__link {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-content02__link .c-title-color {
    font-size: 1.8rem;
  }
}

/*
---
name: under
category:
  - object
  - object/project/under
---

下層共通パーツ

*/
.p-under-head {
  background-image: url(../images/under/bg_under.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  padding-top: 125px;
  padding-bottom: 135px;
  position: relative;
  margin-top: 160px;
}
@media screen and (max-width: 992px) {
  .p-under-head {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .p-under-head {
    background-image: url(../images/under/bg_under-sp.png);
    background-position: top;
    background-size: 100% 100%;
    padding-top: 75px;
    padding-bottom: 200px;
    margin-top: 80px;
  }
}
.p-under-head__logo {
  text-align: center;
}
.p-under-head__logo picture {
  display: inline-block;
}
.p-under-head__title {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-under-head__title {
    margin-top: 120px;
    padding: 0 20px;
  }
}
.p-under-head__title.app {
  max-width: 700px;
}
@media screen and (max-width: 768px) {
  .p-under-head__title.no-logo {
    margin-top: 45px;
  }
}
.p-under-head__txt {
  width: 620px;
  margin: 25px auto 0;
  margin-top: 25px;
  text-align: left;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .p-under-head__txt {
    width: 100%;
    margin-top: 75px;
  }
}
.p-under-head__txt.center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-under-head__txt.center {
    text-align: left;
  }
}
.p-under-head__scroll {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-under-head__scroll {
    bottom: 110px;
  }
}
.p-under-head__parentCategory {
  margin-bottom: 50px;
  font-weight: 500;
}
.p-under-txt {
  margin-top: 40px;
}
.p-under-txt.center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-under-txt.center {
    text-align: left;
  }
}
.p-under-txt-body {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .p-under-txt-body {
    font-weight: 300;
  }
}
.p-under-sankou {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-under-sankou {
    font-size: 1.2rem;
  }
}

/*
Utility
----------------------------- */
/*
---
name: index
category:
  - object
  - object/utility/index
---
*/
/*
---
name: align
category:
  - object
  - object/utility/align
---

text-alignの設定

*/
.u-align-left {
  text-align: left !important;
}

.u-align-center {
  text-align: center !important;
}

.u-align-right {
  text-align: right !important;
}

.u-align-justify {
  text-align: justify !important;
}

@media screen and (min-width: 768px) {
  .u-md-align-left {
    text-align: left !important;
  }
  .u-md-align-center {
    text-align: center !important;
  }
  .u-md-align-right {
    text-align: right !important;
  }
  .u-md-align-justify {
    text-align: justify !important;
  }
}
@media screen and (max-width: 768px) {
  .u-sm-align-left {
    text-align: left !important;
  }
  .u-sm-align-center {
    text-align: center !important;
  }
  .u-sm-align-right {
    text-align: right !important;
  }
  .u-sm-align-justify {
    text-align: justify !important;
  }
}
/*
---
name: color
category:
  - object
  - object/utility/color
---

color設定

*/
.u-color-lightgreen {
  color: #19a6a8;
}
.u-color-white {
  color: #ffffff;
}
.u-color-orange {
  color: #FFC000;
}
.u-color-green {
  color: #00B050;
}
.u-color-blue {
  color: #4472C4;
}

.hokkaido-tohoku {
  background-color: #82c3d7;
}

.kanto {
  background-color: #5ec373;
}

.hokuriku-chubu {
  background-color: #bcda58;
}

.kinki {
  background-color: #ecdc0b;
}

.chugoku {
  background-color: #f19f53;
}

.shikoku {
  background-color: #f19b9a;
}

.kyushu {
  background-color: #f2624a;
}

/*
---
name: responsive-helper
category:
  - object
  - object/utility/responsive-helper
---

responsiveの設定

*/
@media screen and (min-width: 992px) {
  .u-lg-no {
    display: none;
  }
}

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

@media screen and (min-width: 576px) {
  .u-sm-no {
    display: none;
  }
}

.u-lg-block {
  display: block;
}
@media screen and (max-width: 992px) {
  .u-lg-block {
    display: none;
  }
}

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

.u-sm-block {
  display: block;
}
@media screen and (max-width: 576px) {
  .u-sm-block {
    display: none;
  }
}

.u-lg-inline-block {
  display: inline-block;
}
@media screen and (max-width: 992px) {
  .u-lg-inline-block {
    display: none;
  }
}

.u-md-inline-block {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .u-md-inline-block {
    display: none;
  }
}

.u-sm-inline-block {
  display: inline-block;
}
@media screen and (max-width: 576px) {
  .u-sm-inline-block {
    display: none;
  }
}

.u-lg-flex {
  display: flex;
}
@media screen and (max-width: 992px) {
  .u-lg-flex {
    display: block;
  }
}

.u-md-flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .u-md-flex {
    display: block;
  }
}

.u-sm-flex {
  display: flex;
}
@media screen and (max-width: 576px) {
  .u-sm-flex {
    display: block;
  }
}

/*
---
name: spacing
category:
  - object
  - object/utility/spacing
---

spacingの設定

*/
.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

.u-ml-0 {
  margin-left: 0 !important;
}

.u-mt-10 {
  margin-top: 1rem !important;
}

.u-mt-20 {
  margin-top: 2rem !important;
}

.u-mt-30 {
  margin-top: 3rem !important;
}

.u-mt-40 {
  margin-top: 4rem !important;
}

.u-mt-50 {
  margin-top: 5rem !important;
}

.u-mt-60 {
  margin-top: 6rem !important;
}

.u-mt-70 {
  margin-top: 7rem !important;
}

.u-mt-80 {
  margin-top: 8rem !important;
}

.u-mt-90 {
  margin-top: 9rem !important;
}

.u-mt-100 {
  margin-top: 10rem !important;
}

.u-mb-10 {
  margin-bottom: 1rem !important;
}

.u-mb-20 {
  margin-bottom: 2rem !important;
}

.u-mb-30 {
  margin-bottom: 3rem !important;
}

.u-mb-40 {
  margin-bottom: 4rem !important;
}

.u-mb-50 {
  margin-bottom: 5rem !important;
}

.u-mb-60 {
  margin-bottom: 6rem !important;
}

.u-mb-70 {
  margin-bottom: 7rem !important;
}

.u-mb-80 {
  margin-bottom: 8rem !important;
}

.u-mb-90 {
  margin-bottom: 9rem !important;
}

.u-mb-100 {
  margin-bottom: 10rem !important;
}

.u-mr-10 {
  margin-right: 1rem !important;
}

.u-mr-20 {
  margin-right: 2rem !important;
}

.u-mr-30 {
  margin-right: 3rem !important;
}

.u-mr-40 {
  margin-right: 4rem !important;
}

.u-mr-50 {
  margin-right: 5rem !important;
}

.u-mr-60 {
  margin-right: 6rem !important;
}

.u-mr-70 {
  margin-right: 7rem !important;
}

.u-mr-80 {
  margin-right: 8rem !important;
}

.u-mr-90 {
  margin-right: 9rem !important;
}

.u-mr-100 {
  margin-right: 10rem !important;
}

.u-ml-10 {
  margin-left: 1rem !important;
}

.u-ml-20 {
  margin-left: 2rem !important;
}

.u-ml-30 {
  margin-left: 3rem !important;
}

.u-ml-40 {
  margin-left: 4rem !important;
}

.u-ml-50 {
  margin-left: 5rem !important;
}

.u-ml-60 {
  margin-left: 6rem !important;
}

.u-ml-70 {
  margin-left: 7rem !important;
}

.u-ml-80 {
  margin-left: 8rem !important;
}

.u-ml-90 {
  margin-left: 9rem !important;
}

.u-ml-100 {
  margin-left: 10rem !important;
}

@media screen and (min-width: 768px) {
  .u-md-mt-0 {
    margin-top: 0 !important;
  }
  .u-md-mb-0 {
    margin-bottom: 0 !important;
  }
  .u-md-mr-0 {
    margin-right: 0 !important;
  }
  .u-md-ml-0 {
    margin-left: 0 !important;
  }
  .u-md-mt-10 {
    margin-top: 1rem !important;
  }
  .u-md-mt-20 {
    margin-top: 2rem !important;
  }
  .u-md-mt-30 {
    margin-top: 3rem !important;
  }
  .u-md-mt-40 {
    margin-top: 4rem !important;
  }
  .u-md-mt-50 {
    margin-top: 5rem !important;
  }
  .u-md-mt-60 {
    margin-top: 6rem !important;
  }
  .u-md-mt-70 {
    margin-top: 7rem !important;
  }
  .u-md-mt-80 {
    margin-top: 8rem !important;
  }
  .u-md-mt-90 {
    margin-top: 9rem !important;
  }
  .u-md-mt-100 {
    margin-top: 10rem !important;
  }
  .u-md-mb-10 {
    margin-bottom: 1rem !important;
  }
  .u-md-mb-20 {
    margin-bottom: 2rem !important;
  }
  .u-md-mb-30 {
    margin-bottom: 3rem !important;
  }
  .u-md-mb-40 {
    margin-bottom: 4rem !important;
  }
  .u-md-mb-50 {
    margin-bottom: 5rem !important;
  }
  .u-md-mb-60 {
    margin-bottom: 6rem !important;
  }
  .u-md-mb-70 {
    margin-bottom: 7rem !important;
  }
  .u-md-mb-80 {
    margin-bottom: 8rem !important;
  }
  .u-md-mb-90 {
    margin-bottom: 9rem !important;
  }
  .u-md-mb-100 {
    margin-bottom: 10rem !important;
  }
  .u-md-mr-10 {
    margin-right: 1rem !important;
  }
  .u-md-mr-20 {
    margin-right: 2rem !important;
  }
  .u-md-mr-30 {
    margin-right: 3rem !important;
  }
  .u-md-mr-40 {
    margin-right: 4rem !important;
  }
  .u-md-mr-50 {
    margin-right: 5rem !important;
  }
  .u-md-mr-60 {
    margin-right: 6rem !important;
  }
  .u-md-mr-70 {
    margin-right: 7rem !important;
  }
  .u-md-mr-80 {
    margin-right: 8rem !important;
  }
  .u-md-mr-90 {
    margin-right: 9rem !important;
  }
  .u-md-mr-100 {
    margin-right: 10rem !important;
  }
  .u-md-ml-10 {
    margin-left: 1rem !important;
  }
  .u-md-ml-20 {
    margin-left: 2rem !important;
  }
  .u-md-ml-30 {
    margin-left: 3rem !important;
  }
  .u-md-ml-40 {
    margin-left: 4rem !important;
  }
  .u-md-ml-50 {
    margin-left: 5rem !important;
  }
  .u-md-ml-60 {
    margin-left: 6rem !important;
  }
  .u-md-ml-70 {
    margin-left: 7rem !important;
  }
  .u-md-ml-80 {
    margin-left: 8rem !important;
  }
  .u-md-ml-90 {
    margin-left: 9rem !important;
  }
  .u-md-ml-100 {
    margin-left: 10rem !important;
  }
}
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pr-0 {
  padding-right: 0 !important;
}

.u-pl-0 {
  padding-left: 0 !important;
}

.u-pt-10 {
  padding-top: 1rem !important;
}

.u-pt-20 {
  padding-top: 2rem !important;
}

.u-pt-30 {
  padding-top: 3rem !important;
}

.u-pt-40 {
  padding-top: 4rem !important;
}

.u-pt-50 {
  padding-top: 5rem !important;
}

.u-pt-60 {
  padding-top: 6rem !important;
}

.u-pt-70 {
  padding-top: 7rem !important;
}

.u-pt-80 {
  padding-top: 8rem !important;
}

.u-pt-90 {
  padding-top: 9rem !important;
}

.u-pt-100 {
  padding-top: 10rem !important;
}

.u-pb-10 {
  padding-bottom: 1rem !important;
}

.u-pb-20 {
  padding-bottom: 2rem !important;
}

.u-pb-30 {
  padding-bottom: 3rem !important;
}

.u-pb-40 {
  padding-bottom: 4rem !important;
}

.u-pb-50 {
  padding-bottom: 5rem !important;
}

.u-pb-60 {
  padding-bottom: 6rem !important;
}

.u-pb-70 {
  padding-bottom: 7rem !important;
}

.u-pb-80 {
  padding-bottom: 8rem !important;
}

.u-pb-90 {
  padding-bottom: 9rem !important;
}

.u-pb-100 {
  padding-bottom: 10rem !important;
}

.u-pr-10 {
  padding-right: 1rem !important;
}

.u-pr-20 {
  padding-right: 2rem !important;
}

.u-pr-30 {
  padding-right: 3rem !important;
}

.u-pr-40 {
  padding-right: 4rem !important;
}

.u-pr-50 {
  padding-right: 5rem !important;
}

.u-pr-60 {
  padding-right: 6rem !important;
}

.u-pr-70 {
  padding-right: 7rem !important;
}

.u-pr-80 {
  padding-right: 8rem !important;
}

.u-pr-90 {
  padding-right: 9rem !important;
}

.u-pr-100 {
  padding-right: 10rem !important;
}

.u-pl-10 {
  padding-left: 1rem !important;
}

.u-pl-20 {
  padding-left: 2rem !important;
}

.u-pl-30 {
  padding-left: 3rem !important;
}

.u-pl-40 {
  padding-left: 4rem !important;
}

.u-pl-50 {
  padding-left: 5rem !important;
}

.u-pl-60 {
  padding-left: 6rem !important;
}

.u-pl-70 {
  padding-left: 7rem !important;
}

.u-pl-80 {
  padding-left: 8rem !important;
}

.u-pl-90 {
  padding-left: 9rem !important;
}

.u-pl-100 {
  padding-left: 10rem !important;
}

/*
---
name: text
category:
  - object
  - object/utility/text
---

テキスト設定

*/
.u-text-10 {
  font-size: 1rem !important;
}

.u-text-11 {
  font-size: 1.1rem !important;
}

.u-text-12 {
  font-size: 1.2rem !important;
}

.u-text-13 {
  font-size: 1.3rem !important;
}

.u-text-14 {
  font-size: 1.4rem !important;
}

.u-text-15 {
  font-size: 1.5rem !important;
}

.u-text-16 {
  font-size: 1.6rem !important;
}

.u-text-17 {
  font-size: 1.7rem !important;
}

.u-text-18 {
  font-size: 1.8rem !important;
}

.u-text-19 {
  font-size: 1.9rem !important;
}

.u-text-20 {
  font-size: 2rem !important;
}

.u-text-21 {
  font-size: 2.1rem !important;
}

.u-text-22 {
  font-size: 2.2rem !important;
}

.u-text-23 {
  font-size: 2.3rem !important;
}

.u-text-24 {
  font-size: 2.4rem !important;
}

.u-text-25 {
  font-size: 2.5rem !important;
}

.u-text-26 {
  font-size: 2.6rem !important;
}

.u-text-27 {
  font-size: 2.7rem !important;
}

.u-text-28 {
  font-size: 2.8rem !important;
}

.u-text-29 {
  font-size: 2.9rem !important;
}

.u-text-30 {
  font-size: 3rem !important;
}

.u-text-normal {
  font-weight: normal;
}

.u-text-bold {
  font-weight: bold;
}

.u-text-lh125 {
  line-height: 1.25;
}

.u-text-lh2 {
  line-height: 2 !important;
}

.u-text-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.kiwi-maru-light {
  font-family: "Kiwi Maru", serif;
  font-weight: 300;
  font-style: normal;
}

.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

.kiwi-maru-medium {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
}

.zen-maru-gothic-light {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 300;
  font-style: normal;
}

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}

.zen-maru-gothic-black {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 900;
  font-style: normal;
}

.noto-sans-jp-bold {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.noto-sans-jp-regular {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.noto-sans-jp-medium {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.u-text-bold-lightgreen {
  font-weight: 500;
  color: #19a6a8;
}

.u-text-marker-lightgreen {
  font-weight: 500;
  color: #414141;
  border-bottom: 2px solid #19a6a8;
}

.u-text-sup {
  font-size: 0.7em; /* 例: 親要素の70% */
  vertical-align: 0.5em; /* 例: 上に0.3em */
}

/*
---
name: useful
category:
  - object
  - object/utility/useful
---

便利設定

*/
.mx-auto {
  margin: 0 auto;
  display: block;
}

.d-flex {
  display: flex;
}

@media screen and (min-width: 768px) {
  .d-md-flex {
    display: flex;
  }
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.d-block {
  display: block;
}

.w-100 {
  width: 100% !important;
}

@media screen and (max-width: 768px) {
  .w-sp-100 {
    width: 100% !important;
  }
}

.w-70 {
  width: 70%;
}

.w-50 {
  width: 50%;
}

.w-25 {
  width: 25%;
}

.h-100 {
  height: 100%;
}

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

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

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

@media screen and (max-width: 768px) {
  .pc-block {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */