@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

@media only screen and (min-width: 768px) {
  /* tablet-size */
}
@media only screen and (min-width: 1000px) {
  /* middle-size */
}
@media only screen and (min-width: 1090px) {
  /* pc-size */
}
@media only screen and (min-width: 1280px) {
  /* max-size */
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", 游ゴシック, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #000;
  letter-spacing: 0.05em;
  line-height: 1.45;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

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

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

*:focus {
  outline: none;
}

p,
ul li,
ol li {
  text-align: justify;
  text-justify: inter-ideograph;
}

img,
picture {
  display: block;
}

b {
  font-weight: bold;
}

p + p {
  margin-top: 1.5em;
}

img {
  width: 100%;
}

main {
  margin-top: 6rem;
}
@media only screen and (min-width: 768px) {
  main {
    margin-top: 8rem;
  }
}

/*
 * wordpress header
*/
.l-header__inner.l-container {
  padding-inline: 20px;
}

.w-header__inner {
  display: grid;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

/*
* wrapper
*/
.l-base {
  width: min(100% - 40px, 800px);
  margin-left: auto;
  margin-right: auto;
}

.l-wide {
  width: min(100% - 40px, 1050px);
  margin-left: auto;
  margin-right: auto;
}

.l-max {
  width: min(100%, 1280px);
  margin-left: auto;
  margin-right: auto;
}

/*
* header
*/
.l-hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.16);
  z-index: 10;
}

/*
* nav
*/
.l-gnav {
  position: fixed;
  top: 6rem;
  bottom: 0;
  width: 100%;
  z-index: 9;
  right: -100%;
  transition: right 0.5s;
}
@media only screen and (min-width: 768px) {
  .l-gnav {
    width: 34rem;
    right: -34rem;
  }
}
.l-gnav.active {
  right: 0;
}
.l-gnav__bg {
  position: fixed;
  top: 6rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 8;
  display: none;
}

/*
 * ボタン
 */
.c-btn {
  background: #437DD5;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 6rem;
  box-shadow: 0 4px 20px #437DD5;
  transition: filter 0.3s;
}
.c-btn:hover {
  filter: brightness(1.1);
}
.c-btn.-line {
  background: #06C755;
  box-shadow: 0 4px 20px #06C755;
}

/*
 * 見出し
 */
.c-heading {
  text-align: center;
  font-weight: bold;
  margin-bottom: 4rem;
}
.c-heading em {
  font-size: 6.4rem;
  color: #437DD5;
  display: block;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 768px) {
  .c-heading em {
    font-size: 9.6rem;
  }
}
.c-heading small {
  font-size: 2rem;
  display: block;
}
@media only screen and (min-width: 768px) {
  .c-heading small {
    font-size: 2.4rem;
  }
}
.c-heading.-small em {
  font-size: 4.7rem;
}
@media only screen and (min-width: 768px) {
  .c-heading.-small em {
    font-size: 9.6rem;
  }
}

/*
 * article
 */
.c-intro {
  padding: 5rem 0 6rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .c-intro {
    padding-bottom: 13rem;
  }
}
.c-intro__h1 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .c-intro__h1 {
    font-size: 3.2rem;
  }
}

.c-art {
  padding: 3rem 0 6rem;
}
@media only screen and (min-width: 768px) {
  .c-art {
    padding-bottom: 8rem;
  }
}

/*
 * common
 */
#custom_html-2 {
  align-self: center;
}

#main_visual {
  display: none;
}

#post_slider {
  display: none;
}

#content {
  display: contents;
}

#sidebar {
  display: none;
}

#footer {
  display: none;
}

/*
 * header
 */
