@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  color: #222;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  width: 100%;
}

a {
  color: #222;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
}

a:hover {
  color: #222;
  text-decoration: none;
  opacity: 0.65;
}

a:active,
a:hover {
  outline-width: 0;
}

li {
  margin: 0;
  list-style: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
dd,
dt,
dl {
  margin: 0;
}

figcaption,
figure,
main,
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button {
  border: none;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* Grid System width Flex */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/*margin*/
.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

/* form input*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
select {
  font-size: 16px;
  font-size: 1.6rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  margin: 2px;
  padding: 0 0.3em;
  width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
select:focus {
  outline: none;
  border-color: #000;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

select {
  font-size: 13px;
  font-size: 1.3rem;
  height: 2.5em;
  padding: 0.5em;
  width: auto;
  min-width: 7em;
}

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 0 0.3em;
  resize: vertical;
  width: 100%;
}
textarea :focus {
  outline: none;
  border-color: #000;
}

input[type="checkbox"],
input[type="radio"] {
  background: #fff;
  cursor: pointer;
  margin-right: 0.5em;
}

textarea::placeholder,
input::placeholder {
  font-size: 1.4rem;
  color: #c5c5c5;
}

/* wordpress pager */
.pager {
  display: flex;
  height: 35px;
  margin-bottom: 60px;
  max-width: 100%;
  padding: 30px 0;
  position: relative;
}
.pager a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  position: relative;
  line-height: 1.42857143;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  color: #000;
  font-weight: bold;
  margin: 5px;
  padding: 5px 10px;
}

.pc .pager a:active,
.pc .pager a:hover,
.pc .pager a:focus {
  border-color: #000;
  color: #000;
}

.pager .previous,
.pager .next,
.pager .back {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pager .previous a {
  padding-left: 1.5em;
}

.pager .previous a:before {
  content: "≪";
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
}

.pager .next a {
  padding-right: 1.5em;
}
.pager .next a:after {
  content: "≫";
  content: "";
  position: absolute;
  right: 5px;
  top: 4px;
}

.pager .back a {
  padding: 5px;
}

/* wordpress pagination */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.pagination > li {
  position: relative;
}

.pagination > li > span,
.pagination > li > a {
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  color: #231815;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}

.pagination > li > span {
  border-color: #231815;
  cursor: default;
}

.pc .pagination > li > a:active,
.pc .pagination > li > a:hover,
.pc .pagination > li > a:focus {
  border-color: #000;
  color: #000;
}

.pagination > li span.dot {
  border: none;
  width: 1em;
}

/* wordpress wp-pagenavi */
.wp-pagenavi {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 1.6rem;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #000;
  color: #000;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}
.wp-pagenavi .current {
  border: 0;
  color: #fff;
  background: #000;
  font-weight: normal;
}
.wp-pagenavi a:hover {
  border: 1px solid #000;
}

/* wordpress breadcrumbs */
.txt_ellipsis .breadcrumbs span:last-of-type {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 130px;
  display: inline-block;
  vertical-align: bottom;
}

.breadcrumbs {
  margin: 2% 0;
  font-size: 1.2rem;
}
.breadcrumbs .container {
  margin-left: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.breadcrumbs a {
  color: #231815;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #000;
}
.breadcrumbs ul,
.breadcrumbs ol {
  list-style: none;
  padding: 0;
}
.breadcrumbs li {
  display: inline;
}
.breadcrumbs li:before {
  content: ">";
  margin: 0 10px;
}
.breadcrumbs li:first-child:before {
  display: none;
}

@media screen and (max-width: 560px) {
  .breadcrumbs {
    font-size: 1rem;
  }
  .breadcrumbs li:before {
    margin: 0 5px;
  }
}
/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img,
.slick-initialized .slick-slide {
  display: block;
}

.slick-slide.slick-loading img,
.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick/slick.eot");
  src: url("./fonts/slick/slick.eot?#iefix") format("embedded-opentype"),
    url("./fonts/slick/slick.woff") format("woff"),
    url("./fonts/slick/slick.ttf") format("truetype"),
    url("./fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  width: 16px;
  height: 31px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: 0.65;
  color: transparent;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25;
}

.slick-prev {
  left: 30px;
  background: url(../img/common/btn-prev.png) no-repeat center center;
}

.slick-next {
  right: 30px;
  background: url(../img/common/btn-next.png) no-repeat center center;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #aaa;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots .slick-active button:before {
  color: #000;
  opacity: 0.75;
}

.slick-archive {
  padding-top: 10px;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.slick-archive__item {
  padding: 5px;
}

.slick-archive__item a {
  display: block;
  max-width: 350px;
  margin: auto;
  color: #231815;
  text-decoration: none;
  position: relative;
}

.slick-archive__item a:hover {
  opacity: 0.65;
}

.slick-archive__date {
  margin-top: 5px;
  display: block;
}

.slick-archive__title {
  display: block;
  font-weight: bold;
}

.slick-archive__label {
  background-color: #464a4c;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.2em 2em;
}

@media screen and (max-width: 560px) {
  .slick-archive__date,
  .slick-archive__label {
    font-size: 1rem;
  }

  .slick-archive__title {
    font-size: 1.2rem;
  }
}
/***************************

layout/header.scss

***************************/
/* toggle button */
.toggle {
  display: none;
}

@media screen and (max-width: 768px) {
  .toggle {
    cursor: pointer;
    display: inline-block;
    background: none;
    border: none;
    outline: none;
    position: fixed;
    width: 56px;
    height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    right: 20px;
    text-align: center;
    top: 50%;
    translate: 0 -50%;
    z-index: 7;
    border: 1px solid #0b68c8;
    border-radius: 7px;
  }

  .toggle__bar {
    position: relative;
    margin: 8px auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .toggle__bar,
  .toggle__bar::before,
  .toggle__bar::after {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #0b68c8;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

  .toggle__bar::before,
  .toggle__bar::after {
    position: absolute;
    content: "";
  }

  .toggle__bar::before {
    top: -6px;
  }

  .toggle__bar::after {
    top: 6px;
  }

  .toggle__taxt {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: #0b68c8;
    margin-top: 3px;
  }
}
.toggle.active .toggle__bar {
  background-color: transparent;
}

.toggle.active .toggle__bar::before {
  -webkit-transform: translateY(6px) rotate(45deg);
  -ms-transform: translateY(6px) rotate(45deg);
  transform: translateY(6px) rotate(45deg);
}

.toggle.active .toggle__bar::after {
  -webkit-transform: translateY(-6px) rotate(-45deg);
  -ms-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

/* Hamburger menu */
.gnav {
  line-height: 1.6;
  margin: 0;
}

/***************************

 header

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

.fixedmenu {
  translate: 0;
}

.header_inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  gap: 0 30px;
}
@media screen and (min-width: 1501px) {
  .header_inner {
    padding: 15px 50px;
  }
}

.header_inner_block {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 1501px) {
  .header_inner_block {
    gap: 50px;
  }
}

.gnav ul {
  width: 100%;
  gap: 10px 35px;
}
.gnav .treatment-flag {
  position: relative;
  display: block;
}
.gnav .treatment-flag a:hover {
  cursor: pointer;
}
.gnav .treatment-flag i {
  color: #0099dc;
  font-size: 1.4rem;
}
.gnav a {
  letter-spacing: 0.05em;
}

.under-nav-wrap {
  display: none;
  position: absolute;
  width: 250px;
  left: 50%;
  translate: -50% 0;
  z-index: 99;
}
.under-nav-wrap.open {
  display: block;
}
.under-nav-wrap .under-nav {
  width: 100%;
}
.under-nav-wrap .under-nav li {
  text-align: center;
}
.under-nav-wrap .under-nav li:not(:last-child) {
  border-bottom: 1px solid #fff;
}
.under-nav-wrap .under-nav a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  background: rgba(0, 153, 220, 0.7);
}
.under-nav-wrap .under-nav a:hover {
  opacity: 1;
  background: #0099dc;
}

.header_addr ul {
  background: #0099dc;
  border-radius: 7px;
}
.header_addr ul .tel {
  border-right: 1px solid #fff;
  font-family: "Public Sans", sans-serif;
  font-weight: 200;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
}
.header_addr ul .web {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.header_addr ul a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: #fff;
}

@media screen and (max-width: 1500px) {
  .header .logo {
    width: calc(100% - 1010px);
  }
}
@media screen and (max-width: 1250px) {
  .header_inner {
    padding-bottom: 50px;
  }

  .header .logo {
    width: 180px;
  }

  .gnav {
    position: fixed;
    width: 90%;
    bottom: 10px;
    left: 5%;
  }
}
@media screen and (min-width: 769px) {
  .gnav {
    display: flex !important;
    height: inherit !important;
  }
}
@media screen and (max-width: 768px) {
  .header {
    translate: 0;
  }

  .header .logo {
    width: auto;
  }

  .header_inner {
    padding: 10px 20px;
    height: 75px;
  }

  .header_inner_block {
    padding-right: 66px;
  }

  .header_addr {
    width: 340px;
  }

  .header_addr ul a {
    padding: 10px;
  }

  .gnav {
    display: none;
    left: 0;
    bottom: inherit;
    top: 11.5vw;
    width: 100%;
    z-index: 6;
    background: #fff;
    /* 250708 */
    top: 75px;
    max-height: calc(100vh - 75px);
    overflow: scroll;
  }

  .gnav ul {
    display: block;
    width: 100%;
    background: #fff;
  }
  .gnav ul li:not(:last-child) {
    border-bottom: 1px solid #ccc;
  }
  .gnav ul li a {
    display: block;
    padding: 10px 20px;
  }
  .gnav ul .treatment-flag {
    position: relative;
  }
  .gnav ul .treatment-flag a:hover {
    cursor: pointer;
  }
  .gnav ul .treatment-flag i {
    position: absolute;
    right: 20px;
    top: 17px;
  }

  .under-nav-wrap {
    position: relative;
    width: 100%;
  }
}
@media screen and (min-width: 651px) {
  .fixed_addr {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .header_inner_block .header_addr {
    display: none;
  }

  .header .logo {
    max-width: 180px;
  }

  .fixed_addr {
    display: block;
  }

  .gnav {
    top: 75px;
  }
}
.first-nav-wrap {
  width: 100%;
  padding: 30px 30px 20px;
}
@media screen and (min-width: 1501px) {
  .first-nav-wrap {
    padding: 30px 50px 20px;
  }
}

.first-nav_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.first-nav {
  gap: 10px 35px;
}

.first-nav-flag {
  position: relative;
  display: block;
}
.first-nav-flag i {
  color: #0099dc;
  font-size: 1.4rem;
}
.first-nav-flag a {
  letter-spacing: 0.05em;
}
.first-nav-flag a:hover {
  cursor: pointer;
}

.fixed_addr {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 99;
}
.fixed_addr ul {
  width: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top: 1px solid #fff;
}
.fixed_addr ul li {
  width: 50%;
}
.fixed_addr ul .tel a {
  text-decoration: none;
}
.fixed_addr ul a {
  justify-content: center;
}

@media screen and (max-width: 950px) {
  .first-nav_inner .logo {
    width: calc(100% - 580px);
  }
}
@media screen and (max-width: 768px) {
  .first-nav-wrap {
    display: none;
  }
}
@media screen and (max-width: 425px) {
  .header_addr ul .tel {
    font-size: 4vw;
  }
}
/***************************

layout/footer.scss

***************************/
.footer {
  position: relative;
  padding: 100px 50px 0;
  background: #0099dc;
  margin-top: 5.5vw;
}
.footer:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 5.5vw;
  background: url(../img/common/footer-parts.png) no-repeat center bottom;
  background-size: 100% auto;
  top: -5vw;
  left: 0;
}

.footer_inner {
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
}

.footer_content {
  width: 100%;
  display: flex;
  background: #fff;
  border-radius: 10px;
}
.footer_content .addr {
  width: 50%;
  padding: 70px 50px;
}
.footer_content .addr_inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.footer_content .addr_inner .logo {
  margin-bottom: 30px;
}
.footer_content .addr_inner .g-35 {
  gap: 5px 35px;
}
.footer_content .addr_inner .timetable {
  margin-top: 30px;
  margin-bottom: 15px;
}
.footer_content .addr_inner .w13 {
  width: 13px;
}
.footer_content .addr_inner .txt_under {
  border-bottom: 2px solid #0099dc;
}
.footer_content .addr_inner .flag {
  position: relative;
  width: 100%;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.05em;
  background: #d9f0fa;
  border-radius: 17px;
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 5px;
}
.footer_content .addr_inner .flag:after {
  position: absolute;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #d9f0fa;
  bottom: -6px;
  left: 50%;
  translate: -50% 0;
}

.footer_addr_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer_addr_contact a {
  display: flex;
  align-items: center;
}
.footer_addr_contact .tel a {
  position: relative;
  font-family: "Public Sans", sans-serif;
  font-weight: 200;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  color: #0099dc;
  gap: 10px;
  text-decoration: none;
}
.footer_addr_contact .web a {
  position: relative;
  justify-content: center;
  width: 285px;
  background: #0099dc;
  border-radius: 7px;
  padding: 15px 50px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #fff;
}
.footer_addr_contact .web a img {
  position: absolute;
  left: 10px;
  top: 50%;
  translate: 0 -50%;
}

.footer_gmap {
  position: relative;
  width: 50%;
}
.footer_gmap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 2;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.footer_gmap_text {
  position: absolute;
  width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px dotted #0099dc;
  border-radius: 100%;
  background: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #0099dc;
  text-align: center;
  line-height: 1.5;
  z-index: 3;
  top: -40px;
  right: 40px;
}

.timetable {
  width: 100%;
  border: 1px solid #0099dc;
  border-radius: 7px;
  padding: 10px 30px;
}
.timetable div {
  padding: 10px 0;
}
.timetable div:not(:last-child) {
  border-bottom: 1px solid #e0e5eb;
}
.timetable div p {
  font-size: 1.5rem;
  line-height: 1.2;
}
.timetable div p:first-child {
  width: 115px;
}
.timetable div p:not(:first-child) {
  width: 40px;
  text-align: center;
}
.timetable div .w10 {
  width: 10px;
}

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

@media screen and (max-width: 1200px) {
  .footer_content .addr {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 1024px) {
  .footer_content {
    flex-wrap: wrap;
  }

  .footer_content .addr {
    width: 100%;
  }

  .footer_gmap {
    width: 100%;
    height: 40vw;
    margin-top: 40px;
  }
  .footer_gmap iframe {
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 50px 30px 0;
  }

  .footer_content .addr {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 650px) {
  .footer {
    padding-bottom: 55px;
  }

  .footer_addr_contact a {
    display: flex !important;
  }
}
@media screen and (max-width: 500px) {
  .footer {
    padding: 50px 15px 55px;
  }

  .footer_content .addr_inner .timetable {
    padding: 10px 15px;
  }

  .timetable div p {
    font-size: 1.3rem;
  }

  .timetable div p:first-child {
    width: 90px;
  }

  .timetable div p:not(:first-child) {
    width: 33px;
    font-size: 1.1rem;
  }

  .footer_gmap {
    height: 50vh;
  }

  .footer_gmap_text {
    width: 90px;
    height: 90px;
    font-size: 1.1rem;
    right: 20px;
  }
}
.footer_nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  padding: 70px 7vw;
  margin-top: 10px;
  gap: 20px 40px;
}
@media screen and (min-width: 1501px) {
  .footer_nav {
    padding: 70px 120px;
  }
}

.footer_nav_ttl {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #0099dc;
}

.footer_nav_inner {
  display: flex;
  gap: 20px 30px;
}
.footer_nav_inner ul:not(:last-child) {
  width: 220px;
}
.footer_nav_inner ul:not(:last-child) li {
  width: 100%;
  border-bottom: 1px solid #e0e5eb;
  padding: 10px 0;
}
.footer_nav_inner ul:not(:last-child) a {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  gap: 10px;
}
.footer_nav_inner ul:not(:last-child) a i {
  color: #0099dc;
}
.footer_nav_inner ul:not(:last-child) a:hover i {
  translate: 5px 0;
  transition: all 0.6s;
}
.footer_nav_inner ul:last-child li:not(:last-child) {
  margin-bottom: 15px;
}

.footer .copy {
  padding: 30px 15px;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .footer_nav {
    padding: 50px 30px;
  }

  .footer_nav_inner {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .footer_nav {
    padding: 30px 15px;
    gap: 10px;
  }

  .footer .copy {
    padding: 20px 15px;
  }
}
@media screen and (max-width: 600px) {
  .footer_nav_inner ul:not(:last-child) {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 425px) {
  .footer_nav_inner {
    gap: 0;
  }

  .footer_nav_inner ul:not(:last-child) {
    width: 100%;
  }

  .footer_nav_inner ul:last-child {
    margin-top: 20px;
  }
}
/*////////////////////////

 user common css

////////////////////////*/
.container_l {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 600px) {
  .container_l {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.sp_550 {
  display: none;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.vt_align_top {
  vertical-align: top;
}

.wd_100 {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .main {
    margin-top: 11.5vw;
  }
}
@media screen and (min-width: 651px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 650px) {
  a[href^="tel:"] {
    text-decoration: underline;
    display: inline-block;
  }

  .main {
    margin-top: 70px;
  }
}
@media screen and (max-width: 550px) {
  .pc_550 {
    display: none;
  }

  .sp_550 {
    display: block;
  }
}
/*////////////////////////

fonts

////////////////////////*/
.public_sans {
  font-family: "Public Sans", sans-serif;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

.kosugi_maru {
  font-family: "Kosugi Maru", sans-serif;
}

.exLight {
  font-weight: 200;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semiBold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.exBold {
  font-weight: 800;
}

.black {
  font-weight: 900;
}

.fz9 {
  font-size: 0.9rem;
}

.fz11 {
  font-size: 1.1rem;
}

.fz13 {
  font-size: 1.3rem;
}

.fz14 {
  font-size: 1.4rem;
}

.fz18 {
  font-size: 1.8rem;
}

.fz25 {
  font-size: 2.5rem;
}

.fz37 {
  font-size: clamp(30px, 7vw, 37px);
}

.ls5 {
  letter-spacing: 0.05em;
}

.lh2 {
  line-height: 2;
}

.lh18 {
  line-height: 1.8;
}

.lh12 {
  line-height: 1.2;
}

.lh1 {
  line-height: 1;
}

.g-10 {
  gap: 10px;
}

.col_lightBlue {
  color: #0099dc;
}

/***************************

object/project/effects.scss

***************************/
/*ロード時にフェードイン*/
.fadein {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*スクロールフェードイン*/
.fadeInTop {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop;
  visibility: visible !important;
}

@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInBottom {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
  visibility: visible !important;
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInLeft {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  visibility: visible !important;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  visibility: visible !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes aboutText {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@-webkit-keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes faq {
  0% {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  100% {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.8;
    visibility: visible;
  }
}
/*////////////////////////

btn

////////////////////////*/
.btn-A {
  display: block;
  max-width: 240px;
  width: 100%;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  background: #0099dc;
  border-radius: 7px;
  padding: 15px 20px;
}
.btn-A i {
  margin-left: 15px;
}

.btn-B {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.btn-B span {
  border-bottom: 1px solid #222;
}
.btn-B i {
  width: 24px;
  height: 24px;
  font-size: 1rem;
  color: #fff;
  background: #0099dc;
  border-radius: 100%;
  text-align: center;
  line-height: 24px;
}

.btn-center {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .tab-center {
    margin: 0 auto;
  }
}
/*////////////////////////

hdg__

////////////////////////*/
/***************************

object/project/top.scss

***************************/
.top01 {
  width: 100%;
}

.main-visual {
  position: relative;
  background: url(../img/top/main-visual-back.png) no-repeat left bottom;
  background-size: 72vw auto;
}
.main-visual:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 30px;
  background: #fff;
  bottom: -1px;
  left: 0;
  border-radius: 36px 36px 0 0;
  z-index: 3;
}

.mv-innerWrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .mv-innerWrap {
    position: absolute;
    padding-bottom: 80px;
    width: 27vw;
    z-index: 2;
    left: 0;
    top: 50%;
    translate: 0 -50%;
  }
}
.mv-innerWrap .mv-inner_ttl {
  font-size: 4.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #0b68c8;
}
@media screen and (min-width: 1025px) {
  .mv-innerWrap .mv-inner_ttl {
    writing-mode: vertical-rl;
  }
}
.mv-innerWrap .mv-inner_ttl span {
  color: #0099dc;
}
@media screen and (min-width: 1025px) {
  .mv-innerWrap .mv-inner_ttl span {
    padding-top: 1em;
  }
}
.mv-innerWrap p {
  font-size: 1.8rem;
  line-height: 2.2;
  letter-spacing: 0.06em;
}

.mv-imageWrap {
  position: relative;
  width: 100%;
}
.mv-imageWrap .mv-image {
  display: block;
  width: 72vw;
  margin-left: auto;
}
.mv-imageWrap .mv-image img {
  width: 100%;
}
.mv-imageWrap .flag {
  position: absolute;
  width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px dotted #0099dc;
  border-radius: 100%;
  background: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #0099dc;
  text-align: center;
  line-height: 1.5;
  z-index: 3;
  bottom: 6vw;
  left: 23vw;
  z-index: 3;
}
@media screen and (min-width: 1501px) {
  .mv-imageWrap .flag {
    bottom: 9vw;
  }
}
.mv-imageWrap .mv-text-wrap {
  position: absolute;
  width: 95%;
  bottom: 25px;
  text-align: center;
  left: 2.5%;
  z-index: 2;
}

.mv-nav {
  position: absolute;
  right: 30px;
  bottom: 6vw;
  z-index: 3;
}
@media screen and (min-width: 1501px) {
  .mv-nav {
    bottom: 7vw;
  }
}
.mv-nav ul {
  border: 1px solid #0099dc;
  border-radius: 7px;
  gap: 1px;
}
.mv-nav ul li img {
  width: 30px;
}
.mv-nav ul a {
  height: 52px;
}
.mv-nav ul .news a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
  background: #fff;
  border-radius: 7px 0 0 7px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #0099dc;
}
.mv-nav ul .tel a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: #0099dc;
  font-family: "Public Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 200;
  letter-spacing: 0.05em;
  color: #fff;
}
.mv-nav ul .web a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
  background: #0099dc;
  border-radius: 0 7px 7px 0;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .main-visual {
    background-size: 82vw auto;
  }

  .mv-innerWrap {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding: 50px 60px 40px;
  }

  .mv-imageWrap .mv-image {
    width: 82vw;
  }

  .mv-imageWrap .flag {
    left: 10vw;
  }
}
@media screen and (max-width: 768px) {
  .main-visual {
    background: none;
  }

  .mv-imageWrap .mv-image {
    width: 100%;
  }

  .mv-imageWrap .flag {
    left: 30px;
    bottom: inherit;
    top: 0;
  }

  .mv-innerWrap .mv-inner_ttl {
    font-size: clamp(36px, 7.8vw, 47px);
  }

  .mv-nav {
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .mv-innerWrap {
    padding: 40px 15px 20px;
  }

  .mv-imageWrap .flag {
    width: 105px;
    height: 105px;
    font-size: 1.2rem;
  }

  .mv-innerWrap p {
    font-size: clamp(12px, 3.2vw, 18px);
  }
}
.top02 {
  width: 100%;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .top02 {
    padding: 60px 0;
  }
}

.top_news_wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px 50px;
}

.top_news_block {
  max-width: 560px;
  width: 47%;
}

.top_timetable_block {
  max-width: 520px;
  width: 100%;
}
.top_timetable_block .w13 {
  width: 13px;
}
.top_timetable_block .g-10 {
  gap: 0 10px;
}
.top_timetable_block .txt_under {
  border-bottom: 2px solid #0099dc;
}
.top_timetable_block .flag {
  position: relative;
  width: 100%;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.05em;
  background: #d9f0fa;
  border-radius: 17px;
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 5px;
}
.top_timetable_block .flag:after {
  position: absolute;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #d9f0fa;
  bottom: -6px;
  left: 50%;
  translate: -50% 0;
}

.top_news_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.t-news-list {
  width: 100%;
  order: 3;
}
.t-news-list li {
  padding: 20px 0;
  border-bottom: 1px solid #e0e5eb;
}
.t-news-list a {
  position: relative;
  display: block;
  padding-right: 20px;
}
.t-news-list a:hover {
  opacity: 1;
}
.t-news-list a:hover i {
  translate: -5px 0;
  transition: all 0.6s;
}
.t-news-list .day {
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #0099dc;
}
.t-news-list h4 {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.t-news-list i {
  position: absolute;
  color: #0099dc;
  right: 0;
  bottom: 5px;
}

.timetable_addr_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.timetable_addr_contact a {
  display: flex;
  align-items: center;
}
.timetable_addr_contact .tel a {
  position: relative;
  font-family: "Public Sans", sans-serif;
  font-weight: 200;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  color: #0099dc;
  gap: 10px;
  text-decoration: none;
}
.timetable_addr_contact .web a {
  position: relative;
  justify-content: center;
  width: 225px;
  background: #0099dc;
  border-radius: 7px;
  padding: 15px 50px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #fff;
}
.timetable_addr_contact .web a img {
  position: absolute;
  left: 10px;
  top: 50%;
  translate: 0 -50%;
}

@media screen and (max-width: 1024px) {
  .top_timetable_block {
    width: 53%;
  }
}
@media screen and (max-width: 900px) {
  .top_news_wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  .top_news_block {
    max-width: 100%;
    width: 100%;
  }

  .top_timetable_block {
    max-width: 560px;
    width: 100%;
  }
}
.top03 {
  width: 100%;
}

.clinic_profile_content {
  position: relative;
  width: 100%;
}
.clinic_profile_content:after {
  position: absolute;
  content: "";
  width: 87.5vw;
  height: 100%;
  background: url(../img/top/clinic_profile_back.png),
    linear-gradient(180deg, #e8f5ff 0%, #f1f8ff 100%);
  background-repeat: no-repeat;
  background-position: bottom -14.5vw right -4vw, center center;
  background-size: 53vw auto, 100% 100%;
  border-radius: 10px;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
}

.clinic_profile_content_textWrap {
  max-width: 1200px;
  width: 100%;
  min-height: 48vw;
  margin: 0 auto;
  padding: 170px 40px 140px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px 10vw;
}

.clinic_profile_content_text {
  max-width: 500px;
  width: 100%;
}

.clinic_profile_flag {
  display: inline-block;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: #0099dc;
  background: #fff;
  border: 2px dotted #0099dc;
  border-radius: 27px 27px 27px 0;
  padding: 5px 20px;
}
@media screen and (min-width: 769px) {
  .clinic_profile_flag {
    padding: 20px 5px;
    writing-mode: vertical-rl;
  }
}

.clinic_profile_content_image.is-01 {
  width: 58%;
}
@media screen and (min-width: 769px) {
  .clinic_profile_content_image.is-01 {
    position: absolute;
    width: 31vw;
    top: -70px;
    left: 0;
  }
}
.clinic_profile_content_image.is-01 img {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .clinic_profile_content_image.is-02 {
    position: absolute;
    width: 14vw;
    bottom: 8vw;
    right: 0;
  }
}
.clinic_profile_content_image.is-02 img {
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .clinic_profile_content:after {
    width: 95%;
  }

  .clinic_profile_content_textWrap {
    padding-left: 36vw;
    padding-right: 60px;
    padding-bottom: 300px;
  }

  .clinic_profile_content_image.is-02 {
    width: 165px;
    bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .clinic_profile_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-bottom: 100px;
  }

  .clinic_profile_content:after {
    width: 100%;
  }

  .clinic_profile_content_textWrap {
    display: block;
    padding-top: 60px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 50px;
  }

  .clinic_profile_content_text {
    max-width: 100%;
  }

  .clinic_profile_content_image img {
    border-radius: 10px;
  }

  .clinic_profile_content_image.is-02 {
    width: 28%;
    padding-top: 8vw;
  }
}
@media screen and (max-width: 500px) {
  .clinic_profile_content_textWrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .clinic_profile_content_text .fz18 {
    font-size: 1.6rem;
  }
}
.top04 {
  width: 100%;
  padding-top: 170px;
  padding-bottom: 120px;
}

.treatment-list {
  width: 100%;
  display: flex;
  margin-top: 40px;
}

.treatment-list.col_03 {
  gap: 20px 30px;
}
.treatment-list.col_03 li {
  width: calc((100% - 60px) / 3);
  background: #eff7ff;
  border-radius: 7px;
}
.treatment-list.col_03 li a {
  position: relative;
  width: 100%;
  display: block;
  padding: 50px 40px 30px;
  text-align: center;
}
.treatment-list.col_03 li a i {
  position: absolute;
  right: 25px;
  bottom: 30px;
  color: #0099dc;
  transition: all 0.6s;
}
.treatment-list.col_03 li a:hover i {
  translate: -5px 0;
}
.treatment-list.col_03 li .icn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  margin-bottom: 20px;
}
.treatment-list.col_03 li h4 {
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.05em;
}
.treatment-list.col_03 li p {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #0b68c8;
  margin-bottom: 10px;
}
.treatment-list.col_03 li p span {
  padding-bottom: 3px;
  border-bottom: 1px solid #0b68c8;
}

.treatment-list.col_06 {
  width: 100%;
  border-right: 1px solid #e0e5eb;
}
.treatment-list.col_06 li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% / 6);
  padding: 35px 15px 25px;
  border-left: 1px solid #e0e5eb;
  gap: 20px;
}
.treatment-list.col_06 li .icn {
  min-height: 70px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.treatment-list.col_06 li .link-box {
  min-height: 45px;
}
.treatment-list.col_06 li a {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-align: center;
}
.treatment-list.col_06 li a i {
  color: #0099dc;
  padding-left: 15px;
}

@media screen and (max-width: 1024px) {
  .treatment-list.col_06 {
    flex-wrap: wrap;
    gap: 10px 0;
    border-right: none;
  }

  .treatment-list.col_06 li {
    width: calc(100% / 3);
  }
  .treatment-list.col_06 li:nth-child(3n) {
    border-right: 1px solid #e0e5eb;
  }
}
@media screen and (max-width: 768px) {
  .treatment-list.col_03 {
    flex-wrap: wrap;
    gap: 10px;
  }

  .treatment-list.col_03 li {
    width: 100%;
  }

  .treatment-list.col_03 li a {
    padding: 20px 40px 15px;
  }
}
@media screen and (max-width: 600px) {
  .treatment-list.col_06 li {
    width: 50%;
    gap: 10px;
    padding: 15px 15px 10px;
  }
  .treatment-list.col_06 li:nth-child(3n) {
    border-right: none;
  }
  .treatment-list.col_06 li:nth-child(2n) {
    border-right: 1px solid #e0e5eb;
  }
}

/*=====================================
===== 250625 add kubo
==================================== */
.fz24 {
  font-size: 2.4rem;
}
.breadcrumbs {
  font-size: 13px;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 10px 6px;
  margin: 0 0 clamp(50px, 10vw, 103px);
  padding-top: 14px;
  width: 100%;
  max-width: 79.125rem;
  text-underline-offset: 0.2em;
  color: #222;
}
.breadcrumbs a {
  color: #0099dc;
  text-decoration: underline;
}
.breadcrumbs a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  display: inline-block;
  margin-left: 6px;
  color: var(--color-corporate-01);
}

.section-title {
  display: grid;
  position: relative;
}
.section-title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: min(3.8vw, 73px);
  background: #fff;
  bottom: -1px;
  left: 0;
  border-radius: 36px 36px 0 0;
  z-index: 3;
}

.section-title__content {
  grid-area: 1/1;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-flow: column;
}
.title-section {
  background: #fff;
  color: #0099dc;
  padding: 0.2em 0.5em;
  border-radius: 7px;
  font-weight: 400;
  width: fit-content;
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
}

.section-title__bg {
  grid-area: 1/1;
  display: grid;
}

.section-title__bg .img {
  grid-area: 1/1;
  margin-left: auto;
}

.section-title__bg img {
  width: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: left center;
}

@media (min-width: 640px) {
  .section-title__bg::before {
    content: "";
    display: block;
    height: 100%;
    width: 72.9vw;
    background: url(../img/common/bg_section-title_left.png) no-repeat left
      bottom/contain;
    grid-area: 1/1;
  }
  .section-title__bg .img {
    width: 72.9vw;
  }
}

.title-icn {
  display: flex;
  flex-flow: column;
  font-weight: 400;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: clamp(80px, 12.5vw, 128px);
  margin-bottom: 37px;
  font-size: 3.2rem;
}

.title-icn::before {
  content: "";
  width: 33px;
  height: 37px;
  display: block;
  background: url(../img/common/icn_teeth.png) no-repeat center/contain;
}

.list-round {
  display: flex;
  justify-content: center;
  gap: 30px min(7.9vw, 152px);
  text-align: center;
  flex-flow: wrap;
}
.list-round.--cols-4 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px min(3.75vw, 77px);
}
.list-round.--cols-4 .list-item-round {
  width: auto !important;
}
.list-item-round {
  width: calc((100% - min(7.9vw, 152px)) / 2);
}
.list-item-round .icn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  border-radius: 50%;
  gap: clamp(10px, 1.6vw, 20px);
  --size: min(100%, 241px);
  width: var(--size);
  height: auto;
  background: linear-gradient(to right, #e8f5ff, #f1f8ff);
  margin-left: auto;
  margin-right: auto;
  color: #0099dc;
  font-size: 2rem;
  line-height: 1;
  aspect-ratio: 1/1;
}

.list-item-round .icn + * {
  margin-top: 17px;
}

.list-item-round .icn img {
  scale: 0.6;
}
@media (min-width: 400px) {
  .list-item-round .icn img {
    scale: 0.8;
  }
}
@media (min-width: 768px) {
  .list-round.--cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .list-item-round {
    width: calc((100% - min(7.9vw, 152px) * 2) / 3);
  }

  .list-item-round .icn img {
    scale: 1;
  }
}
.list-item-round .icn.--toothache img {
  transform: translate(11%, -7%);
}

.underline {
  padding-bottom: 0.3em;
  border-bottom: 1px solid;
}
.link {
  color: #0099dc;
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

.col_Blue {
  color: #0b68c8;
}

.box-round-square {
  background: #eff7ff;
  padding: 30px;
  border-radius: 7px;
  max-width: 897px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 4px 4px 12px rgba(0, 153, 220, 0.16);
  width: 100%;
}

@media (min-width: 768px) {
  .box-round-square {
    padding: 30px 62px;
  }
  .box-round-square.--md {
    padding: 40px 47px;
  }
}

.box-round-dotted {
  border: 2px dotted #0099dc;
  border-radius: 10px;
  padding: 30px;
}
.list-item-round-dotted {
  border: 2px dotted #0099dc;
  border-radius: 10px;
  color: #0099dc;
  padding: 1em;
  display: grid;
  place-items: center;
  min-height: 106px;
}
.title-round-dotted {
  border: 2px dotted #0099dc;
  border-radius: 100vw;
  color: #0099dc;
  padding: 1em;
  display: grid;
  place-items: center;
  background: #fff;
}

.list-item-round-square {
  background: #eff7ff;
  border-radius: 10px;
  color: #0b68c8;
  display: grid;
  place-items: center;
  padding: 1em 11px;
  font-size: 1.5rem;
}

.grid {
  display: grid;
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-auto {
  --min: 240px;
  --max: 1fr;
  grid-template-columns: repeat(
    auto-fill,
    minmax(min(100%, var(--min)), var(--max))
  );
}

.main.page {
  padding-bottom: 114px;
}
.container_md {
  max-width: 937px;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}
.container_xl {
  max-width: 1364px;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 600px) {
  .container_xl,
  .container_md {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.inline-block {
  display: inline-block;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.round-10 {
  border-radius: 10px;
}
.round-7 {
  border-radius: 7px;
}

.title-underline {
  color: #0b68c8;
  font-size: 1.6rem;
  font-weight: 400;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0.1em;
  border-bottom: 1px solid #0b68c8;
}

.list-order {
  counter-reset: item;
}
.list-item-order {
  counter-increment: item;
  padding-bottom: 50px;
  border-bottom: 1px solid #e0e5eb;
  display: flex;
  gap: min(6.5vw, 80px);
  align-items: start;
  position: relative;
}
.list-item-order::after {
  content: "";
  position: absolute;
  left: 33px;
  bottom: -28px;
  height: calc(100% - 45px);
  display: block;
  border-left: 2px dotted #0099dc;
}
@media not all and (min-width: 1024px) {
  .list-item-order {
    flex-flow: column;
  }
  .list-item-order::after {
    left: 20px;
  }
}
.list-item-order:last-of-type::after {
  content: none;
}
.list-item-order + .list-item-order {
  margin-top: 58px;
}
.list-item-order .title {
  color: #0099dc;
  font-weight: 400;
  font-size: 2rem;
  display: flex;
  align-items: start;
  gap: 24px;
  width: 330px;
  flex-shrink: 0;
  position: relative;
  padding-top: 10px;
}
.list-item-order .title::before {
  content: counter(item, decimal-leading-zero);
  font-size: 3.2rem;
  font-family: "Public Sans", sans-serif;
  background: url(../img/common/icn_order.png) no-repeat left/contain;
  padding-left: 20px;
  margin-top: -10px;
}
.list-item-order .content {
  line-height: 2;
  flex: 770;
}
@media not all and (min-width: 1024px) {
  .list-item-order .content {
    padding-left: 50px;
    width: 100%;
  }
  .list-item-order .title {
    transform: translate(-8px, 0);
    width: auto;
  }
}
.fz15 {
  font-size: 1.5rem;
}
.fz16 {
  font-size: 1.6rem;
}
.fz18 {
  font-size: 1.8rem;
}
.fz20 {
  font-size: 2rem;
}
.fz32 {
  font-size: clamp(26px, 2.6vw, 32px);
}
.mt120 {
  margin-top: clamp(65px, 9.7vw, 120px);
}
.border-02 {
  border: 0.2px solid rgba(112, 112, 112, 0.5);
}

@media not all and (min-width: 900px) {
  .lg-col {
    flex-direction: column;
  }
}
@media not all and (min-width: 768px) {
  .sp-col {
    flex-direction: column;
  }
}
@media not all and (min-width: 550px) {
  .sp_550-col {
    flex-direction: column;
  }
}

.pb40 {
  padding-bottom: 40px;
}

.border-b {
  border-bottom: 1px solid #e0e5eb;
}

.whitening-catch {
  display: flex;
  gap: 25px;
  justify-content: center;
  font-size: clamp(2rem, 0.2vw, 2.4rem);
}

.whitening-catch__middle {
  text-align: center;
  padding-top: 1em;
}

@media not all and (min-width: 768px) {
  .whitening-catch {
    flex-flow: column;
  }
}
.flex-1 {
  flex: 1;
}
.self-end {
  align-self: flex-end;
}

.list-arrow {
  overflow: hidden;
  display: grid;
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
  gap: 40px;
  justify-content: center;
}
.list-item-arrow {
  position: relative;
}
.list-item-arrow + .list-item-arrow::before {
  position: absolute;
  content: "\f063";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  color: #0099dc;
  line-height: 1;
  left: 50%;
  top: -20px;
  transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  .list-arrow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .list-item-arrow + .list-item-arrow::before {
    content: "\f061";
    left: -20px;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.t-news-list .title {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.t-news-list .tag-new {
  background: #ff3a55;
  color: #fff;
  font-family: "Public Sans", sans-serif;
  font-size: 10px;
  font-weight: bold;
  padding: 6px;
  border-radius: 100vw;
}

.t-news-list li.new .text {
  margin-right: 14px;
}

.wp-pagenavi {
  position: relative;
  max-width: 289px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  border: none;
  font-size: 1.4rem;
  width: auto;
  height: auto;
  margin: 0 15px;
  color: #bfbfbf;
}
.wp-pagenavi a {
  cursor: pointer;
}
.wp-pagenavi a:hover {
  border: none;
  color: #0099dc;
}
.wp-pagenavi .current {
  background: transparent;
  color: #000;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: absolute;
  --size: 24px;
  width: var(--size);
  height: var(--size);
  background: #0099dc;
  color: #fff;
  line-height: 1;
  margin: 0;
  font-size: 8px;
  display: grid;
  place-items: center;
}

.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  opacity: 0.5;
  color: #fff;
}

.previouspostslink {
  left: 0;
}
.nextpostslink {
  right: 0;
}

.single-news-date {
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #0099dc;
}

.single-news-title {
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 15px;
}

.editor-block {
  margin: 30px 0 0;
  padding: 40px 0;
  border: 1px solid #e0e5eb;
  border-left: none;
  border-right: none;
}

.post-navigation {
  margin-top: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

@media not all and (min-width: 768px) {
  .post-navigation {
    flex-flow: wrap;
    gap: 30px 15px;
  }
  .nav-previous,
  .nav-next {
    order: 1;
    width: calc(50% - 7.5px);
  }
  .post-navigation .btn-A {
    order: 2;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.nav-previous a,
.nav-next a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-next a {
  justify-self: end;
  text-align: right;
}

.nav-previous .text,
.nav-next .text {
  padding-bottom: 0.3em;
  border-bottom: 1px solid;
  line-height: 1;
  font-size: 1.4rem;
}

.nav-previous .icon,
.nav-next .icon {
  --size: 24px;
  width: var(--size);
  height: var(--size);
  background: #0099dc;
  color: #fff;
  line-height: 1;
  margin: 0;
  font-size: 8px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-A.--reverse i {
  margin-left: 0;
  margin-right: 15px;
}

.access-map {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1200/600;
}

.access-map iframe {
  width: 100%;
  height: 100%;
}

.title-icn-underline {
  display: flex;
  align-items: center;
  color: #0099dc;
  font-size: 2rem;
  gap: 16px;
  font-weight: 400;
}

.title-icn-underline .text {
  padding-bottom: 0.3em;
  border-bottom: 1px solid;
  line-height: 1;
}

.slick-wrapper {
  overflow: hidden;
}

.clinic__section {
  display: flex;
  gap: 20px min(4.8vw, 59px);
}

@media not all and (min-width: 768px) {
  .clinic__section {
    flex-flow: column;
  }
}

.clinic__section .slick-wrapper {
  flex: 453;
}
.clinic__section .content {
  flex: 688;
}

.slick-dots {
  text-align: left;
  position: relative;
  inset: auto;
}

.slick-dots li button {
  padding: 10px;
  border-radius: 50%;
  position: relative;
}

.slick-dots li button:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #0b68c8;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.slick-dots li.slick-active button {
  background: #eff7ff;
}
.slick-dots li.slick-active button:before {
  color: #0b68c8;
  opacity: 1;
}
.mr2em {
  margin-right: 2em;
}

.shrink-0 {
  flex-shrink: 0;
}

.clinic-list {
  display: flex;
  flex-flow: wrap;
  --gap-column: min(7.4vw, 91px);
  gap: 78px var(--gap-column);
}

@media not all and (min-width: 1240px) {
  .clinic-list {
    --gap-column: 30px;
  }
}

.clinic-list-item {
  display: flex;
  gap: 30px;
  width: calc(50% - var(--gap-column) / 2);
}

@media not all and (min-width: 1024px) {
  .clinic-list {
    flex-flow: column;
  }
  .clinic-list-item {
    width: 100%;
  }
}

@media not all and (min-width: 600px) {
  .clinic-list-item {
    flex-flow: column;
  }

  .clinic-list-item .img,
  .clinic-list-item img {
    width: 100%;
  }
}

.clinic-list-item .img {
  flex-shrink: 0;
}

.clinic-list-item .name {
  font-size: 2.8rem;
  font-weight: normal;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 11px;
}

.clinic-list-item .furigana {
  color: #0099dc;
  font-size: 1.4rem;
  font-weight: normal;
  font-family: "Public Sans", sans-serif;
}

.wd_100 {
  width: 100%;
}

.tab-buttons {
  display: flex;
  gap: 2px;
}

.tab-button {
  flex: 1;
  min-height: 81px;
  font-size: 2.4rem;
  background: #eff7ff;
  color: #0099dc;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
}

.tab-button[aria-expanded="true"] {
  background: #0099dc;
  color: #fff;
}

.tab-content-wrapper {
  border: 2px solid #0099dc;
  padding: 40px 50px;
  border-radius: 0 0 10px 10px;
}
@media not all and (min-width: 600px) {
  .tab-content-wrapper {
    padding: 20px 30px;
  }
}

.tab-content[aria-hidden="true"] {
  display: none;
}

.list-item-price {
  display: flex;
  justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 1px solid #e0e5eb;
  font-size: 1.8rem;
  gap: 5px;
  flex-flow: wrap;
}

@media not all and (min-width: 600px) {
  .list-item-price {
    flex-flow: column;
  }
}

.list-item-price + .list-item-price {
  margin-top: 21.5px;
}

.list-item-price .title {
  font-weight: normal;
  font-size: 1.8rem;
}

.list-item-price .tag {
  margin-right: 48px;
}

.relative {
  position: relative;
}

.tag-round {
  position: absolute;
  left: 0;
  top: 0;
  background: #0099dc;
  color: #fff;
  font-size: 1.8rem;
  padding: 0.5em 15px;
  border-radius: 8px 0 10px 0;
  font-family: "Public Sans", sans-serif;
  line-height: 1;
}

.row-section {
  display: flex;
  gap: 20px min(4.8vw, 59px);
}

@media not all and (min-width: 768px) {
  .row-section {
    flex-flow: column;
  }
}

.row-section .right{
  flex: 6;
}
.row-section .left{
  flex: 3;
}
/* 250812 */
/* list-item-note */
.list-item-bulleted {
  padding-left: 1em;
  text-indent: -1em;
}
.list-item-bulleted::before {
  content: "・";
}