<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ======================================================================
 reset
====================================================================== */
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  overflow-y: scroll;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul {
  list-style: none;
  padding-left: 0;
}

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,
input, select, textarea {
  box-sizing: border-box;
}

html {
  /* Sets a specific default `font-size` for user with `rem` type scales.*/
  font-size: 62.5%;
  /* Changes the default tap highlight to be completely transparent in iOS.*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: #565656;
  line-height: 1.6;
  background: #fff;
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, sans-serif;
  font-weight: 400;
  word-wrap: break-word;
  word-break: break-all;
  min-width: 1480px;
}
@media screen and (max-width: 1500px) {
  body {
    min-width: inherit;
  }
}

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

strong {
  font-weight: bold;
}

a:link {
  color: #565656;
  text-decoration: none;
  cursor: pointer;
}
a:visited {
  color: #565656;
  text-decoration: none;
}
a:hover {
  color: #565656;
  text-decoration: none;
}
a:active {
  color: #565656;
  text-decoration: none;
}

a[href^=tel] {
  color: #565656;
}

:focus-ring {
  outline: none;
}

.contain {
  width: 1480px;
  min-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
}

/* input */
input, textarea, select {
  display: block;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  -o-border-image: none;
     border-image: none;
  background: transparent;
  font-family: inherit;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input::-ms-expand, textarea::-ms-expand, select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

input:-moz-placeholder-shown, textarea:-moz-placeholder-shown {
  color: #565656;
}

input:placeholder-shown, textarea:placeholder-shown {
  color: #565656;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #565656;
}
input::placeholder, textarea::placeholder {
  color: #565656;
}
input:focus:-moz-placeholder-shown, textarea:focus:-moz-placeholder-shown {
  color: #565656;
}
input:focus:placeholder-shown, textarea:focus:placeholder-shown {
  color: #565656;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #565656;
}
input:focus::placeholder, textarea:focus::placeholder {
  color: #565656;
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l-footer
================================= */
.l-footer {
  border-top: 6px solid #27a7e0;
}
.l-footer__logo {
  margin-block: 80px 60px;
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    margin-block: 20vw 10vw;
    width: 70vw;
  }
}
.l-footer__inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}
@media screen and (max-width: 1124px) {
  .l-footer__inner {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    margin-bottom: 20vw;
  }
}
.l-footer__left {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.l-footer__catch {
  font-size: 2.4rem;
}
@media screen and (max-width: 1124px) {
  .l-footer__catch {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__catch {
    font-size: 1.8rem;
    margin-bottom: 10vw;
  }
}
.l-footer__info {
  font-size: 1.8rem;
}
@media screen and (max-width: 1124px) {
  .l-footer__info {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__info {
    font-size: 1.4rem;
    margin-bottom: 20vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__list {
    border-top: 1px solid #ccc;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__list li {
    border-bottom: 1px solid #ccc;
  }
}
.l-footer__list li a {
  font-size: 1.8rem;
  transition: color 0.2s;
  color: #565656;
}
.l-footer__list li a:hover {
  color: #27a7e0;
}
@media screen and (max-width: 768px) {
  .l-footer__list li a {
    font-size: 1.4rem;
    padding: 4vw 4vw 4vw 8vw;
    display: block;
    position: relative;
  }
}
.l-footer__list li a:before {
  content: "−";
  margin-right: 1em;
}
@media screen and (max-width: 768px) {
  .l-footer__list li a:before {
    position: absolute;
    left: 2vw;
    top: calc(50% - 10px);
  }
}
.l-footer__list li:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .l-footer__list li:not(:last-child) {
    margin-bottom: 0;
  }
}
.l-footer__bottom {
  border-top: 6px solid #27a7e0;
  padding-block: 40px 224px;
}
@media screen and (max-width: 768px) {
  .l-footer__bottom {
    padding-block: 5vw 20vw;
  }
}
.l-footer__copy {
  text-align: right;
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .l-footer__copy {
    font-size: 1.2rem;
  }
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l-content__size
================================= */
.l-content__size-sp-1 {
  padding: 0 4%;
}
@media screen and (min-width: 1025px) {
  .l-content__size-sp-1 {
    max-width: 1480px;
    margin: 0 auto;
  }
}

.l-content__size-pc-1 {
  width: 1480px;
  margin: 0 auto;
  padding-inline: 20px;
}
@media screen and (max-width: 1500px) {
  .l-content__size-pc-1 {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .l-content__size-pc-1 {
    padding: 0 4vw;
  }
}

/* =================================
 l-header
================================= */
.l-header {
  z-index: 999;
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  padding-block: 28px;
  background: #fff;
}
@media screen and (max-width: 1500px) {
  .l-header {
    padding-block: 10px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    padding-block: 2vw;
  }
}
.l-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__nav {
  display: flex;
}
.l-header__nav li {
  width: 50px;
  margin-right: 40px;
}
@media screen and (max-width: 1500px) {
  .l-header__nav li {
    width: 40px;
    margin-right: 4vw;
  }
}
.l-header__nav-wrap {
  display: flex;
  align-items: center;
}
.l-header__left {
  display: flex;
  align-items: center;
  padding-left: 30px;
}
@media screen and (max-width: 1680px) {
  .l-header__left {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .l-header__left {
    padding-left: 4vw;
  }
}
.l-header__logo {
  margin-right: 28px;
}
@media screen and (max-width: 1124px) {
  .l-header__logo {
    width: 30vw;
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 40vw;
  }
}
.l-header__catch {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 1500px) {
  .l-header__catch {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1124px) {
  .l-header__catch {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header__catch {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  .l-header__center {
    display: none;
  }
}
.l-header__center-address {
  font-size: 1.8rem;
}
@media screen and (max-width: 1124px) {
  .l-header__center-address {
    font-size: 1.5rem;
  }
}
.l-header__center-tel {
  color: #27a7e0;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 1124px) {
  .l-header__center-tel {
    font-size: 3rem;
  }
}
.l-header__center-tel a {
  color: #27a7e0;
}
.l-header__toggle {
  position: relative;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .l-header__toggle {
    width: 40px;
    height: 40px;
  }
}
.l-header__toggle span {
  width: 42px;
  height: 2px;
  background: #27a7e0;
  display: block;
  position: absolute;
  left: 9px;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}
@media screen and (max-width: 768px) {
  .l-header__toggle span {
    width: 32px;
    left: 5px;
  }
}
.l-header__toggle span:nth-of-type(1) {
  top: 14px;
}
@media screen and (max-width: 768px) {
  .l-header__toggle span:nth-of-type(1) {
    top: 9px;
  }
}
.l-header__toggle span:nth-of-type(2) {
  top: 24px;
}
@media screen and (max-width: 768px) {
  .l-header__toggle span:nth-of-type(2) {
    top: 19px;
  }
}
.l-header__toggle span:nth-of-type(3) {
  top: 34px;
}
@media screen and (max-width: 768px) {
  .l-header__toggle span:nth-of-type(3) {
    top: 29px;
  }
}
.l-header.active .l-header__toggle span:nth-of-type(1) {
  top: 24px;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .l-header.active .l-header__toggle span:nth-of-type(1) {
    top: 19px;
  }
}
.l-header.active .l-header__toggle span:nth-of-type(2) {
  top: 24px;
  width: 0;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .l-header.active .l-header__toggle span:nth-of-type(2) {
    top: 19px;
  }
}
.l-header.active .l-header__toggle span:nth-of-type(3) {
  top: 24px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .l-header.active .l-header__toggle span:nth-of-type(3) {
    top: 19px;
  }
}

/* =================================
 l-header__sp
================================= */
.l-header__sp {
  z-index: 999;
}

/* =================================
 l-menu
================================= */
.l-menu {
  z-index: 998;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  width: 300px;
  height: 100vh;
  height: 100dvh;
  padding-block: 150px 60px;
  overflow: auto;
  opacity: 0;
  transition-duration: 0.4s;
  transform: translate(300px, 0);
}
@media screen and (max-width: 768px) {
  .l-menu {
    padding-block: 15vw;
  }
}
.l-menu.active {
  opacity: 1;
  transform: translate(0, 0);
}
.l-menu__nav {
  margin-inline: 20px;
}
@media screen and (max-width: 768px) {
  .l-menu__nav {
    margin-inline: 4vw;
  }
}
.l-menu__nav li {
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 1px solid #ccc;
}
.l-menu__nav a {
  padding: 10px 5px;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-menu__nav a {
    padding: 4vw 2vw;
  }
}
.l-menu__nav a:before {
  position: absolute;
  top: calc(50% - 8px);
  right: 0;
  content: "\e5cc";
  font-family: "Material Icons";
  font-size: 2rem;
  line-height: 1;
  color: #27a7e0;
}
.l-menu__overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 997;
}
.l-menu__overlay.active {
  display: block;
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l-loader
================================= */
.l-loader {
  z-index: 1000;
}

/* =================================
 l-breadcrumbs
================================= */
.l-breadcrumbs {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .l-breadcrumbs {
    margin-bottom: 10vw;
  }
}
.l-breadcrumbs__list {
  background: #ffcd4d;
  border-radius: 26px;
  display: flex;
  padding: 14px 57px;
}
@media screen and (max-width: 1124px) {
  .l-breadcrumbs__list {
    padding: 4vw 6vw;
    border-radius: 50px;
    width: auto;
    overflow: auto;
    white-space: nowrap;
  }
}
.l-breadcrumbs__list li {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .l-breadcrumbs__list li {
    font-size: 1.4rem;
  }
}
.l-breadcrumbs__list li + li:before {
  content: "＞";
  margin-inline: 1em;
}
.l-breadcrumbs__list li a {
  transition: color 0.2s;
  color: #565656;
}
.l-breadcrumbs__list li a:hover {
  color: #000;
}

/* =================================
 l-main_visual
================================= */
/* =================================
 l-main
================================= */
@media screen and (min-width: 1124px) {
  .c-tb {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .c-480 {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .c-pc {
    display: block;
  }
  .c-sp {
    display: none;
  }
}
@media screen and (max-width: 1124px) {
  .c-pc {
    display: none;
  }
  .c-tb {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .c-pc {
    display: none;
  }
  .c-sp {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .c-480 {
    display: block;
  }
}
.c-timetable__table {
  width: 600px;
  border-collapse: collapse;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #27a7e0;
}
@media screen and (max-width: 768px) {
  .c-timetable__table {
    width: 100%;
  }
}
.c-timetable__table thead {
  background: #27a7e0;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-timetable__table thead {
    font-size: 1.4rem;
  }
}
.c-timetable__table thead th {
  padding: 5px;
}
.c-timetable__table thead td {
  text-align: center;
  padding: 5px;
}
.c-timetable__table tbody tr:last-child &gt; th, .c-timetable__table tbody tr:last-child &gt; td {
  border-bottom: none;
}
.c-timetable__table tbody th {
  font-family: Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #27a7e0;
  width: 180px;
  border-bottom: 1px solid #27a7e0;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .c-timetable__table tbody th {
    font-size: 1.4rem;
    width: 120px;
  }
}
.c-timetable__table tbody td {
  border-left: 1px solid #27a7e0;
  border-bottom: 1px solid #27a7e0;
  font-size: 2.4rem;
  color: #27a7e0;
  padding: 14px 5px;
}
@media screen and (max-width: 768px) {
  .c-timetable__table tbody td {
    font-size: 1.4rem;
    padding: 5px;
  }
}
.c-timetable__table-rest {
  text-align: center;
}
.c-timetable__table-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ff8e01;
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-timetable__table-circle {
    width: 20px;
    height: 20px;
  }
}
.c-timetable__table-slash {
  width: 30px;
  height: 2px;
  background: #ff8e01;
  display: block;
  margin-inline: auto;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .c-timetable__table-slash {
    width: 20px;
  }
}

.c-condition {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .c-condition {
    margin-bottom: 20vw;
  }
}
.c-condition__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1124px) {
  .c-condition__top {
    display: block;
  }
}
.c-condition__ttl {
  font-size: 3.6rem;
  font-weight: 700;
  color: #27a7e0;
}
@media screen and (max-width: 768px) {
  .c-condition__ttl {
    font-size: 2.8rem;
    margin-bottom: 2vw;
  }
}
.c-condition__btn a {
  background: url(../img/index/btn_detail@2x.png) center top/100% no-repeat;
  width: 670px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.1rem;
  font-weight: 700;
  padding-bottom: 5px;
  transition: color 0.2s;
  color: #27a7e0;
}
.c-condition__btn a:hover {
  color: #1080b0;
}
@media screen and (max-width: 1124px) {
  .c-condition__btn a {
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .c-condition__btn a {
    font-size: 1.8rem;
    background: url(../img/index/btn_youtube@2x.png) center top/100% no-repeat;
    width: 100%;
    height: 27vw;
    padding-inline: 4vw;
  }
}
.c-condition__box {
  background: #daf4ff;
  border-radius: 30px;
  padding: 60px 120px;
}
@media screen and (max-width: 1124px) {
  .c-condition__box {
    padding-inline: 60px;
  }
}
@media screen and (max-width: 768px) {
  .c-condition__box {
    padding: 4vw;
  }
}
.c-condition__box-text {
  font-size: 2.1rem;
  color: #363636;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .c-condition__box-text {
    font-size: 1.6rem;
    margin-bottom: 4vw;
  }
}
.c-condition__box-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .c-condition__box-inner {
    display: block;
    margin-bottom: 2vw;
  }
}
.c-condition__box-inner-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 660px;
}
@media screen and (max-width: 1500px) {
  .c-condition__box-inner-left {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  .c-condition__box-inner-left {
    width: 100%;
    margin-bottom: 4vw;
  }
}
.c-condition__box-img {
  width: 240px;
}
@media screen and (max-width: 768px) {
  .c-condition__box-img {
    width: 40%;
  }
}
.c-condition__box-img img {
  border-radius: 6px;
  overflow: hidden;
}
.c-condition__box-img figcaption {
  font-size: 1.8rem;
  color: #363636;
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .c-condition__box-img figcaption {
    font-size: 1.4rem;
  }
}
.c-condition__box-arrow {
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: #27a7e0;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 980px) {
  .c-condition__box-arrow {
    width: 40px;
    height: 40px;
    margin-inline: 10px;
  }
}
@media screen and (max-width: 768px) {
  .c-condition__box-arrow {
    width: 5vw;
    height: 5vw;
    margin-inline: 0;
  }
}
.c-condition__box-movie {
  font-size: 1.8rem;
  font-weight: 700;
  color: #27a7e0;
  margin-bottom: 11px;
}
@media screen and (max-width: 768px) {
  .c-condition__box-movie {
    font-size: 1.4rem;
    margin-bottom: 2vw;
    text-align: center;
  }
}
.c-condition__box-btn a {
  background: url(../img/index/btn_youtube@2x.png) center top/100% no-repeat;
  width: 432px;
  height: 133px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 6px;
}
@media screen and (max-width: 1500px) {
  .c-condition__box-btn a {
    width: 30vw;
    height: 9vw;
  }
}
@media screen and (max-width: 768px) {
  .c-condition__box-btn a {
    width: 90%;
    height: 24vw;
    margin-inline: auto;
  }
}
.c-condition__box-btn a img {
  width: 238px;
}
@media screen and (max-width: 1500px) {
  .c-condition__box-btn a img {
    width: 55%;
  }
}
.c-condition__box-table {
  font-size: 1.8rem;
  color: #363636;
}
@media screen and (max-width: 768px) {
  .c-condition__box-table {
    font-size: 1.4rem;
  }
}
.c-condition__box-table th {
  font-weight: 400;
  text-align: left;
  width: 148px;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .c-condition__box-table th {
    width: 100%;
    display: block;
    margin-top: 5vw;
  }
}
.c-condition__box-table td {
  width: 1048px;
}
@media screen and (max-width: 1500px) {
  .c-condition__box-table td {
    width: calc(100% - 148px);
  }
}
@media screen and (max-width: 768px) {
  .c-condition__box-table td {
    width: 100%;
    display: block;
  }
}

.c-contact {
  background: #83cdee;
  padding-block: 70px 120px;
}
@media screen and (max-width: 768px) {
  .c-contact {
    padding-block: 10vw 20vw;
  }
}
.c-contact__ttl {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 70px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-contact__ttl {
    font-size: 2.8rem;
    margin-bottom: 10vw;
  }
}
.c-contact__box {
  background: #fff;
  border-radius: 30px;
  padding-block: 60px;
}
@media screen and (max-width: 1124px) {
  .c-contact__box {
    padding-block: 40px;
  }
}
@media screen and (max-width: 768px) {
  .c-contact__box {
    padding-block: 6vw;
  }
}
.c-contact__subttl {
  color: #27a7e0;
  font-size: 3.6rem;
  font-weight: 700;
  margin-left: 60px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1124px) {
  .c-contact__subttl {
    margin-inline: 40px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .c-contact__subttl {
    font-size: 2.8rem;
    margin-inline: 4vw;
    text-align: center;
  }
}
.c-contact__info {
  margin-inline: 224px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1500px) {
  .c-contact__info {
    margin-inline: 60px;
  }
}
@media screen and (max-width: 1124px) {
  .c-contact__info {
    margin-inline: 40px;
  }
}
@media screen and (max-width: 768px) {
  .c-contact__info {
    display: block;
    margin-inline: 6vw;
  }
}
.c-contact__info-left {
  color: #363636;
  font-size: 2.6rem;
  line-height: 1;
}
@media screen and (max-width: 1124px) {
  .c-contact__info-left {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-contact__info-left {
    font-size: 1.8rem;
    margin-bottom: 2vw;
  }
}
.c-contact__info-right {
  color: #27a7e0;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 1124px) {
  .c-contact__info-right {
    font-size: 4rem;
  }
}
@media screen and (max-width: 980px) {
  .c-contact__info-right {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-contact__info-right {
    font-size: 2.4rem;
  }
}
.c-contact__info-right a {
  transition: color 0.2s;
  color: #27a7e0;
}
.c-contact__info-right a:hover {
  color: #1080b0;
}
.c-contact__info-attend {
  font-size: 1.8rem;
  margin: 6px 224px 36px;
}
@media screen and (max-width: 1500px) {
  .c-contact__info-attend {
    margin-inline: 60px;
  }
}
@media screen and (max-width: 1124px) {
  .c-contact__info-attend {
    margin-inline: 40px;
  }
}
@media screen and (max-width: 768px) {
  .c-contact__info-attend {
    margin: 2vw 6vw 6vw;
    font-size: 1.4rem;
  }
}
.c-contact + .c-youtube {
  margin-top: 105px;
}
@media screen and (max-width: 768px) {
  .c-contact + .c-youtube {
    margin-top: 6vw;
  }
}

.c-youtube__ttl {
  position: relative;
  margin-bottom: 105px;
}
@media screen and (max-width: 768px) {
  .c-youtube__ttl {
    margin-bottom: 6vw;
  }
}
.c-youtube__ttl:before {
  content: "";
  width: calc(50% - 750px);
  height: 30px;
  background: #27a7e0;
  border-radius: 0 15px 15px 0;
  display: block;
  position: absolute;
  top: calc(50% - 15px);
  left: 0;
}
.c-youtube__ttl:after {
  content: "";
  width: calc(50% + 240px);
  height: 30px;
  background: #27a7e0;
  border-radius: 15px 0 0 15px;
  display: block;
  position: absolute;
  top: calc(50% - 15px);
  right: 0;
}
@media screen and (max-width: 1500px) {
  .c-youtube__ttl:after {
    width: calc(100% - 475px);
  }
}
@media screen and (max-width: 768px) {
  .c-youtube__ttl:after {
    width: calc(100% - 350px);
  }
}
.c-youtube__ttl-text {
  font-size: 3rem;
  font-weight: 700;
  color: #27a7e0;
}
@media screen and (max-width: 768px) {
  .c-youtube__ttl-text {
    font-size: 2.2rem;
  }
}
.c-youtube__inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 180px;
}
@media screen and (max-width: 980px) {
  .c-youtube__inner {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .c-youtube__inner {
    margin-bottom: 20vw;
  }
}
.c-youtube__info {
  width: 720px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
@media screen and (max-width: 1500px) {
  .c-youtube__info {
    width: 48.6111111111vw;
  }
}
@media screen and (max-width: 980px) {
  .c-youtube__info {
    width: 100%;
  }
}
.c-youtube__info-text {
  font-size: 1.8rem;
  line-height: 2.5;
}
@media screen and (max-width: 980px) {
  .c-youtube__info-text {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .c-youtube__info-text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 8vw;
  }
}
.c-youtube__info-bottom-text {
  font-size: 3rem;
  font-weight: 700;
  color: #27a7e0;
  margin-bottom: 18px;
}
@media screen and (max-width: 980px) {
  .c-youtube__info-bottom-text {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .c-youtube__info-bottom-text {
    font-size: 2.2rem;
    margin-bottom: 4vw;
  }
}
.c-youtube__info-bottom-btn a {
  background: url(../img/common/btn_youtube@2x.png) center top/100% no-repeat;
  width: 612px;
  height: 132px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 6px;
}
@media screen and (max-width: 1500px) {
  .c-youtube__info-bottom-btn a {
    width: 42.5vw;
    height: 9.1666666667vw;
  }
}
@media screen and (max-width: 980px) {
  .c-youtube__info-bottom-btn a {
    width: 612px;
    height: 132px;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 768px) {
  .c-youtube__info-bottom-btn a {
    width: 90%;
    height: 18vw;
    margin-inline: auto;
  }
}
.c-youtube__info-bottom-btn a img {
  width: 238px;
}
@media screen and (max-width: 1500px) {
  .c-youtube__info-bottom-btn a img {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  .c-youtube__info-bottom-btn a img {
    width: 45%;
  }
}
.c-youtube__img {
  width: 660px;
}
@media screen and (max-width: 1500px) {
  .c-youtube__img {
    width: 45.8333333333vw;
  }
}
@media screen and (max-width: 980px) {
  .c-youtube__img {
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .c-youtube__img {
    width: 80vw;
  }
}
.c-youtube__img img {
  width: 660px;
  height: 540px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
@media screen and (max-width: 1500px) {
  .c-youtube__img img {
    width: 45.8333333333vw;
    height: 37.5vw;
  }
}
@media screen and (max-width: 768px) {
  .c-youtube__img img {
    width: 100%;
    height: 54vw;
  }
}

.c-tab {
  margin-bottom: 37px;
}
@media screen and (max-width: 768px) {
  .c-tab {
    margin-bottom: 4vw;
  }
}
.c-tab__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 15px solid #28a7e1;
}
@media screen and (max-width: 768px) {
  .c-tab__list {
    border-bottom: 4px solid #28a7e1;
  }
}
.c-tab__list li {
  width: 270px;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 1124px) {
  .c-tab__list li {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 980px) {
  .c-tab__list li {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-tab__list li {
    font-size: 1.1rem;
  }
}
.c-tab__list li small {
  font-size: 2.4rem;
}
@media screen and (max-width: 1124px) {
  .c-tab__list li small {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 980px) {
  .c-tab__list li small {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-tab__list li small {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .c-tab__list li br {
    display: none;
  }
  .c-tab__list li br.c-sp {
    display: block;
  }
}
.c-tab__list li.current {
  background: #28a7e1;
  border-radius: 30px 30px 0 0;
  color: #fff;
  padding-block: 10px 40px;
}
@media screen and (max-width: 768px) {
  .c-tab__list li.current {
    padding-block: 5vw;
    border-radius: 10px 10px 0 0;
  }
}
.c-tab__list li a {
  border-radius: 30px 30px 0 0;
  background: #e0f5ff;
  border: 3px solid #27a7e0;
  border-bottom: none;
  padding-block: 10px 15px;
  display: block;
  height: 100px;
  transition: color 0.2s;
  color: #27a7e0;
}
.c-tab__list li a:hover {
  color: #1080b0;
}
@media screen and (max-width: 980px) {
  .c-tab__list li a {
    height: 8.5vw;
  }
}
@media screen and (max-width: 768px) {
  .c-tab__list li a {
    padding-block: 3vw;
    border-radius: 10px 10px 0 0;
    border: 2px solid #27a7e0;
    height: 10vw;
  }
}
.c-tab__list li:first-child {
  width: 300px;
}
.c-tab__list li:first-child.current {
  padding-block: 25px 60px;
}
@media screen and (max-width: 768px) {
  .c-tab__list li:first-child.current {
    padding-block: 2vw 4vw;
  }
}
.c-tab__list li:first-child a {
  padding-block: 25px;
}
@media screen and (max-width: 768px) {
  .c-tab__list li:first-child a {
    padding-block: 1vw;
  }
}

.c-tag {
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .c-tag {
    margin-bottom: 6vw;
  }
}
.c-tag__list {
  display: flex;
  flex-wrap: wrap;
}
.c-tag__list li {
  margin-right: 5px;
  margin-bottom: 9px;
}
.c-tag__list li a {
  border: 2px solid #28a7e1;
  display: block;
  padding: 2px 17px;
  border-radius: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  transition: color 0.2s;
  color: #28a7e1;
}
.c-tag__list li a:hover {
  color: #1080b0;
}
@media screen and (max-width: 768px) {
  .c-tag__list li a {
    padding: 2px 7px;
    font-size: 1.2rem;
  }
}

.c-detail {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .c-detail {
    margin-bottom: 10vw;
  }
}
.c-detail__ttl {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 90px;
  color: #27a7e0;
  margin-inline: 60px;
}
@media screen and (max-width: 1500px) {
  .c-detail__ttl {
    margin-inline: 2.7777777778vw;
  }
}
@media screen and (max-width: 768px) {
  .c-detail__ttl {
    font-size: 2.4rem;
    margin-bottom: 10vw;
  }
}
@media screen and (max-width: 768px) {
  .c-detail__ttl {
    margin-inline: 0;
    margin-bottom: 4vw;
  }
}
.c-detail__inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-inline: 60px;
}
@media screen and (max-width: 1500px) {
  .c-detail__inner {
    margin-inline: 2.7777777778vw;
  }
}
@media screen and (max-width: 980px) {
  .c-detail__inner {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .c-detail__inner {
    margin-inline: 0;
  }
}
.c-detail__img {
  width: 600px;
}
@media screen and (max-width: 1500px) {
  .c-detail__img {
    width: 41.6666666667vw;
  }
}
@media screen and (max-width: 980px) {
  .c-detail__img {
    width: 80%;
    margin-inline: auto;
    margin-bottom: 8vw;
  }
}
.c-detail__img img {
  border-radius: 12px;
  overflow: hidden;
}
.c-detail__img-wrap {
  width: 600px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
@media screen and (max-width: 1500px) {
  .c-detail__img-wrap {
    width: 41.6666666667vw;
  }
}
@media screen and (max-width: 980px) {
  .c-detail__img-wrap {
    width: 80%;
    margin-inline: auto;
    margin-bottom: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .c-detail__img-wrap {
    width: 100%;
  }
}
.c-detail__img-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-detail__img-list-item {
  width: 288px;
  margin-bottom: 7px;
}
@media screen and (max-width: 1500px) {
  .c-detail__img-list-item {
    width: 20vw;
  }
}
@media screen and (max-width: 980px) {
  .c-detail__img-list-item {
    width: 48%;
  }
}
.c-detail__info {
  width: 660px;
  color: #363636;
}
@media screen and (max-width: 1500px) {
  .c-detail__info {
    width: 45.8333333333vw;
  }
}
@media screen and (max-width: 980px) {
  .c-detail__info {
    width: inherit;
  }
}
.c-detail__info-text {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  .c-detail__info-text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.c-detail__info-text + .c-detail__info-text,
.c-detail__info-text + .c-detail__info-circle,
.c-detail__info-text + .c-detail__info-square {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .c-detail__info-text + .c-detail__info-text,
  .c-detail__info-text + .c-detail__info-circle,
  .c-detail__info-text + .c-detail__info-square {
    margin-top: 4vw;
  }
}
.c-detail__info-text + .c-detail__info-text.none,
.c-detail__info-text + .c-detail__info-circle.none,
.c-detail__info-text + .c-detail__info-square.none {
  margin-top: 0;
}
.c-detail__info-disc {
  list-style: disc;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.5;
  margin-left: 1.5em;
}
@media screen and (max-width: 768px) {
  .c-detail__info-disc {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.c-detail__info-disc + .c-detail__info-text {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .c-detail__info-disc + .c-detail__info-text {
    margin-top: 4vw;
  }
}
.c-detail__info-disc + .c-detail__info-text.none {
  margin-top: 0;
}
.c-detail__info-circle {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  .c-detail__info-circle {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.c-detail__info-circle li {
  padding-left: 1em;
  text-indent: -1em;
}
.c-detail__info-circle li:before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: #27a7e0;
  border-radius: 50%;
  margin-right: 0.5em;
}
.c-detail__info-circle + .c-detail__info-text {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .c-detail__info-circle + .c-detail__info-text {
    margin-top: 4vw;
  }
}
.c-detail__info-circle .c-detail__info-disc li:before {
  display: none;
}
.c-detail__info-square {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  .c-detail__info-square {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.c-detail__info-square li {
  padding-left: 1em;
  text-indent: -1em;
}
.c-detail__info-square li:before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  border: 1px solid #28a7e1;
  margin-right: 0.5em;
}
.c-detail__info-square + .c-detail__info-text {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .c-detail__info-square + .c-detail__info-text {
    margin-top: 4vw;
  }
}
.c-detail__info-box {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.5;
  margin-block: 50px;
}
@media screen and (max-width: 768px) {
  .c-detail__info-box {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-block: 4vw;
  }
}
.c-detail__info-box dt {
  padding-left: 1em;
  text-indent: -1em;
}
.c-detail__info-box dt:before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: #28a7e1;
  border-radius: 50%;
  margin-right: 0.5em;
}
@media screen and (max-width: 768px) {
  .c-detail__info-box dt:before {
    margin-bottom: -2px;
  }
}
.c-detail__info-box dt .blue {
  color: #28a7e1;
  font-weight: 400;
}
.c-detail__info-box dd {
  padding-left: 1.5em;
}
.c-detail__text {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.5;
  margin-inline: 60px;
  color: #363636;
}
@media screen and (max-width: 1500px) {
  .c-detail__text {
    margin-inline: 2.7777777778vw;
  }
}
@media screen and (max-width: 768px) {
  .c-detail__text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-inline: 0;
  }
}
.c-detail__text + .c-detail__text {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .c-detail__text + .c-detail__text {
    margin-top: 4vw;
  }
}
.c-detail__images {
  display: flex;
  justify-content: space-between;
  margin-inline: 60px;
  margin-block: 60px 0;
  color: #363636;
}
@media screen and (max-width: 1500px) {
  .c-detail__images {
    margin-inline: 2.7777777778vw;
  }
}
@media screen and (max-width: 768px) {
  .c-detail__images {
    margin-inline: 0;
    margin-bottom: 0;
    display: block;
  }
}
.c-detail__images-box {
  width: 600px;
  border: 3px solid #27a7e0;
  border-radius: 12px;
  padding: 14px 12px 30px;
}
@media screen and (max-width: 1500px) {
  .c-detail__images-box {
    width: 41.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .c-detail__images-box {
    width: 80%;
    margin-inline: auto;
    margin-bottom: 4vw;
  }
}
.c-detail__images-text {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.5;
  display: flex;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .c-detail__images-text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.c-detail__images-text span {
  width: calc(100% - 31px);
}
.c-detail__images-text:before {
  content: "";
  background: #27a7e0;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 13px;
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .c-detail__images-text:before {
    width: 14px;
    height: 14px;
    margin-right: 7px;
    margin-top: 7px;
  }
}
.c-detail__2colum {
  margin-bottom: -60px;
}
@media screen and (max-width: 768px) {
  .c-detail__2colum {
    margin-bottom: 0;
  }
}
.c-detail__2colum-ttl {
  background: #27a7e0;
  color: #fff;
  font-size: 3.6rem;
  font-weight: 400;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  margin-bottom: 60px;
  margin-inline: 60px;
}
@media screen and (max-width: 1500px) {
  .c-detail__2colum-ttl {
    margin-inline: 2.7777777778vw;
  }
}
@media screen and (max-width: 768px) {
  .c-detail__2colum-ttl {
    margin-inline: 0;
    font-size: 2.4rem;
    margin-bottom: 6vw;
  }
}
.c-detail__2colum-subttl {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #27a7e0;
}
@media screen and (max-width: 768px) {
  .c-detail__2colum-subttl {
    margin-bottom: 4vw;
    font-size: 2.4rem;
  }
}
.c-detail__2colum-inner {
  display: flex;
  justify-content: space-between;
  margin-inline: 60px;
}
@media screen and (max-width: 1500px) {
  .c-detail__2colum-inner {
    margin-inline: 2.7777777778vw;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .c-detail__2colum-inner {
    margin-inline: 0;
  }
}
.c-detail__2colum-flow {
  width: 660px;
}
@media screen and (max-width: 1500px) {
  .c-detail__2colum-flow {
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .c-detail__2colum-flow {
    width: 100%;
  }
}
.c-detail__2colum-flow-item {
  border: 5px solid #27a7e0;
  border-radius: 12px;
  color: #363636;
  font-size: 2.1rem;
  text-align: center;
  margin-bottom: 60px;
  padding-block: 8px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-detail__2colum-flow-item {
    font-size: 1.6rem;
    border: 5px solid #27a7e0;
  }
}
.c-detail__2colum-flow-item.harf {
  width: 330px;
}
@media screen and (max-width: 768px) {
  .c-detail__2colum-flow-item.harf {
    width: 280px;
  }
}
.c-detail__2colum-flow-item:before {
  content: "";
  width: 10px;
  height: 60px;
  position: absolute;
  bottom: -65px;
  left: calc(50% - 5px);
  display: block;
  background: #27a7e0;
}
@media screen and (max-width: 768px) {
  .c-detail__2colum-flow-item:before {
    width: 6px;
    left: calc(50% - 3px);
  }
}
.c-detail__2colum-flow-item:nth-child(1):before {
  left: calc(25% - 5px);
}
@media screen and (max-width: 768px) {
  .c-detail__2colum-flow-item:nth-child(1):before {
    left: calc(25% - 3px);
  }
}
.c-detail__2colum-flow-item:nth-child(1):after {
  content: "";
  width: 10px;
  height: 180px;
  position: absolute;
  bottom: -185px;
  left: calc(75% - 5px);
  display: block;
  background: #27a7e0;
}
@media screen and (max-width: 768px) {
  .c-detail__2colum-flow-item:nth-child(1):after {
    width: 6px;
    bottom: -177px;
    height: 175px;
    left: calc(90% - 3px);
  }
}
@media screen and (max-width: 768px) {
  .c-detail__2colum-flow-item:nth-child(2):before {
    left: calc(32% - 5px);
  }
}
.c-detail__2colum-flow-item:last-child:before {
  display: none;
}
.c-detail__2colum-flow-text {
  font-size: 1.8rem;
}
@media screen and (max-width: 1500px) {
  .c-detail__2colum-flow-text {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .c-detail__2colum-flow-text {
    font-size: 1.4rem;
    margin-bottom: 10vw;
  }
}
.c-detail__2colum-right {
  width: 600px;
}
@media screen and (max-width: 1500px) {
  .c-detail__2colum-right {
    width: 660px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .c-detail__2colum-right {
    width: 100%;
  }
}
.c-detail__2colum-right-box {
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .c-detail__2colum-right-box {
    margin-bottom: 4vw;
  }
}
.c-detail__2colum-text {
  font-size: 1.8rem;
  line-height: 2.5;
  color: #363636;
}
@media screen and (max-width: 768px) {
  .c-detail__2colum-text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.c-detail__2colum-attend {
  font-size: 1.8rem;
  line-height: 2.5;
  margin-top: 50px;
  color: #363636;
}
@media screen and (max-width: 768px) {
  .c-detail__2colum-attend {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-top: 4vw;
  }
}
.c-detail__2colum-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 1.8rem;
  color: #363636;
}
@media screen and (max-width: 768px) {
  .c-detail__2colum-table {
    font-size: 1.3rem;
  }
}
.c-detail__2colum-table tr {
  border-bottom: 1px solid #cccccc;
}
.c-detail__2colum-table th {
  text-align: left;
  font-weight: 400;
  padding: 12px 0 12px 20px;
}
@media screen and (max-width: 768px) {
  .c-detail__2colum-table th {
    padding: 6px 0;
  }
}
.c-detail__2colum-table td {
  text-align: right;
  padding: 12px 30px 12px 0;
}
@media screen and (max-width: 768px) {
  .c-detail__2colum-table td {
    padding: 6px 0;
  }
}
.c-detail__2colum .c-detail__info-circle {
  font-weight: 400;
  color: #363636;
}

.p-index .l-header {
  padding-block: 35px;
}
@media screen and (max-width: 1500px) {
  .p-index .l-header {
    padding-block: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-index .l-header {
    padding-block: 2vw;
  }
}
.p-index .l-header nav {
  justify-content: flex-end;
}
.p-index__mv {
  background: url(../img/index/bg_mv@2x.jpg) center top/1860px no-repeat;
  height: 870px;
}
@media screen and (max-width: 768px) {
  .p-index__mv {
    background: url(../img/index/bg_mv_sp.jpg) center top/100% no-repeat;
    height: 129.0364583333vw;
    padding-bottom: 170vw;
  }
}
.p-index__mv .l-content__size-pc-1 {
  position: relative;
}
.p-index__mv-catch {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  padding-top: 48px;
  margin-bottom: 65px;
}
@media screen and (max-width: 980px) {
  .p-index__mv-catch {
    margin-bottom: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .p-index__mv-catch {
    font-size: 2.734375vw;
    padding-top: 3.6458333333vw;
    margin-bottom: 10.546875vw;
  }
}
.p-index__mv-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}
@media screen and (max-width: 980px) {
  .p-index__mv-logo {
    margin-inline: auto;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-index__mv-logo {
    width: 59.765625vw;
    margin-bottom: 0.9114583333vw;
  }
}
.p-index__mv-copy {
  margin-left: calc(50% - 47px);
  margin-bottom: 162px;
}
@media screen and (max-width: 980px) {
  .p-index__mv-copy {
    margin-left: calc(50% - 5vw);
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-index__mv-copy {
    margin-bottom: 24.7395833333vw;
    margin-left: 38.4114583333vw;
    width: 43.6197916667vw;
  }
}
.p-index__mv-address {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: -6px;
}
@media screen and (max-width: 768px) {
  .p-index__mv-address {
    font-size: 2.734375vw;
  }
}
.p-index__mv-tel {
  text-align: center;
  color: #27a7e0;
  font-size: 4.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-index__mv-tel {
    font-size: 6.7708333333vw;
  }
  .p-index__mv-tel a {
    color: #27a7e0;
  }
}
.p-index__mv-right {
  position: absolute;
  right: 0;
  top: 90px;
}
@media screen and (max-width: 1500px) {
  .p-index__mv-right {
    right: calc(50% - 550px);
  }
}
@media screen and (max-width: 1124px) {
  .p-index__mv-right {
    right: 0;
  }
}
@media screen and (max-width: 980px) {
  .p-index__mv-right {
    position: static;
    margin-left: calc(50% - 125px);
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-index__mv-right {
    position: absolute;
    right: calc(50% - 30vw);
    top: inherit;
    bottom: -82.1614583333vw;
    margin-bottom: 0;
    margin-left: calc(50% - 30vw);
  }
}
.p-index__mv-btn {
  background: url(../img/common/btn_header@2x.png) center top/100% no-repeat;
  width: 387px;
  margin-bottom: 4px;
}
@media screen and (max-width: 1500px) {
  .p-index__mv-btn {
    width: 250px;
    height: 86px;
  }
}
@media screen and (max-width: 768px) {
  .p-index__mv-btn {
    width: 60vw;
    height: 20vw;
    width: 58.7239583333vw;
    height: 19.7916666667vw;
  }
}
.p-index__mv-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 132px;
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 3px;
  transition: color 0.2s;
  color: #27a7e0;
}
.p-index__mv-btn a:hover {
  color: #1080b0;
}
@media screen and (max-width: 1500px) {
  .p-index__mv-btn a {
    height: 86px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-index__mv-btn a {
    height: 20vw;
    font-size: 4.5572916667vw;
    height: 19.7916666667vw;
  }
}
.p-index__mv-btn img {
  width: 32px;
  margin-right: 17px;
}
@media screen and (max-width: 1500px) {
  .p-index__mv-btn img {
    width: 24px;
    margin-right: 10px;
  }
}
.p-index .c-timetable__table {
  margin: 60px auto;
}
.p-index__special {
  margin-bottom: 108px;
}
@media screen and (max-width: 768px) {
  .p-index__special {
    margin-bottom: 20vw;
  }
}
.p-index__special .l-content__size-pc-1 {
  position: relative;
}
.p-index__special-catch {
  color: #ff9208;
  font-size: 1.8rem;
  font-weight: 700;
  transform: rotate(-15deg);
  position: absolute;
  top: 0;
  left: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__special-catch {
    font-size: 1.4rem;
  }
}
.p-index__special-ttl {
  display: flex;
  justify-content: center;
  padding-block: 60px 20px;
}
@media screen and (max-width: 768px) {
  .p-index__special-ttl {
    padding-block: 25vw 10vw;
  }
}
.p-index__special-text-1 {
  font-size: 2.6rem;
  text-align: center;
  color: #27a7e0;
  margin-bottom: 52px;
}
@media screen and (max-width: 768px) {
  .p-index__special-text-1 {
    font-size: 1.6rem;
    margin-bottom: 40vw;
  }
}
.p-index__special-text-2 {
  width: 594px;
  position: relative;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-index__special-text-2 {
    width: 70vw;
    margin-top: 4vw;
    margin-inline: auto;
  }
}
.p-index__special-text-3 {
  font-size: 1.8rem;
  margin-inline: auto;
  width: 660px;
}
@media screen and (max-width: 768px) {
  .p-index__special-text-3 {
    font-size: 1.4rem;
    width: inherit;
  }
}
.p-index__special-outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 105px;
}
.p-index__special-outer:before {
  position: absolute;
  top: 0;
  left: calc(50% - 480px);
  content: "";
  width: 960px;
  height: 360px;
  background: #fff286;
  border-radius: 480px/180px;
}
@media screen and (max-width: 1124px) {
  .p-index__special-outer:before {
    left: calc(50% - 38vw);
    width: 76vw;
    height: 28vw;
    border-radius: 38vw/14vw;
  }
}
@media screen and (max-width: 768px) {
  .p-index__special-outer:before {
    left: calc(50% - 43vw);
    width: 86vw;
    height: 38vw;
    border-radius: 43vw/19vw;
  }
}
.p-index__special-chara {
  width: 329px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-index__special-chara {
    position: absolute;
    top: -30vw;
    left: 0;
    width: 36vw;
  }
}
.p-index__special-img {
  width: 348px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-index__special-img {
    position: absolute;
    bottom: -20vw;
    right: 0;
    width: 40vw;
  }
}
.p-index__habit {
  background: linear-gradient(to bottom, transparent 60px, #e0f5ff 60px);
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-index__habit {
    background: linear-gradient(to bottom, transparent 40vw, #e0f5ff 40vw);
    padding-bottom: 0;
  }
}
.p-index__habit-inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-index__habit-inner {
    flex-direction: column-reverse;
  }
}
.p-index__habit-info {
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .p-index__habit-info {
    padding-top: 10vw;
  }
}
.p-index__habit-ttl {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-index__habit-ttl {
    font-size: 2.4rem;
    margin-bottom: 10vw;
  }
}
.p-index__habit-text {
  font-size: 1.8rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-index__habit-text {
    font-size: 1.4rem;
    margin-bottom: 10vw;
  }
}
@media screen and (max-width: 768px) {
  .p-index__habit-img {
    width: 70vw;
    margin-inline: auto;
  }
}
.p-index__voice {
  background: url(../img/index/bg_voice.svg) calc(50% + 150px) -510px/2170px no-repeat;
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .p-index__voice {
    background: url(../img/index/bg_voice.svg) calc(50% + 20vw) 200vw/170% no-repeat;
    margin-bottom: 20vw;
  }
}
.p-index__voice-ttl {
  padding-top: 120px;
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 57px;
  color: #ff8e01;
}
@media screen and (max-width: 768px) {
  .p-index__voice-ttl {
    padding-top: 20vw;
    font-size: 2.6rem;
    margin-bottom: 10vw;
  }
}
.p-index__voice-list-1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-index__voice-list-1 {
    display: block;
    margin-bottom: 10vw;
  }
}
.p-index__voice-list-1 li {
  width: 360px;
  height: 360px;
  background: #28a7e1;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  .p-index__voice-list-1 li {
    width: 30vw;
    height: 30vw;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-index__voice-list-1 li {
    width: 70vw;
    height: 70vw;
    margin-inline: auto;
  }
  .p-index__voice-list-1 li + li {
    margin-top: 6vw;
  }
}
.p-index__voice-list-2 {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-index__voice-list-2 {
    display: block;
    margin-bottom: 10vw;
  }
}
.p-index__voice-list-2 li {
  width: 360px;
  height: 360px;
  background: #ffa801;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  .p-index__voice-list-2 li {
    width: 30vw;
    height: 30vw;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-index__voice-list-2 li {
    width: 70vw;
    height: 70vw;
    margin-inline: auto;
  }
}
.p-index__voice-list-2 li + li {
  margin-left: 180px;
}
@media screen and (max-width: 1500px) {
  .p-index__voice-list-2 li + li {
    margin-left: 10vw;
  }
}
@media screen and (max-width: 768px) {
  .p-index__voice-list-2 li + li {
    margin-left: auto;
    margin-top: 6vw;
  }
}
.p-index__voice-text-1 {
  font-size: 3.6rem;
  font-weight: 700;
  color: #ff8e01;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-index__voice-text-1 {
    margin-bottom: 5vw;
  }
}
.p-index__voice-text-2 {
  font-size: 3rem;
  font-weight: 700;
  color: #27a7e0;
  padding-top: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-index__voice-text-2 {
    font-size: 1.8rem;
    padding-top: 5vw;
  }
}
.p-index__voice-text-2-wrap {
  background: url(../img/index/img_voice@2x.png) center top/1920px no-repeat;
  height: 211px;
}
@media screen and (max-width: 768px) {
  .p-index__voice-text-2-wrap {
    background: url(../img/index/img_voice@2x.png) center bottom/960px no-repeat;
    height: 105px;
  }
}
.p-index__voice-btn {
  margin-inline: -6px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-index__voice-btn {
    margin-bottom: 5vw;
  }
}
.p-index__voice-btn a {
  background: url(../img/index/btn_voice@2x.png) center top/100% no-repeat;
  width: 1452px;
  height: 132px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.6rem;
  font-weight: 700;
  padding-bottom: 6px;
  transition: color 0.2s;
  color: #27a7e0;
}
.p-index__voice-btn a:hover {
  color: #1080b0;
}
@media screen and (max-width: 1500px) {
  .p-index__voice-btn a {
    width: 90%;
    margin-inline: auto;
    height: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .p-index__voice-btn a {
    font-size: 2rem;
    background: url(../img/index/btn_voice_sp@2x.png) center top/100% no-repeat;
    height: 16vw;
  }
}

.p-subcon__head {
  margin-block: 60px 90px;
}
@media screen and (max-width: 768px) {
  .p-subcon__head {
    margin-block: 2vw 10vw;
  }
}
.p-subcon__head-inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1500px) {
  .p-subcon__head-inner {
    display: block;
  }
}
.p-subcon__head-left {
  width: 780px;
}
@media screen and (max-width: 1500px) {
  .p-subcon__head-left {
    margin-inline: auto;
  }
}
@media screen and (max-width: 980px) {
  .p-subcon__head-left {
    width: inherit;
  }
}
.p-subcon__head-right {
  width: 600px;
}
@media screen and (max-width: 1500px) {
  .p-subcon__head-right {
    margin-inline: auto;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-subcon__head-right {
    width: inherit;
  }
}
.p-subcon__head-list {
  display: flex;
  justify-content: space-between;
  margin-right: -6px;
  margin-bottom: 8px;
}
@media screen and (max-width: 980px) {
  .p-subcon__head-list {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .p-subcon__head-list {
    display: block;
  }
}
.p-subcon__head-btn {
  background: url(../img/common/btn_header@2x.png) center top/100% no-repeat;
  width: 387px;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .p-subcon__head-btn {
    width: 60vw;
    margin-inline: auto;
    margin-bottom: 4vw;
  }
}
.p-subcon__head-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 132px;
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 3px;
  transition: color 0.2s;
  color: #27a7e0;
}
.p-subcon__head-btn a:hover {
  color: #1080b0;
}
@media screen and (max-width: 768px) {
  .p-subcon__head-btn a {
    font-size: 1.8rem;
    height: 20vw;
  }
}
.p-subcon__head-btn img {
  width: 32px;
  margin-right: 17px;
}
@media screen and (max-width: 1500px) {
  .p-subcon__head-btn img {
    width: 24px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 980px) {
  .p-subcon__head-bnr {
    display: flex;
    justify-content: center;
  }
}
.p-subcon__ttl {
  background: linear-gradient(to right, #e0f5ff 0%, transparent 100%);
  border-radius: 60px 0 0 60px;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  color: #27a7e0;
  padding: 40px 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-subcon__ttl {
    font-size: 2.4rem;
    padding: 4vw 6vw;
    margin-bottom: 6vw;
  }
}
.p-subcon .c-condition__box {
  padding-inline: 60px;
  margin-inline: 60px;
  margin-top: -70px;
}
@media screen and (max-width: 1500px) {
  .p-subcon .c-condition__box {
    margin-inline: 2.7777777778vw;
  }
}
@media screen and (max-width: 1124px) {
  .p-subcon .c-condition__box {
    padding-inline: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-subcon .c-condition__box {
    padding: 4vw;
    margin-top: 0;
    margin-inline: 0;
  }
}

.p-clinic__contents {
  margin-bottom: 120px;
}
@media screen and (max-width: 980px) {
  .p-clinic__contents {
    margin-bottom: 20vw;
  }
}
.p-clinic__contents-box {
  display: flex;
}
@media screen and (max-width: 980px) {
  .p-clinic__contents-box {
    display: block;
  }
}
.p-clinic__contents-box-img {
  width: 660px;
}
@media screen and (max-width: 1500px) {
  .p-clinic__contents-box-img {
    width: 45.8333333333vw;
  }
}
@media screen and (max-width: 980px) {
  .p-clinic__contents-box-img {
    margin-inline: auto;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-clinic__contents-box-img {
    width: 60vw;
  }
}
.p-clinic__contents-box-info {
  width: 720px;
}
@media screen and (max-width: 1500px) {
  .p-clinic__contents-box-info {
    width: 50vw;
  }
}
@media screen and (max-width: 980px) {
  .p-clinic__contents-box-info {
    width: 100%;
  }
}
.p-clinic__contents-box-catch {
  font-size: 3rem;
  color: #363636;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-clinic__contents-box-catch {
    font-size: 2.4rem;
  }
}
.p-clinic__contents-box-text {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.5;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-clinic__contents-box-text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 8vw;
  }
}
.p-clinic__contents-box-sign {
  font-size: 1.8rem;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .p-clinic__contents-box-sign {
    font-size: 1.4rem;
  }
}
.p-clinic__contents-box-ttl {
  font-size: 3rem;
  font-weight: 700;
  color: #27a7e0;
  margin-block: -10px 38px;
}
@media screen and (max-width: 768px) {
  .p-clinic__contents-box-ttl {
    font-size: 2.4rem;
    margin-block: -6vw 8vw;
  }
}
.p-clinic__contents-box-list li {
  display: flex;
  margin-bottom: 22px;
}
.p-clinic__contents-box-list li .num {
  width: 45px;
  height: 54px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  padding-top: 4px;
  background: url(../img/clinic/ico_teeth.svg) left center/100% no-repeat;
  margin-right: 15px;
}
.p-clinic__contents-box-list-text {
  font-size: 1.8rem;
  font-weight: 700;
  width: calc(100% - 60px);
  margin-top: -8px;
}
@media screen and (max-width: 768px) {
  .p-clinic__contents-box-list-text {
    font-size: 1.4rem;
  }
}
.p-clinic__contents-box-list-text .blue {
  font-size: 3rem;
  color: #27a7e0;
}
@media screen and (max-width: 768px) {
  .p-clinic__contents-box-list-text .blue {
    font-size: 2.4rem;
  }
}
.p-clinic__contents-box-subttl {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-clinic__contents-box-subttl {
    font-size: 1.8rem;
  }
}
.p-clinic__contents-box-btn {
  margin-top: 29px;
}
.p-clinic__contents-box-btn a {
  background: url(../img/clinic/btn@2x.png) left center/100% no-repeat;
  width: 732px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.1rem;
  font-weight: 700;
  padding-bottom: 4px;
  transition: color 0.2s;
  color: #27a7e0;
}
.p-clinic__contents-box-btn a:hover {
  color: #1080b0;
}
@media screen and (max-width: 1500px) {
  .p-clinic__contents-box-btn a {
    width: 50.8333333333vw;
    height: 5vw;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 980px) {
  .p-clinic__contents-box-btn a {
    width: 732px;
    height: 72px;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 768px) {
  .p-clinic__contents-box-btn a {
    font-size: 1.8rem;
    background: url(../img/index/btn_youtube@2x.png) center top/100% no-repeat;
    width: 100%;
    height: 27vw;
    padding-inline: 4vw;
  }
}
.p-clinic__contents:nth-child(even) .p-clinic__contents-box {
  flex-direction: row-reverse;
}
.p-clinic__contents:nth-child(even) .p-clinic__contents-box-info {
  width: 660px;
  margin-right: 60px;
}
@media screen and (max-width: 1500px) {
  .p-clinic__contents:nth-child(even) .p-clinic__contents-box-info {
    width: 45.8333333333vw;
  }
}
@media screen and (max-width: 980px) {
  .p-clinic__contents:nth-child(even) .p-clinic__contents-box-info {
    width: 100%;
    margin-right: 0;
  }
}
.p-clinic__contents:nth-child(odd) .p-clinic__contents-box-info {
  margin-left: 60px;
}
@media screen and (max-width: 980px) {
  .p-clinic__contents:nth-child(odd) .p-clinic__contents-box-info {
    margin-left: 0;
  }
}

.p-access__contents {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-access__contents {
    margin-bottom: 20vw;
  }
}
.p-access__contents-map {
  width: 1320px;
  margin-inline: auto;
}
@media screen and (max-width: 1500px) {
  .p-access__contents-map {
    width: 88vw;
  }
}
@media screen and (max-width: 980px) {
  .p-access__contents-map {
    padding-top: 68.18%;
    position: relative;
  }
}
.p-access__contents-map iframe {
  width: 100%;
  height: 900px;
  border-radius: 30px;
}
@media screen and (max-width: 980px) {
  .p-access__contents-map iframe {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.p-access__contents-carmap-img {
  width: 1320px;
  height: 900px;
  padding: 50px 20px;
  border-radius: 30px;
  border: 6px solid #27a7e0;
  margin-inline: auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 1500px) {
  .p-access__contents-carmap-img {
    width: 88vw;
    height: 68.18%;
  }
}
@media screen and (max-width: 768px) {
  .p-access__contents-carmap-img {
    padding: 8vw 4vw;
    border: 4px solid #27a7e0;
    margin-bottom: 15vw;
  }
}
.p-access__contents-carmap-ttl {
  display: inline-flex;
  font-size: 3rem;
  font-weight: 700;
  color: #27a7e0;
  border-bottom: 3px solid #27a7e0;
  padding-inline: 90px;
}
@media screen and (max-width: 768px) {
  .p-access__contents-carmap-ttl {
    font-size: 2.2rem;
    padding-inline: 10px;
  }
}
.p-access__contents-carmap-ttl img {
  width: 50px;
}
@media screen and (max-width: 768px) {
  .p-access__contents-carmap-ttl img {
    width: 40px;
  }
}
.p-access__contents-carmap-ttl span {
  margin-inline: 52px;
}
@media screen and (max-width: 768px) {
  .p-access__contents-carmap-ttl span {
    font-size: 2.2rem;
    margin-inline: 20px;
  }
}
.p-access__contents-carmap-ttl-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-access__contents-carmap-ttl-wrap {
    margin-bottom: 10vw;
  }
}
.p-access__contents-carmap-inner {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 980px) {
  .p-access__contents-carmap-inner {
    display: block;
  }
}
.p-access__contents-carmap-text {
  width: 600px;
  font-size: 2.4rem;
  line-height: 2.5;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 1124px) {
  .p-access__contents-carmap-text {
    width: 48%;
    font-size: 2rem;
  }
}
@media screen and (max-width: 980px) {
  .p-access__contents-carmap-text {
    width: 80%;
    margin-inline: auto;
    line-height: 1.8;
  }
  .p-access__contents-carmap-text + .p-access__contents-carmap-text {
    margin-top: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .p-access__contents-carmap-text {
    width: 100%;
    font-size: 1.6rem;
  }
}

.p-tonguepillow__list {
  margin: 60px 60px 90px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1500px) {
  .p-tonguepillow__list {
    flex-wrap: wrap;
    justify-content: center;
    margin-inline: 6.9444444444vw;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 980px) {
  .p-tonguepillow__list {
    margin-inline: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-tonguepillow__list {
    justify-content: space-between;
    margin-bottom: 10vw;
  }
}
.p-tonguepillow__item {
  width: 315px;
  border: 2px solid #27a7e0;
  border-radius: 6px;
  padding: 30px 7px 13px;
}
@media screen and (max-width: 1500px) {
  .p-tonguepillow__item {
    margin-bottom: 30px;
    margin-inline: 10px;
    padding: 3vw 1vw 2vw;
  }
}
@media screen and (max-width: 768px) {
  .p-tonguepillow__item {
    width: 48%;
    margin-inline: 0;
  }
}
.p-tonguepillow__item-text {
  font-size: 1.8rem;
  font-weight: 300;
  margin-left: 7px;
  margin-bottom: 30px;
  display: flex;
  color: #363636;
}
@media screen and (max-width: 768px) {
  .p-tonguepillow__item-text {
    font-size: 1.4rem;
    margin-bottom: 2vw;
  }
}
.p-tonguepillow__item-text:before {
  content: "";
  background: #27a7e0;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 13px;
  margin-top: 7px;
}
@media screen and (max-width: 768px) {
  .p-tonguepillow__item-text:before {
    width: 14px;
    height: 14px;
    margin-right: 7px;
  }
}
.p-tonguepillow__item-ttl {
  margin-left: 20px;
  line-height: 1.2;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .p-tonguepillow__item-ttl {
    margin-bottom: 2vw;
  }
}
.p-tonguepillow__item-ttl a {
  font-size: 2.4rem;
  font-weight: 400;
  transition: color 0.2s;
  color: #28a7e1;
}
.p-tonguepillow__item-ttl a:hover {
  color: #1080b0;
}
@media screen and (max-width: 768px) {
  .p-tonguepillow__item-ttl a {
    font-size: 1.8rem;
  }
}
.p-tonguepillow__item-img a {
  transition: opacity 0.2s;
}
.p-tonguepillow__item-img a:hover {
  opacity: 0.8;
}</pre></body></html>