.p-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6rem;
}
@media only screen and (min-width: 768px) {
  .p-hdr {
    height: 8rem;
  }
}
.p-hdr__h1 {
  text-align: center;
}
.p-hdr__h1__txt {
  font-size: 1rem;
  color: #6F6F6F;
  letter-spacing: 0;
}
@media only screen and (min-width: 768px) {
  .p-hdr__h1__txt {
    font-size: 1rem;
  }
}
.p-hdr__h1__name {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #437DD5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
  font-size: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .p-hdr__h1__name {
    font-size: 3.6rem;
  }
}
.p-hdr__h1__name span {
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .p-hdr__h1__name span {
    font-size: 1.6rem;
  }
}
.p-hdr__address {
  display: none;
}
@media only screen and (min-width: 1000px) {
  .p-hdr__address {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}
.p-hdr__btn-tel img {
  width: 1.5rem;
}
.p-hdr__right {
  display: flex;
  align-items: center;
  gap: 0 1.5rem;
}

.p-menu-btn {
  width: 3.1rem;
  height: 2rem;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  position: relative;
  transition: opacity 0.3s;
}
.p-menu-btn:hover {
  opacity: 0.7;
}
.p-menu-btn span {
  display: block;
  background: #437DD5;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 0;
}
.p-menu-btn span:first-of-type {
  top: 0;
  transition: top 0.3s, transform 0.3s;
}
.p-menu-btn span:nth-of-type(2) {
  top: 50%;
  margin-top: -1px;
  transition: opacity 0.3s;
}
.p-menu-btn span:last-of-type {
  bottom: 0;
  transition: bottom 0.3s, transform 0.3s;
}
.p-menu-btn.active span:first-of-type {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}
.p-menu-btn.active span:nth-of-type(2) {
  opacity: 0;
}
.p-menu-btn.active span:last-of-type {
  transform: rotate(-45deg) translateY(50%);
  bottom: 50%;
}

.p-tv {
  background: linear-gradient(to right, #C7D8F2, #fff);
}
.p-tv__inner {
  position: relative;
}
.p-tv__days {
  display: none;
}
@media only screen and (min-width: 768px) {
  .p-tv__days {
    position: absolute;
    right: 4rem;
    bottom: 2.4rem;
    display: block;
  }
}

.p-gnav {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-gnav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem 0;
}
.p-gnav li {
  text-align: center;
}
.p-gnav li a {
  transition: opacity 0.3s;
  display: inline-block;
  font-size: 1.4rem;
  color: #000;
}
.p-gnav li a:hover {
  opacity: 0.7;
}
.p-gnav li small {
  display: block;
  color: #437DD5;
  font-size: 1rem;
}

/*
 * article
 */
.p-intro {
  overflow: hidden;
}

.p-intro-01__circle01, .p-intro-01__circle02 {
  position: absolute;
  border-radius: 50%;
  background: rgba(67, 125, 213, 0.3);
}
.p-intro-01__circle01 {
  right: -18vw;
  top: -21vw;
  width: 48vw;
  height: 48vw;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .p-intro-01__circle01 {
    right: -4vw;
    top: -8vw;
    width: 23vw;
    height: 23vw;
  }
}
.p-intro-01__circle02 {
  left: -17vw;
  bottom: -18vw;
  width: 46vw;
  height: 46vw;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .p-intro-01__circle02 {
    left: -2vw;
    bottom: -3vw;
    width: 14vw;
    height: 14vw;
  }
}
.p-intro-01__list {
  display: flex;
  justify-content: center;
  gap: 2rem 2rem;
  flex-wrap: wrap;
  margin: 4rem auto;
}
@media only screen and (min-width: 768px) {
  .p-intro-01__list {
    flex-wrap: nowrap;
    gap: 0 4rem;
    width: min(100% - 40px, 860px);
  }
}
.p-intro-01__list h3 {
  font-size: 2rem;
  color: #437DD5;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-intro-01__list h3 {
    font-size: 2rem;
  }
}
.p-intro-01__list li {
  border-radius: 1.5rem;
  padding: 1rem;
  width: 15.2rem;
  background: #fff;
  box-shadow: 0 0 20px rgba(67, 125, 213, 0.3);
}
@media only screen and (min-width: 768px) {
  .p-intro-01__list li {
    padding: 3rem;
    width: calc((100% - 8rem) / 3);
  }
}

.p-intro-02 {
  background: #D9E5F7;
}
.p-intro-02::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 3rem solid #D9E5F7;
  border-left: 100vw solid transparent;
}
@media only screen and (min-width: 768px) {
  .p-intro-02::before {
    top: -9.5rem;
    border-bottom-width: 9.5rem;
  }
}
.p-intro-02__img {
  width: 25.5rem;
  margin: 4rem auto 3rem;
  border-radius: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-intro-02__img {
    margin: 0;
  }
}
@media only screen and (min-width: 768px) {
  .p-intro-02__2col {
    display: flex;
    flex-direction: row-reverse;
    gap: 0 3rem;
  }
}
.p-intro-02__circle01 {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  right: -14vw;
  bottom: -12vw;
  width: 39vw;
  height: 39vw;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .p-intro-02__circle01 {
    right: -5vw;
    bottom: -5vw;
    width: 16vw;
    height: 16vw;
  }
}

.p-intro-03 {
  background: linear-gradient(to bottom, #437DD5 50%, #fff 50%);
  position: relative;
  z-index: 2;
  padding: 3rem 0;
}
@media only screen and (min-width: 768px) {
  .p-intro-03 {
    padding-bottom: 8rem;
  }
}
.p-intro-03::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 3rem solid #437DD5;
  border-right: 100vw solid transparent;
}
@media only screen and (min-width: 768px) {
  .p-intro-03::before {
    top: -9.5rem;
    border-bottom-width: 9.5rem;
  }
}
.p-intro-03__box {
  padding: 4rem 2rem;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 768px) {
  .p-intro-03__box {
    border-radius: 3rem;
    padding: 4rem;
  }
}
.p-intro-03__h2 {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-intro-03__h2 {
    margin-bottom: 4rem;
  }
}
.p-intro-03__img {
  width: 25.5rem;
  margin: 2rem auto 3rem;
}
@media only screen and (min-width: 768px) {
  .p-intro-03__img {
    margin: 0;
  }
}
@media only screen and (min-width: 768px) {
  .p-intro-03__2col {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0 3rem;
  }
}

.p-voice {
  background: linear-gradient(to right, #F2FAFF, #fff, #F2FAFF);
}
.p-voice__list {
  display: flex;
  flex-direction: column;
  gap: 3.6rem 3.6rem;
}
@media only screen and (min-width: 768px) {
  .p-voice__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 768px) {
  .p-voice__list li {
    width: calc((100% - 7.2rem) / 3);
  }
}
.p-voice__list li img {
  width: min(100%, 33.5rem);
  margin: 0 auto 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-voice__list li img {
    width: 100%;
  }
}
.p-voice__list li p + p {
  margin-top: 1.5rem;
}
.p-voice__name {
  font-size: 1.6rem;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .p-voice__name {
    font-size: 1.6rem;
  }
}

.p-rsn {
  overflow: hidden;
}
.p-rsn__list {
  width: min(100% - 40px, 980px);
  margin: 0 auto;
}
.p-rsn__list li + li {
  margin-top: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-rsn__list li {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-column-gap: 5rem;
    grid-row-gap: 3.5rem;
    align-items: start;
  }
}
.p-rsn__list li:nth-of-type(odd) {
  grid-template-columns: auto 41%;
  grid-template-areas: "title img" "text img";
}
@media only screen and (min-width: 768px) {
  .p-rsn__list li:nth-of-type(odd) img {
    box-shadow: 5rem -3rem 0 #D9E5F7;
  }
}
.p-rsn__list li:nth-of-type(even) {
  grid-template-columns: 41% auto;
  grid-template-areas: "img title" "img text";
}
@media only screen and (min-width: 768px) {
  .p-rsn__list li:nth-of-type(even) img {
    box-shadow: -5rem -3rem 0 #D9E5F7;
  }
}
.p-rsn__h2-box {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  margin-bottom: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .p-rsn__h2-box {
    grid-area: title;
    gap: 0 1.7rem;
    margin-bottom: 0;
  }
}
.p-rsn__num {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: bold;
  width: 6.8rem;
  flex-shrink: 0;
}
.p-rsn__num small {
  font-size: 1.6rem;
  color: #437DD5;
  text-align: center;
  display: block;
}
@media only screen and (min-width: 768px) {
  .p-rsn__num small {
    font-size: 2rem;
  }
}
.p-rsn__num span {
  font-size: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  background: #437DD5;
  color: #fff;
  border-radius: 0.5rem;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .p-rsn__num span {
    font-size: 4.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-rsn__num span {
    width: 6.8rem;
    height: 6.8rem;
  }
}
.p-rsn__h2 {
  font-size: 1.8rem;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .p-rsn__h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-rsn__h2 {
    margin-top: 3.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-rsn__txt {
    grid-area: text;
  }
}
.p-rsn__img {
  width: min(100%, 33.5rem);
  margin: 0 auto 2.5rem;
  box-shadow: 1rem -1rem 0 #D9E5F7;
}
@media only screen and (min-width: 768px) {
  .p-rsn__img {
    width: 100%;
    margin: 0;
    grid-area: img;
    margin-top: 3rem;
  }
}

.p-equip {
  background: #F4F4F4;
}
@media only screen and (min-width: 768px) {
  .p-equip ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem 4rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-equip ul li {
    width: calc((100% - 4rem) / 2);
  }
}
.p-equip ul li img {
  width: min(100%, 33.5rem);
  margin: 2rem auto;
}
@media only screen and (min-width: 768px) {
  .p-equip ul li img {
    width: 100%;
  }
}
.p-equip ul li + li {
  margin-top: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-equip ul li + li {
    margin-top: 0;
  }
}
.p-equip__h2 {
  font-size: 1.8rem;
  background: #fff;
  text-align: center;
  font-weight: bold;
  height: 6.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .p-equip__h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-equip__h2 {
    height: 7.5rem;
  }
}
.p-equip__h2::before, .p-equip__h2::after {
  content: "";
  position: absolute;
  top: 0;
  width: 3.7rem;
  height: 100%;
  border-top: 1px solid #437DD5;
  border-bottom: 1px solid #437DD5;
}
.p-equip__h2::before {
  border-left: 1px solid #437DD5;
  left: 0;
}
.p-equip__h2::after {
  border-right: 1px solid #437DD5;
  right: 0;
}

.p-voice02 {
  position: relative;
}
.p-voice02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/voice/voice_bg.png");
  background-size: 10rem auto;
  opacity: 0.2;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .p-voice02 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem 3rem;
  }
}
.p-voice02 ul h3 {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-voice02 ul h3 {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-voice02 ul h3 {
    margin-bottom: 1.8rem;
    flex-shrink: 0;
  }
}
.p-voice02 ul li {
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-voice02 ul li {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-voice02 ul li {
    width: calc((100% - 3rem) / 2);
  }
}
@media only screen and (min-width: 1000px) {
  .p-voice02 ul li {
    width: calc((100% - 6rem) / 3);
  }
}
.p-voice02 ul li + li {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-voice02 ul li + li {
    margin-top: 0;
  }
}
.p-voice02 ul li:nth-of-type(even) {
  color: #fff;
}
.p-voice02 ul li:nth-of-type(even) .p-voice02__box {
  background: #437DD5;
}
.p-voice02 ul small {
  display: block;
  font-weight: bold;
  text-align: right;
}
.p-voice02__box {
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 0 20px rgba(67, 125, 213, 0.3);
}
@media only screen and (min-width: 768px) {
  .p-voice02__box {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) {
  .p-voice02__box p {
    height: 100%;
  }
}
.p-voice02__note {
  font-size: 1rem;
  color: #8A8A8A;
  text-align: right;
  margin-top: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .p-voice02__note {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 768px) {
  .p-msg {
    padding-bottom: 5rem;
  }
}
.p-msg__h1 {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-msg__h1 {
    margin-bottom: 4rem;
  }
}
.p-msg__h2-box {
  background: linear-gradient(to top, #fff 13rem, #F2FAFF 13rem);
  padding: 3rem 0 0;
}
@media only screen and (min-width: 768px) {
  .p-msg__h2-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 3rem;
    padding: 0 calc((100% - 800px) / 2);
    background: linear-gradient(to bottom, #fff 3rem, #F2FAFF 3rem, #F2FAFF calc(100% - 3rem), #fff calc(100% - 3rem));
  }
}
@media only screen and (min-width: 1000px) {
  .p-msg__h2-box {
    gap: 0 4rem;
    justify-content: space-between;
  }
}
.p-msg__h2-box img {
  width: 28rem;
  margin: 1.5rem auto 0;
}
@media only screen and (min-width: 768px) {
  .p-msg__h2-box img {
    margin: 0;
  }
}
.p-msg__h2-box p {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-msg__h2-box p {
    text-align: left;
  }
}
.p-msg__h2-box p + p {
  margin-top: 1.3em;
}
.p-msg__h2 {
  font-size: 1.8rem;
  color: #437DD5;
  font-weight: bold;
  margin-top: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .p-msg__h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-msg__h2 {
    margin-top: 1.7rem;
  }
}
.p-msg__h2 em {
  font-size: 2.4rem;
  display: inline;
  background: linear-gradient(to bottom, transparent 80%, #FFFA81 80%);
}
@media only screen and (min-width: 768px) {
  .p-msg__h2 em {
    font-size: 2.6rem;
  }
}
.p-msg__marker {
  font-size: 1.8rem;
  display: inline;
  background: #437DD5;
  color: #fff;
  font-weight: bold;
  padding: 0.5rem 2rem;
}
@media only screen and (min-width: 768px) {
  .p-msg__marker {
    font-size: 2rem;
  }
}
.p-msg__txt-box {
  background: linear-gradient(to bottom, #fff, #F2FAFF);
  padding: 4rem 20px 5rem;
  margin: 0 auto;
  width: min(100%, 880px);
}
@media only screen and (min-width: 768px) {
  .p-msg__txt-box {
    padding: 4rem 4rem 8rem;
  }
}

.p-flow {
  background: #F4F4F4;
}
.p-flow__list li {
  position: relative;
  background: #fff;
  padding: 3rem 2rem;
}
@media only screen and (min-width: 768px) {
  .p-flow__list li {
    display: flex;
    align-items: flex-start;
    gap: 0 3rem;
    padding: 3rem;
    margin-left: 10rem;
  }
}
.p-flow__list li h3 {
  font-size: 2.4rem;
  color: #437DD5;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-flow__list li h3 {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-flow__list li h3 {
    text-align: left;
  }
}
.p-flow__list li + li {
  margin-top: 8rem;
}
.p-flow__list li + li::before {
  content: "";
  position: absolute;
  top: -6rem;
  left: 0;
  height: 4rem;
  width: 100%;
  background: url("../images/common/icon_arrow_blue.svg") no-repeat center/contain;
}
@media only screen and (min-width: 768px) {
  .p-flow__list li + li::before {
    left: -5rem;
  }
}
.p-flow__list img {
  width: min(100%, 29.5rem);
  margin: 2rem auto 0;
}
@media only screen and (min-width: 768px) {
  .p-flow__list img {
    width: 37%;
    margin: 0;
  }
}
.p-flow__num {
  font-size: 2.4rem;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  position: absolute;
  left: 2rem;
  top: -3rem;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #437DD5;
  border-radius: 50%;
}
@media only screen and (min-width: 768px) {
  .p-flow__num {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-flow__num {
    top: 50%;
    left: -10rem;
    transform: translateY(-50%);
    width: 8rem;
    height: 8rem;
  }
}

.p-faq__item {
  border: 1px solid #D9D9D9;
  border-radius: 1rem;
  overflow: hidden;
}
.p-faq__item + .p-faq__item {
  margin-top: 3rem;
}
.p-faq__item dt {
  font-size: 1.6rem;
  background: #F2FAFF;
  color: #437DD5;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0 1rem;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .p-faq__item dt {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-faq__item dt {
    padding: 2rem;
  }
}
.p-faq__item dt::before {
  content: "Q.";
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-faq__item dt::before {
    font-size: 2rem;
  }
}
.p-faq__item dd {
  padding: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-faq__item dd {
    padding: 2rem;
  }
}

.p-spt {
  background: #F2FAFF;
}
.p-spt__h-img {
  width: 15rem;
  margin: 0 auto 2rem;
}
.p-spt__h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-spt__h2 {
    font-size: 2rem;
  }
}
.p-spt__h1 {
  font-size: 2.4rem;
  text-align: center;
  color: #437DD5;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-spt__h1 {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-spt__h1 {
    gap: 0 4rem;
    margin-bottom: 4rem;
  }
}
.p-spt__h1::before, .p-spt__h1::after {
  content: "";
  height: 6rem;
  width: 0.3rem;
  border-radius: 0.15rem;
  background: #437DD5;
}
@media only screen and (min-width: 768px) {
  .p-spt__h1::before, .p-spt__h1::after {
    height: 8rem;
    width: 0.4rem;
    border-radius: 0.2rem;
  }
}
.p-spt__h1::before {
  transform: rotate(-25deg);
}
.p-spt__h1::after {
  transform: rotate(25deg);
}
.p-spt__box {
  border-radius: 1rem;
  background: #fff;
  padding: 3rem 2rem;
}
@media only screen and (min-width: 768px) {
  .p-spt__box {
    padding: 5rem;
  }
}
.p-spt__list {
  margin: 1.5em 0 1.5em 1rem;
}
@media only screen and (min-width: 768px) {
  .p-spt__list {
    margin: 1.5em 0 1.5em 2rem;
  }
}
.p-spt__list li {
  display: flex;
  gap: 0 1rem;
}
.p-spt__list li span {
  color: #437DD5;
}
.p-spt__btn {
  font-size: 2rem;
  display: inline-block;
  font-weight: bold;
  margin: 4rem auto 0;
  padding: 2rem 5rem;
  background: #437DD5;
  color: #fff;
  border-radius: 6rem;
  transition: filter 0.3s;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-spt__btn {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-spt__btn {
    padding: 2rem 8rem;
  }
}
.p-spt__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.8rem;
  width: 1.1rem;
  height: 100%;
  background: url("../images/common/icon_arrow_white.svg") no-repeat center/contain;
}
@media only screen and (min-width: 768px) {
  .p-spt__btn::before {
    right: 3.7rem;
  }
}
.p-spt__btn:hover {
  filter: brightness(1.1);
}
.p-spt__btn-box {
  text-align: center;
}

/*
 * aside
 */
.p-aside-s {
  background: #1E3443;
  color: #fff;
  padding: 6rem 0;
}
.p-aside-s__h1 {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-aside-s__h1 {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-aside-s__h1 {
    gap: 0 2rem;
  }
}
.p-aside-s__h1::before, .p-aside-s__h1::after {
  content: "";
  display: block;
  height: 2px;
  width: 5rem;
  background: #fff;
}
.p-aside-s__h1::before {
  transform: rotate(55deg);
}
.p-aside-s__h1::after {
  transform: rotate(-55deg);
}
.p-aside-s__btn {
  display: block;
  padding: 1.5rem 0;
  width: min(100%, 33.6rem);
  margin: 0 auto;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-aside-s__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 2rem;
    width: 68.3rem;
    padding: 2rem 0;
  }
}
.p-aside-s__btn img {
  width: 2.1rem;
}
@media only screen and (min-width: 768px) {
  .p-aside-s__btn img {
    width: 3rem;
  }
}
.p-aside-s__btn__num {
  font-size: 3.2rem;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  display: flex;
  justify-content: center;
  gap: 0 1rem;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 768px) {
  .p-aside-s__btn__num {
    font-size: 4.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-aside-s__btn__num {
    display: inline-flex;
    gap: 0 2rem;
  }
}
.p-aside-s__btn small {
  font-size: 1.6rem;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .p-aside-s__btn small {
    font-size: 2.6rem;
  }
}

.p-aside-l {
  background: #1E3443;
  padding: 7rem 0 5rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-aside-l {
    padding-bottom: 7rem;
  }
}
.p-aside-l__h1 {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 1.8rem 0 3rem;
}
@media only screen and (min-width: 768px) {
  .p-aside-l__h1 {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-aside-l__h1 {
    margin-bottom: 4rem;
  }
}
.p-aside-l__h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #FFFA81;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
@media only screen and (min-width: 768px) {
  .p-aside-l__h2 {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-aside-l__h2 {
    display: inline-flex;
    gap: 0 1.5rem;
    margin: 0 2rem;
  }
}
.p-aside-l__h2::before, .p-aside-l__h2::after {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: #FFFA81;
}
.p-aside-l__h2::before {
  transform: rotate(52deg);
}
.p-aside-l__h2::after {
  transform: rotate(-52deg);
}
.p-aside-l__h2 + .p-aside-l__h2 {
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-aside-l__h2 + .p-aside-l__h2 {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  .p-aside-l__btn-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 2rem;
    margin-bottom: 2rem;
  }
}
.p-aside-l__btn-tel, .p-aside-l__btn-line {
  width: 31.1rem;
  margin: 0 auto 2rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-aside-l__btn-tel, .p-aside-l__btn-line {
    width: 44.6rem;
    margin: 0;
  }
}
.p-aside-l__btn-tel::before, .p-aside-l__btn-line::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.8rem;
  width: 1.1rem;
  height: 100%;
  background: url("../images/common/icon_arrow_white.svg") no-repeat center/contain;
}
@media only screen and (min-width: 768px) {
  .p-aside-l__btn-tel::before, .p-aside-l__btn-line::before {
    right: 3.7rem;
  }
}
.p-aside-l__btn-tel {
  padding: 1.5rem 0;
  display: block;
  text-align: center;
}
.p-aside-l__btn-tel__txt {
  font-size: 1.4rem;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .p-aside-l__btn-tel__txt {
    font-size: 1.6rem;
  }
}
.p-aside-l__btn-tel__num {
  font-size: 2.4rem;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.1em;
  display: flex;
  gap: 0 0.5rem;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .p-aside-l__btn-tel__num {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-aside-l__btn-tel__num {
    gap: 0 0.9rem;
  }
}
.p-aside-l__btn-tel__num img {
  width: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .p-aside-l__btn-tel__num img {
    width: 2.4rem;
  }
}
.p-aside-l__btn-line {
  font-size: 2.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
  height: 8.6rem;
}
@media only screen and (min-width: 768px) {
  .p-aside-l__btn-line {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-aside-l__btn-line {
    height: 10.9rem;
  }
}
.p-aside-l__btn-line img {
  width: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .p-aside-l__btn-line img {
    width: 4.6rem;
  }
}
.p-aside-l__note {
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.p-sp-links {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .p-sp-links {
    display: none;
  }
}
.p-sp-links__tel, .p-sp-links__line {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
  height: 7.4rem;
}
.p-sp-links__tel {
  background: #437DD5;
}
.p-sp-links__tel img {
  width: 2.1rem;
}
.p-sp-links__line {
  background: #06C755;
}
.p-sp-links__line img {
  width: 2.3rem;
}

/*
 * footer
 */
.p-gallery {
  position: relative;
}
.p-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/voice/voice_bg.png");
  background-size: 12rem auto;
  opacity: 0.3;
  z-index: -1;
}
.p-gallery__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 2rem;
  padding: 8rem 0;
}
@media only screen and (min-width: 768px) {
  .p-gallery__inner {
    padding: 7rem 0 10rem;
    gap: 3rem 3rem;
  }
}
.p-gallery img {
  width: 33rem;
  border-radius: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-gallery img {
    width: calc((100% - 6rem) / 3);
  }
}
@media only screen and (min-width: 768px) {
  .p-gallery img:nth-of-type(3n-1) {
    position: relative;
    top: 4rem;
  }
}

.p-ftr {
  background: #1E3443;
}
.p-ftr__inner {
  color: #fff;
  padding: 2rem 0 0;
}
@media only screen and (min-width: 768px) {
  .p-ftr__inner {
    padding-top: 5rem;
  }
}
@media only screen and (min-width: 1000px) {
  .p-ftr__inner {
    display: flex;
    gap: 0 6rem;
  }
}
.p-ftr__right {
  margin-top: 3rem;
  display: flex;
  flex-direction: column-reverse;
  gap: 3rem 0;
}
@media only screen and (min-width: 1000px) {
  .p-ftr__right {
    margin-top: 0;
    flex: 1;
    flex-direction: column;
  }
}
.p-ftr__left {
  text-align: center;
}
@media only screen and (min-width: 1000px) {
  .p-ftr__left {
    text-align: left;
  }
}
.p-ftr__h1 {
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-ftr__h1 {
    display: inline-block;
    margin-bottom: 2rem;
  }
}
.p-ftr__h1__txt {
  font-size: 1rem;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .p-ftr__h1__txt {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-ftr__h1__txt {
    margin-bottom: 1rem;
  }
}
.p-ftr__h1__name {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .p-ftr__h1__name {
    font-size: 4rem;
  }
}
.p-ftr__h1__name span {
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-ftr__h1__name span {
    font-size: 1.6rem;
  }
}
.p-ftr__table {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .p-ftr__table {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-ftr__table {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-ftr__table tr {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.p-ftr__table th {
  width: 8rem;
  vertical-align: middle;
}
.p-ftr__table th,
.p-ftr__table td {
  text-align: left;
  padding: 0.8rem 0;
}
.p-ftr__btn-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem 0;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 1000px) {
  .p-ftr__btn-box {
    align-items: flex-start;
  }
}
.p-ftr__btn-tel, .p-ftr__btn-line, .p-ftr__btn-insta {
  font-size: 2.4rem;
  width: 27.8rem;
  height: 4.5rem;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
  color: #fff;
  transition: filter 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-ftr__btn-tel, .p-ftr__btn-line, .p-ftr__btn-insta {
    font-size: 3.2rem;
  }
}
.p-ftr__btn-tel:hover, .p-ftr__btn-line:hover, .p-ftr__btn-insta:hover {
  filter: brightness(1.1);
}
@media only screen and (min-width: 768px) {
  .p-ftr__btn-tel, .p-ftr__btn-line, .p-ftr__btn-insta {
    width: 33.3rem;
    height: 5.7rem;
  }
}
.p-ftr__btn-tel {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.1em;
  background: #437DD5;
}
.p-ftr__btn-tel img {
  width: 1.9rem;
}
.p-ftr__btn-line {
  background: #06C755;
  font-weight: bold;
}
.p-ftr__btn-line img {
  width: 2.9rem;
}
.p-ftr__btn-insta {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  position: relative;
  overflow: hidden;
}
.p-ftr__btn-insta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}
.p-ftr__btn-insta img {
  position: relative;
  width: 2.9rem;
}
.p-ftr__btn-insta span {
  position: relative;
}
.p-ftr__note {
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .p-ftr__note {
    font-size: 1.4rem;
  }
}
.p-ftr__days {
  display: inline-block;
}
.p-ftr__cr {
  font-size: 1.1rem;
  font-weight: bold;
  padding: 3rem 0 10rem;
  color: #fff;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-ftr__cr {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-ftr__cr {
    padding: 7.5rem 0 2.5rem;
  }
}
.p-ftr__map {
  position: relative;
  aspect-ratio: 335/232;
}
.p-ftr__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-ftr__banner {
  display: block;
  width: 32rem;
  margin: 0 auto;
  transition: opacity 0.3s;
}
.p-ftr__banner:hover {
  opacity: 0.8;
}
@media only screen and (min-width: 1000px) {
  .p-ftr__banner {
    margin: 0;
  }
}

.p-days {
  background: #fff;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  display: inline-block;
}
.p-days table {
  width: 100%;
  color: #000;
}
.p-days tr:first-of-type {
  border-bottom: 1px solid #E0E0E0;
}
.p-days th,
.p-days td {
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.7rem;
}
@media only screen and (min-width: 768px) {
  .p-days th,
.p-days td {
    font-size: 1.1rem;
  }
}
.p-days td {
  text-align: center;
}
.p-days__note {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: right;
  margin-top: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .p-days__note {
    font-size: 1.1rem;
  }
}

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

.u-tb {
  display: block;
}
@media only screen and (min-width: 1000px) {
  .u-tb {
    display: none;
  }
}

.u-pc {
  display: none;
}
@media only screen and (min-width: 1000px) {
  .u-pc {
    display: block;
  }
}

.u-hidden {
  display: none;
}

/*
 * color
 */
.u-red {
  color: #F83838;
}

.u-white {
  color: #fff;
}

.u-blue {
  color: #437DD5;
}

/*-------------------------------

	Reset

-------------------------------*/
/*-------------------------------

	Foundation

-------------------------------*/
/*-------------------------------

	Layout

-------------------------------*/
/*-------------------------------

	Object

-------------------------------*/
/*---------- Component ----------*/
/*---------- Project ----------*/
/*---------- Utility ----------*/
/*# sourceMappingURL=style.css.map */