@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");
/*====================================================================
Reset
====================================================================*/
html {
  color: #222;
  background: #fff;
}

html, body, div, figure, section, header, footer, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-family: Helvetica Neue, Helvetica, Arial, '游ゴシック', YuGothic, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  line-height: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

/*
TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: '';
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea,
select {
  *font-size: 100%;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
          appearance: none;
  line-height: 100%;
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*-----------------------------------------------
@keyframes
------------------------------------------------*/
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(11px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-menu-bar02 .8s forwards;
}

@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}

.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes anim_nav {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes anim_height {
  0% {
    opacity: 1;
    transform: translateY(0%);
  }
  60% {
    opacity: 1;
    transform: translateY(200%);
  }
  61% {
    opacity: 0;
    transform: translateY(-100%);
  }
  65% {
    opacity: 1;
    transform: translateY(-100%);
  }
  80% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@keyframes anim_height2 {
  0% {
    height: 0px;
  }
  50% {
    height: 96px;
  }
  100% {
    height: 96px;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes zoomOut {
  0% {
    transform: scale3d(1.2, 1.2, 1.2);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes confetti {
  0% {
    opacity: 0;
    transform: rotateZ(15deg) rotateY(0deg) translate(0, 0);
  }
  25% {
    opacity: 1;
    transform: rotateZ(5deg) rotateY(360deg) translate(-5vw, 20vh);
  }
  50% {
    transform: rotateZ(15deg) rotateY(720deg) translate(5vw, 50vh);
  }
  75% {
    transform: rotateZ(5deg) rotateY(1080deg) translate(-10vw, 70vh);
  }
  86% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotateZ(15deg) rotateY(1440deg) translate(10vw, 80vh);
  }
}

.hamburger_span span:nth-of-type(1) {
  animation: menu-bar01 .75s forwards;
}

@keyframes menu-bar01 {
  0% {
    transform: translateY(12px) rotate(45deg);
  }
  50% {
    transform: translateY(12px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

.hamburger_span span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}

.hamburger_span span:nth-of-type(3) {
  animation: menu-bar02 .75s forwards;
}

@keyframes menu-bar02 {
  0% {
    transform: translateY(-12px) rotate(-45deg);
  }
  50% {
    transform: translateY(-12px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

.hamburger_span.active span:nth-of-type(1) {
  animation: active-menu-bar01 .75s forwards;
}

@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(12px) rotate(0);
  }
  100% {
    transform: translateY(12px) rotate(45deg);
  }
}

.hamburger_span.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger_span.active span:nth-of-type(3) {
  animation: active-menu-bar03 .75s forwards;
}

@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-12px) rotate(0);
  }
  100% {
    transform: translateY(-12px) rotate(-45deg);
  }
}

/*====================================================================
site_header
====================================================================*/
.siteHeader {
  position: relative;
}

.nav {
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  position: absolute;
  transition: all 0.5s linear;
  left: 0;
  z-index: 50;
}

.nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.nav__sp {
  display: none;
}

.nav__sp__data {
  display: none;
}

.nav__wrapper {
  width: 100%;
  background: #174678;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: stretch;
}

.nav__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
}

.nav__logo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  padding-left: 20px;
}

.nav__logo__kv {
  width: 114px;
  margin-right: 14px;
}

.nav__logo__kv__inner {
  height: 20px;
}

.nav__logo__text {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  color: #fff;
  letter-spacing: normal;
  line-height: normal;
  font-weight: 700;
  white-space: nowrap;
}

.nav__list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
}

.nav__item {
  height: 100%;
  width: 100%;
}

.nav__item__yellow {
  width: 40%;
}

.nav__item__yellow a{
  color: #595757;
  font-weight: 600;
  position: relative;
background: #f7dd77; /* Old browsers */
background: -moz-linear-gradient(top,  #F7DD77 0%, #F1C71D 99%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #F7DD77 0%,#F1C71D 99%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #F7DD77 0%,#F1C71D 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F7DD77', endColorstr='#F1C71D',GradientType=0 ); /* IE6-9 */
justify-content: flex-start;
}
.nav__item__yellow a:after{
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #595757;
  border-bottom:2px solid #595757;
  transform: rotate(-45deg);
  margin-left: 25px;
}

.nav__link {
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  color: #fff;
  letter-spacing: normal;
  line-height: normal;
  font-weight: 700;
  transition: all 0.3s;
  background: #174678;
  white-space: nowrap;
  padding: 0 50px;
}

.nav__link:hover {
  opacity: 0.7;
}

.nav__arr {
  width: calc(100% - 73.85%);
}

.nav__arr__link {
  background: linear-gradient(#f6da6c, #f1c924);
  display: block;
  width: 100%;
  height: 100%;
  padding-left: 9.58%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 22px;
  color: #595757;
  letter-spacing: normal;
  line-height: normal;
  font-weight: 700;
  transition: all 0.3s;
  position: relative;
}

.nav__arr__link:after {
  content: "";
  display: inline-block;
  margin-left: 18px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #595757;
  border-bottom: 2px solid #595757;
  transform: rotate(-45deg);
  right: 32px;
}

.nav__arr__link:hover {
  opacity: 0.8;
}

/*====================================================================
SP
====================================================================*/
@media screen and (max-width: 768px) {
  header {
    position: relative;
  }
  .nav {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
  }
  .nav__wrapper {
    display: none;
  }
  .nav__arr {
    display: none;
  }
  .nav__sp {
    width: 100%;
    height: 60px;
    background: #1B366F;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 5.3vw;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
  }
  .nav__sp__logo__link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav__sp__logo__link__kv {
    width: 80px;
  }
  .nav__sp__logo__link__text {
    font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 16px;
    color: #fff;
    letter-spacing: normal;
    line-height: normal;
    font-weight: 700;
    margin-left: 8vw;
  }
  .nav__sp__data {
    position: absolute;
    display: block;
    top: 60px;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: rgba(27, 54, 111, 0.9);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
  }
  .nav__sp__data.is-open {
    height: 73.3vw;
  }
  .nav__sp__data__list {
    padding: 4vw 5.3vw 7.3vw;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
  }
  .nav__sp__data__item {
    margin-bottom: 2.13vw;
  }
  .nav__sp__data__link {
    font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 2.93vw;
    color: #fff;
    letter-spacing: normal;
    line-height: normal;
    text-decoration: underline;
  }
  .menu-trigger,
  .menu-trigger span {
    cursor: pointer;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
  }
  .menu-trigger {
    position: relative;
    width: 30px;
    height: 22px;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: #fff;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0px;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 10px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0px;
  }
}

/*====================================================================
siteFooter
====================================================================*/
.sitefooter {
  background: #fff;
  padding: 40px 17px 17px;
  text-align: center;
}

.sitefooter__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.sitefooter__text {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 15px;
  color: #595757;
  letter-spacing: 0.03em;
  line-height: 1.5;
  font-weight: 700;
}

.sitefooter__text__link {
  padding-left: 5px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

.sitefooter__text__link__kv {
  width: 23px;
  margin-right: 3px;
}

.sitefooter__text__link__no {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 19px;
  color: #595757;
  letter-spacing: 0.03em;
  line-height: 1.5;
  font-weight: 700;
}

.sitefooter__text__sm {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 13px;
  color: #595757;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .sitefooter__wrapper {
    display: block;
  }
  .sitefooter__text {
    font-size: 2.66vw;
    padding: 0;
    text-align: center;
  }
  .sitefooter__text__link {
    padding-left: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 700;
  }
  .sitefooter__text__link__kv {
    width: 4vw;
    margin: 0 0.4vw;
  }
  .sitefooter__text__link__no {
    font-size: 3.3vw;
    font-weight: 700;
  }
  .sitefooter__text__sm {
    font-size: 2.4vw;
  }
}

.slider {
  height: 40vw;
  width: 100%;
  position: relative;
}

.slider__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40vw;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
}

.slider__content__logo {
  display: block;
  width: 166px;
  position: absolute;
  top: 5.5vw;
  left: 19vw;
}

.slider__content__wrapper {
  width: 100%;
  max-width: 1465px;
  margin: 0 auto;
  position: relative;
  pointer-events: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.slider__content__title {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.slider__content__title.u-titleEn {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 4vw;
  color: #fff;
  letter-spacing: normal;
  line-height: 1.4;
  font-weight: 700;
}

.slider__content__title.u-titleJp {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 40px;
  color: #fff;
  letter-spacing: normal;
  line-height: 1.4;
  font-weight: 700;
}

.slider__content__box {
  background: url("../img/common/btn-bg.png") no-repeat center;
  background-size: contain;
  width: 29vw;
  padding: 30px;
  box-sizing: border-box;
  position: absolute;
  right: 0;
  bottom: 30px;
}

.slider__content__box__text {
  text-align: center;
  font-weight: 700;
}

.slider__content__box__text.u-textMd {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.9vw;
  color: #fff;
  letter-spacing: normal;
  line-height: 1.2;
}

.slider__content__box__text.u-textSm {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 30px;
  color: #fff;
  letter-spacing: normal;
  line-height: 1.8;
}

.slider__content__banner {
  position: absolute;
  bottom: 50px;
  right: 100px;
  width: 300px;
  z-index: 1;
  transition: all .3s;
  opacity: 1;
}

.slider__content__banner:hover {
  opacity: .7;
}

.productInner__flex__data__slider {
  position: relative;
}

.productInner__flex__data__slider .swiper-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.productInner__flex__data__slider .swiper-arrow__item {
  width: 15px;
  cursor: pointer;
}

.productInner__flex__data__slider .swiper-arrow__item.arrow_left {
  margin-left: -30px;
}

.productInner__flex__data__slider .swiper-arrow__item.arrow_right {
  margin-right: -30px;
}

.swiper-container {
  height: 100%;
  width: 100%;
  position: relative;
}

.productInner__flex__wrapper .swiper-container.u-productSlider {
  width: 100%;
  height: 122px;
}

.swiper-slide {
  width: 100%;
  height: 40vw;
  position: relative;
}

.u-productSlider .swiper-slide {
  width: 30%;
  display: flex;
  align-items: flex-start;
}

.u-productSlider .swiper-slide img {
  height: 300px;
  object-fit: cover;
}

.productInner__flex__wrapper .swiper-slide {
  height: 100%;
}

.swiper-slide__kv {
  width: 100%;
  height: 100%;
}

.swiper-slide__kv.u-slide01 {
  background: url("../img/top/topPageKv_slider-01.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-slide02 {
  background: url("../img/top/topPageKv_slider-02.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-slide03 {
  background: url("../img/top/topPageKv_slider-03.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod01 {
  background: url("../img/top/topPageKvSec_kvSM-01.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod02 {
  background: url("../img/top/topPageKvSec_kvSM-02.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod03 {
  background: url("../img/top/topPageKvSec_kvSM-03.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod04 {
  background: url("../img/top/topPageKvSec_kvSM-04.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod05 {
  background: url("../img/top/topPageKvSec_kvSM-05.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod06 {
  background: url("../img/top/topPageKvSec_kvSM-06.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod07 {
  background: url("../img/top/topPageKvSec_kvSM-07.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod08 {
  background: url("../img/top/topPageKvSec_kvSM-08.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod09 {
  background: url("../img/top/topPageKvSec_kvSM-09.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod10 {
  background: url("../img/top/topPageKvSec_kvSM-10.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod11 {
  background: url("../img/top/topPageKvSec_kvSM-11.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod12 {
  background: url("../img/top/topPageKvSec_kvSM-12.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod13 {
  background: url("../img/top/topPageKvSec_kvSM-13.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod14 {
  background: url("../img/top/topPageKvSec_kvSM-14.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod15 {
  background: url("../img/top/topPageKvSec_kvSM-15.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod16 {
  background: url("../img/top/topPageKvSec_kvSM-16.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod17 {
  background: url("../img/top/topPageKvSec_kvSM-17.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod18 {
  background: url("../img/top/topPageKvSec_kvSM-18.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod19 {
  background: url("../img/top/topPageKvSec_kvSM-19.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod20 {
  background: url("../img/top/topPageKvSec_kvSM-20.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod21 {
  background: url("../img/top/topPageKvSec_kvSM-21.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod22 {
  background: url("../img/top/topPageKvSec_kvSM-22.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod23 {
  background: url("../img/top/topPageKvSec_kvSM-23.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod24 {
  background: url("../img/top/topPageKvSec_kvSM-24.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod25 {
  background: url("../img/top/topPageKvSec_kvSM-25.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod26 {
  background: url("../img/top/topPageKvSec_kvSM-26.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod27 {
  background: url("../img/top/topPageKvSec_kvSM-27.jpg") no-repeat center;
  background-size: cover;
}

.swiper-slide__kv.u-prod28 {
  background: url("../img/top/topPageKvSec_kvSM-28.jpg") no-repeat center;
  background-size: cover;
}

/*====================================================================
SP
====================================================================*/

@media screen and (max-width: 768px) {
  .swiper-container {
    position: relative;
    z-index: 0;
  }
  .slider {
    height: 73.3vw;
    width: 100%;
    position: relative;
    margin-top: 60px;
  }
  .slider__content {
    height: 100%;
  }
  .slider__content__wrapper {
    width: 100%;
    max-width: none;
  }
  .slider__content__title.u-titleEn {
    font-size: 7.2vw;
  }
  .slider__content__title.u-titleJp {
    font-size: 4.13vw;
  }
  .slider__content__news {
    max-width: 100%;
    width: 100%;
    position: relative;
    bottom: auto;
    left: auto;
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
  }
  .slider__content__news__title {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
  }
  .slider__content__news__title--Txt2 {
    position: absolute;
    right: 0;
  }
  .slider__content__news__content {
    padding: 10px 0;
    border-color: #d6d6d6;
  }
  .slider__content__news__content--Title {
    padding-left: 0;
    margin-bottom: 6px;
    font-size: 12px;
  }
  .slider__content__news__content--Title.u-spBld {
    font-weight: 700;
  }
  .slider__content__news__content--Desc {
    padding-left: 0;
    font-size: 11px;
  }
  .slider__content__box {
    display: none;
  }
  .slider__content__box__sp {
    position: absolute;
    width: 30.6vw;
    height: 13.3vw;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#f6da6c), to(#f1c924));
    background: -webkit-linear-gradient(#f6da6c, #f1c924);
    background: -moz-linear-gradient(#f6da6c, #f1c924);
    background: -o-linear-gradient(#f6da6c, #f1c924);
    background: linear-gradient(#f6da6c, #f1c924);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 3.2vw;
    color: #595757;
    letter-spacing: normal;
    line-height: 1.3;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    bottom: 6.6vw;
    font-weight: 700;
  }
  .slider__content__box__sp.is-fixed {
    position: fixed;
    top: 60px;
    right: 0;
  }
  .slider__content__box__sp:hover {
    opacity: 0.8;
  }
  .slider__content__box__sp.arr:after {
    content: "";
    display: inline-block;
    width: 1.2vw;
    height: 1.2vw;
    margin-left: 1.6vw;
    border-right: 2px solid #595757;
    border-bottom: 2px solid #595757;
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
    right: 32px;
  }
  .slider .swiper-container {
    height: 73.3vw;
    width: 100%;
    position: relative;
    z-index: 0;
  }
  .productInner__flex__wrapper .slider .swiper-container.u-productSlider {
    width: 100%;
    height: 122px;
  }
  .slider .swiper-slide {
    width: 100%;
    height: 73.3vw;
  }
  .productInner__flex__wrapper .slider .swiper-slide {
    height: 100%;
  }
  .slider .swiper-slide__kv {
    width: 100%;
    height: 100%;
  }
  .slider .swiper-slide__kv.u-slide01 {
    background: url("../img/top/topPageKv_slider-01sp.jpg") no-repeat center;
    -webkit-background-size: cover;
       -moz-background-size: cover;
            background-size: cover;
  }
  .slider .swiper-slide__kv.u-slide02 {
    background: url("../img/top/topPageKv_slider-02sp.jpg") no-repeat center;
    -webkit-background-size: cover;
       -moz-background-size: cover;
            background-size: cover;
  }
  .slider .swiper-slide__kv.u-slide03 {
    background: url("../img/top/topPageKv_slider-03sp.jpg") no-repeat center;
    -webkit-background-size: cover;
       -moz-background-size: cover;
            background-size: cover;
  }
  .slider .swiper-slide__kv.u-prod01 {
    background: url("../img/top/topPageKvSec_kvSM-01sp.jpg") no-repeat center;
    -webkit-background-size: cover;
       -moz-background-size: cover;
            background-size: cover;
  }
  .slider .swiper-slide__kv.u-prod02 {
    background: url("../img/top/topPageKvSec_kvSM-02sp.jpg") no-repeat center;
    -webkit-background-size: cover;
       -moz-background-size: cover;
            background-size: cover;
  }
  .slider .swiper-slide__kv.u-prod03 {
    background: url("../img/top/topPageKvSec_kvSM-03sp.jpg") no-repeat center;
    -webkit-background-size: cover;
       -moz-background-size: cover;
            background-size: cover;
  }
  .slider .swiper-slide__kv.u-prod04 {
    background: url("../img/top/topPageKvSec_kvSM-04sp.jpg") no-repeat center;
    -webkit-background-size: cover;
       -moz-background-size: cover;
            background-size: cover;
  }
  .slider .swiper-slide__kv.u-prod05 {
    background: url("../img/top/topPageKvSec_kvSM-05sp.jpg") no-repeat center;
    -webkit-background-size: cover;
       -moz-background-size: cover;
            background-size: cover;
  }
  .slider .swiper-slide__kv.u-prod06 {
    background: url("../img/top/topPageKvSec_kvSM-06sp.jpg") no-repeat center;
    -webkit-background-size: cover;
       -moz-background-size: cover;
            background-size: cover;
  }
  .productInner__flex__data__slider {
    position: relative;
    width: -webkit-calc(100% - 8.52vw);
    width: -moz-calc(100% - 8.52vw);
    width: calc(100% - 8.52vw);
    margin: 0 auto;
    height: 16.26vw;
    z-index: 0;
  }
  .productInner__flex__data__slider .swiper-container.u-productSlider {
    height: 16.26vw;
  }
  .productInner__flex__data__slider .swiper-slide__kv {
    height: 16.26vw !important;
  }
  .productInner__flex__data__slider .swiper-slide {
    width: 30% !important;
    height: 16.26vw !important;
  }
  .productInner__flex__data__slider .swiper-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .productInner__flex__data__slider .swiper-arrow__item {
    width: 2vw;
  }
  .productInner__flex__data__slider .swiper-arrow__item.arrow_left {
    margin-left: -4vw;
  }
  .productInner__flex__data__slider .swiper-arrow__item.arrow_right {
    margin-right: -4vw;
  }
  .u-productSlider .swiper-slide {
    width: 100%;
    height: 150px;
  }
  .u-productSlider .swiper-slide img {
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .slider__content__title--logo {
    width: 60vw;
    margin: 0 auto;
  }
}

/*====================================================================
COMMON LAYOUT
====================================================================*/

@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
  }
}

/*-----------------------------------------------
PC/SP
------------------------------------------------*/
.u-pcDb {
  display: block;
}

.u-pcDib {
  display: inline-block;
}

.u-pcDin {
  display: inline;
}

.u-pcDf {
  display: flex;
}

.u-pcDt {
  display: table;
}

.u-pcDtc {
  display: table-cell;
}

.u-spDb,
.u-spDib,
.u-spDin,
.u-spDf,
.u-spDt,
.u-spDtc {
  display: none;
}



/*Custom Classes*/
span.u-lineThrough {
  padding: 0 5px;
  position: relative;
}

span.u-lineThrough:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #e72241;
  width: 100%;
  height: 1px;
}

span.u-redText {
  color: #e72241;
}

@media screen and (max-width: 768px) {
  .u-pcDb,
  .u-pcDib,
  .u-pcDin,
  .u-pcDf,
  .u-pcDt,
  .u-pcDtc {
    display: none;
  }
  .u-spDb {
    display: block;
  }
  .u-spDib {
    display: inline-block;
  }
  .u-spDin {
    display: inline;
  }
  .u-spDf {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-spDt {
    display: table;
  }
  .u-spDtc {
    display: table-cell;
  }
}

/*-----------------------------------------------
main
------------------------------------------------*/
.content {
  width: 100%;
  background: #dbdcdc;
  padding: 100px 20px;
}

.content.u-addpt60 {
  padding-top: 160px;
}

.content__title {
  margin-bottom: 50px;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.content__title__text {
  text-align: center;
}

.content__title__text.u-textJp {
  font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif, "Noto Serif JP", serif;
  font-size: 25px;
  color: #595757;
  letter-spacing: normal;
  line-height: normal;
  font-weight: 600;
}

.content__title__text.u-textEn {
  font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif, "Noto Serif JP", serif;
  font-size: 25px;
  color: #595757;
  letter-spacing: normal;
  line-height: normal;
}

.content__data__text {
  text-align: center;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 22px;
  color: #595757;
  letter-spacing: normal;
  line-height: 2;
}

.full {
  width: 100%;
}

.full__kv {
  width: 100%;
  height: 550px;
}

.full__kv.u-concept {
  background: url("../img/top/topPageKvSec_bg-01.jpg") no-repeat center;
  background-size: cover;
  margin-bottom: 50px;
}

.full__kv.u-meal {
  background: url("../img/top/topPageKvSec_bg-02.jpg") no-repeat center;
  background-size: cover;
  height: 500px;
}

.full__kv.u-facilities {
  background: url("../img/top/topPageKvSec_bg-03.jpg") no-repeat center;
  background-size: cover;
  height: 500px;
}

.full__kv.u-exchange {
  background: url("../img/top/topPageKvSec_bg-06.jpg") no-repeat center;
  background-size: cover;
  height: 500px;
}

.full__kvGroup {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.full__kvGroup__bg.u-safe {
  flex: 1;
  height: 500px;
}

.full__kvGroup__bg.u-safe:first-child {
  background: url("../img/top/topPageKvSec_bg-04.jpg") no-repeat center;
  background-size: cover;
}

.full__kvGroup__bg.u-safe:last-child {
  background: url("../img/top/topPageKvSec_bg-05.jpg") no-repeat center;
  background-size: cover;
}

.common {
  padding-top: 100px;
}

.common.u-meal {
  padding-bottom: 50px;
}

.common__title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 680px;
  height: 80px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #595757;
  position: relative;
  margin-bottom: 120px;
}

.common__title.u-customProcedure {
  background-color: #174678;
  border: 1px solid #174678;
}

.common__title.u-customProcedure:before, .common__title.u-customProcedure:after {
  background: #0962a8;
}

.common__title.u-customProcedure .common__title__text,
.common__title.u-customProcedure .common__title__text {
  color: #fff;
}

.common__title__text.u-textJp {
  font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif, "Noto Serif JP", serif;
  font-size: 35px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.5;
  font-weight: 600;
  margin-right: 25px;
}

.common__title__text.u-textEn {
  font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif, "Noto Serif JP", serif;
  font-size: 25px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.9;
}

.common__title:before, .common__title:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 1px;
  background: #fff;
  z-index: 1;
}

.u-dormy .common__title:before, .u-dormy .common__title:after {
  background: #F7F8F8;
}

.common__title:before {
  bottom: -1px;
  left: 0;
}

.common__title:after {
  top: -1px;
  right: 0;
}

.common__list {
  width: 100%;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.common__item {
  height: 130px;
  max-width: 275px;
  width: 100%;
  margin: 0 11px;
  background: #EFEFEF;
  margin-bottom: 80px;
  transition: all .3s;
}

.common__item:hover {
  opacity: .7;
}

.common__item__wrapper {
  padding-top: 40px;
}

.common__item__name {
  text-align: center;
}

.common__item__name.u-nameJp {
  font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif, "Noto Serif JP", serif;
  font-size: 30px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.2;
}

.common__item__name.u-nameEn {
  font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif, "Noto Serif JP", serif;
  font-size: 20px;
  color: #9FA0A0;
  letter-spacing: normal;
  line-height: 1.2;
}

.common__content {
  width: calc(100% - 40px);
  max-width: 1163px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.common__content__title {
  width: 40.84%;
}

.common__content__title__name {
  text-align: left;
}

.common__content__title__name.u-nameJp {
  font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif, "Noto Serif JP", serif;
  font-size: 30px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1;
  font-weight: 600;
}

.common__content__title__name.u-nameEn {
  font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif, "Noto Serif JP", serif;
  font-size: 100px;
  color: #DCDDDD;
  letter-spacing: normal;
  line-height: 0.9;
  padding-bottom: 25px;
  border-bottom: 4px solid #DCDDDD;
  display: inline-block;
  font-weight: 300;
}

.common__content__data {
  width: 59.16%;
}

.common__content__data__name {
  font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif, "Noto Serif JP", serif;
  font-size: 30px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.75;
  font-weight: 600;
  margin-bottom: 27px;
}

.common__content__data__text {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 22px;
  color: #595757;
  letter-spacing: -0.06rem;
  line-height: 2.4;
  letter-spacing: -.1rem;
}

.common__content__data__text.u-redText {
  font-weight: bold;
  color: #b8183e;
}

.common__category {
  width: calc(100% - 40px);
  max-width: 1163px;
  margin: 88px auto 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
}

.common__category__item {
  padding: 48px 50px 46px;
  border: 1px solid #DCDDDD;
  max-width: 553px;
  overflow: hidden;
}

.common__category__item.u-icons {
  padding: 0;
}

.common__category__item:nth-child(2) {
  margin-left: 60px;
}

.common__category__item__group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.common__category__item__content {
  margin-top: 48px;
}

.common__category__item__content.u-icons {
  padding: 0 48px 46px;
}

.common__category__item__content__title {
  font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif, "Noto Serif JP", serif;
  font-size: 22px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.2;
  text-align: center;
  font-weight: 600;
  margin-bottom: 25px;
}

.common__category__item__content__data__text {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 15px;
  color: #595757;
  letter-spacing: -0.05rem;
  line-height: 2;
  text-align: left;
}

.common__category__item__content__link {
  width: 300px;
  background: #EFEFEF;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 12px 35px;
  border-radius: 10px;
  position: relative;
  margin: 0 0 0 auto;
  transition: all .3s;
}

.common__category__item__content__link__group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.common__category__item__content__link:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 1px solid #595757;
  border-bottom: 1px solid #595757;
  transform: rotate(-45deg);
}

.common__category__item__content__link__icon {
  width: 44px;
  height: 44px;
  margin-right: 17px;
  background: url("../img/common/instagram_icon.png");
  background-size: 100% 100%;
  transition: background .3s;
}

.common__category__item__content__link__data__text {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 11px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.6;
  text-align: left;
  font-weight: bold;
  letter-spacing: 0.15rem;
  transition: all .3s;
  white-space: nowrap;
}

.common__category__item__content__link__data__text.u-dorm {
  font-size: 17px;
  letter-spacing: normal;
}

.common__category__item__content__link:hover {
  background: #B5B5B6;
}

.common__category__item__content__link:hover .common__category__item__content__link__icon {
  background: url("../img/common/instagram_icon-hover.png");
  background-size: 100% 100%;
}

.common__category__item__content__link:hover:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
}

.common__category__item__content__link:hover .common__category__item__content__link__data__text {
  color: #fff !important;
}

.common__category__item__icons {
  padding: 48px 50px 20px;
  background: #EFEFEF;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.common__category__item__icons__item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-right: 7.37%;
  width: 14.104%;
  margin-bottom: 7px;
  flex-wrap: wrap;
}

.common__category__item__icons__item__kv {
  width: 100%;
}

.common__category__item__icons__item:nth-of-type(5), .common__category__item__icons__item:nth-of-type(10) {
  margin-right: 0;
}

.common__category__item__icons__item__caption {
  padding-top: 6px;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 15px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.2;
  text-align: center;
}

.common__category__item__icons__item__caption.u-last {
  white-space: nowrap;
}

/*====================================================================
SP
====================================================================*/
@media screen and (max-width: 768px) {
  .content {
    padding: 12vw 0;
  }
  .content.u-addpt60 {
    padding-top: 12vw;
  }
  .content__title {
    margin-bottom: 7.2vw;
    display: block;
  }
  .content__title__text.u-textJp {
    font-size: 5.3vw;
  }
  .content__title__text.u-textEn {
    font-size: 3.8vw;
    margin-bottom: 1.7vw;
  }
  .content__data__text {
    text-align: center;
    font-size: 3.2vw;
  }
  .common {
    padding-top: 0;
  }
  .common.u-meal {
    padding-bottom: 6.3vw;
    margin-top: 10vw;
  }
  .common.u-dormy {
    padding-top: 0;
    margin-top: 0;
  }
  .common__title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 73.3vw;
    height: 10.6vw;
    padding: 0;
    margin-bottom: 12vw;
  }
  .common__title__text.u-textJp {
    font-size: 5vw;
  }
  .common__title__text.u-textEn {
    font-size: 3.3vw;
  }
  .common__title:before, .common__title:after {
    content: "";
    position: absolute;
    width: 2vw;
    height: 1px;
    background: #fff;
    z-index: 1;
  }
  .common__list {
    width: 100%;
    padding: 0 0 13.3vw 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .common__item {
    height: 17.3vw;
    max-width: none;
    width: -webkit-calc(50% - 0.8vw);
    width: -moz-calc(50% - 0.8vw);
    width: calc(50% - 0.8vw);
    margin: 0 0 1.3vw 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  .common__item:nth-child(n + 3) {
    margin-bottom: 0;
  }
  .common__item:hover {
    opacity: 0.7;
  }
  .common__item__wrapper {
    padding-top: 5.3vw;
  }
  .common__item__name {
    text-align: center;
  }
  .common__item__name.u-nameJp {
    font-size: 18px;
  }
  .common__item__name.u-nameEn {
    font-size: 3.3vw;
  }
  .common__content {
    width: -webkit-calc(100% - 10.6vw);
    width: -moz-calc(100% - 10.6vw);
    width: calc(100% - 10.6vw);
    max-width: none;
    margin: 0 auto;
    display: block;
  }
  .common__content__title {
    width: auto;
    display: inline-block;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .common__content__title__name {
    text-align: left;
  }
  .common__content__title__name.u-nameJp {
    font-size: 18px;
  }
  .common__content__title__name.u-nameEn {
    font-size: 13.3vw;
    padding-bottom: 3vw;
    border-bottom: 2px solid #DCDDDD;
    display: inline-block;
    font-weight: 300;
  }
  .common__content__data {
    width: 100%;
    margin: 11.5vw auto 0;
  }
  .common__content__data__name {
    font-size: 4.4vw;
    margin-bottom: 3.59vw;
    letter-spacing: -0.06rem;
    text-align: center;
  }
  .common__content__data__text {
    font-size: 3.6vw;
    text-align: left;
    margin-top: 15px;
  }
  .common__category {
    width: -webkit-calc(100% - 10.6vw);
    width: -moz-calc(100% - 10.6vw);
    width: calc(100% - 10.6vw);
    max-width: none;
    margin: 11.73vw auto 0;
    display: block;
  }
  .common__category__item {
    padding: 6.6vw;
    border: 1px solid #DCDDDD;
    max-width: none;
  }
  .common__category__item.u-icons {
    padding: 0;
  }
  .common__category__item:nth-child(2) {
    margin-left: 0;
    margin-top: 5.3vw;
  }
  .common__category__item__group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .common__category__item__content {
    margin-top: 4.5vw;
  }
  .common__category__item__content.u-icons {
    padding: 0 6.4vw 6.6vw;
  }
  .common__category__item__content__title {
    font-size: 3.46vw;
    margin-bottom: 2.6vw;
  }
  .common__category__item__content__data__text {
    font-size: 3.6vw;
    text-align: left;
  }
  .common__category__item__content__link {
    width: 50vw;
    min-width: 100%;
    margin: 15px auto 0;
    padding: 6px 10px;
  }
  .common__category__item__content__link__group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .common__category__item__content__link:after {
    content: "";
    display: inline-block;
    width: 1.6vw;
    height: 1.6vw;
    border-right: 1px solid #595757;
    border-bottom: 1px solid #595757;
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .common__category__item__content__link__icon {
    width: 10vw;
    height: 10vw;
    margin-right: 2.26vw;
    background: url("../img/common/instagram_icon.png");
    -webkit-background-size: 100% 100%;
       -moz-background-size: 100% 100%;
            background-size: 100% 100%;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    -moz-transition: background 0.3s;
    transition: background 0.3s;
  }
  .common__category__item__content__link__data__text {
    font-size: 2.46vw;
  }
  .common__category__item__content__link__data__text.u-dorm {
    font-size: 3.5vw;
  }
  .common__category__item__content__link:hover {
    background: #b5b5b6;
  }
  .common__category__item__content__link:hover .common__category__item__content__link__icon {
    background: url("../img/common/instagram_icon-hover.png");
    -webkit-background-size: 100% 100%;
       -moz-background-size: 100% 100%;
            background-size: 100% 100%;
  }
  .common__category__item__content__link:hover:after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .common__category__item__content__link:hover .common__category__item__content__link__data__text {
    color: #fff !important;
  }
  .common__category__item__icons {
    padding: 6.6vw 5vw 2.9vw;
    width: 76vw;
    margin: auto;
  }
  .common__category__item__icons__item {
    margin-right: 2.9vw;
    width: 10vw;
  }
  .common__category__item__icons__item__kv {
    width: 10vw;
  }
  .common__category__item__icons__item:nth-child(5), .common__category__item__icons__item:nth-child(10) {
    margin-right: 0;
  }
  .common__category__item__icons__item:nth-child(n + 6) {
    margin-top: 0.9vw;
  }
  .common__category__item__icons__item__caption {
    padding-top: 0.8vw;
    font-size: 2vw;
    text-align: center;
    white-space: nowrap;
  }
  .common__category__item__content__text {
    font-size: 3vw;
  }
  .common__category__item__content__title::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-top: 10px solid #DCDDDD;
  }
  .common__category__item--small {
    padding: 6.6vw 6.6vw 0;
    max-width: 100%;
    overflow: hidden;
  }
  .full {
    width: 100%;
  }
  .full__kv {
    width: 100%;
    height: 73.3vw;
  }
  .full__kv.u-concept {
    background: url("../img/top/topPageKvSec_bg-01sp.jpg") no-repeat center;
    -webkit-background-size: cover;
       -moz-background-size: cover;
            background-size: cover;
    margin-bottom: 6.6vw;
  }
  .full__kv.u-meal {
    background: url("../img/top/topPageKvSec_bg-02sp.jpg") no-repeat center;
    -webkit-background-size: cover;
       -moz-background-size: cover;
            background-size: cover;
    height: 66.6vw;
  }
  .full__kv.u-facilities {
    background: url("../img/top/topPageKvSec_bg-03sp.jpg") no-repeat center;
    -webkit-background-size: cover;
       -moz-background-size: cover;
            background-size: cover;
    height: 66.6vw;
  }
  .full__kv.u-exchange {
    background: url("../img/top/topPageKvSec_bg-06sp.jpg") no-repeat center;
    -webkit-background-size: cover;
       -moz-background-size: cover;
            background-size: cover;
    height: 66.6vw;
  }
  .full__kv.u-safe {
    background: url("../img/top/topPageKvSec_bg-04sp.jpg") no-repeat center;
    -webkit-background-size: cover;
       -moz-background-size: cover;
            background-size: cover;
    height: 66.6vw;
  }
  .full__kv.u-support {
    background: url("../img/top/topPageKvSec_bg-07sp.jpg") no-repeat center;
    -webkit-background-size: cover;
       -moz-background-size: cover;
            background-size: cover;
    height: 66.6vw;
    margin-bottom: 40px;
  }
  .full__kvGroup {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .full__kvGroup__bg.u-safe {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 66.6vw;
  }
  .full__kvGroup__bg.u-safe:first-child {
    background: url("../img/top/topPageKvSec_bg-04sp.jpg") no-repeat center;
    -webkit-background-size: cover;
       -moz-background-size: cover;
            background-size: cover;
  }
  .common__title--triangle:before {
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 0;
    border-color: #555391 transparent transparent transparent;
    z-index: 2;
  }
  
  .common__title--triangle:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent #555391 transparent;
    z-index: 2;
  }

}

/*====================================================================
topPageFvSec
====================================================================*/
.sec07 {
  background: #f6f7f7;
}

.sec09 {
  background: #F7F8F8;
  padding-bottom: 20px;
}

.site-content {
  position: relative;
}

.common__inner.u-dormy {
  margin: 50px 0;
}

.common__inner.u-dormyCustomMT {
  margin: 80px 0 50px;
}

.common__name {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.common__name__text {
  font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif, "Noto Serif JP", serif;
  font-size: 35px;
  color: #595757;
  letter-spacing: normal;
  line-height: normal;
  text-align: center;
  padding-bottom: 10px;
  font-weight: 600;
}

.common__name__text.u-underline {
  border-bottom: 1px solid #595757;
}

.common__name__sub {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.common__name__sub__text {
  font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif, "Noto Serif JP", serif;
  font-size: 30px;
  color: #595757;
  letter-spacing: normal;
  line-height: normal;
  text-align: center;
  margin-top: 38px;
  font-weight: 600;
}

.common__name__left {
  width: 100%;
  max-width: 1165px;
  margin: 0 auto 22px;
}

.common__name__left.u-mt30 {
  margin: 30px auto 0;
}

.common__name__left__text {
  font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif, "Noto Serif JP", serif;
  font-size: 25px;
  color: #595757;
  letter-spacing: normal;
  line-height: normal;
  margin-top: 44px;
  font-weight: 600;
}

.common__product {
  width: 100%;
  margin: 0 auto;
  background: #cee0ee;
}

.common__product__wrapper {
  max-width: 1165px;
  margin: 0 auto;
  padding: 50px 0 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

.common__product__wh .common__product__wrapper {
  padding-bottom: 50px;
}

.common__product__item {
  width: 45.92%;
}

.common__product__item__kv {
  width: 100%;
}

.common__product__data {
  width: 47.9%;
}

.common__product__data__flex.u-row01 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.common__product__data__flex__name {
  padding-bottom: 13px;
  margin-right: 20px;
  max-width: 400px;
  transition: all .3s;
  position: relative;
}

.common__product__data__flex__name:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 115%;
  height: 1px;
  background: #595757;
}



.common__product__data__flex__name__text {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 27px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.4;
}

.common__product__data__flex__name__text.u-textSmall {
  font-size: 20px;
}

.common__product__data__flex__name:hover {
  opacity: .7;
}

.common__product__data__flex__btn {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: stretch;
}

.common__product__data__flex__btn__bl, .common__product__data__flex__btn__pi, .common__product__data__flex__btn__ye {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  color: #fff;
  letter-spacing: normal;
  line-height: 1.2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  padding: 12px 15px;
  position: relative;
  font-weight: 700;
}

.common__product__data__flex__btn__bl {
  background: url("../img/common/btn_bg_blue.png");
  background-size: 100% 100%;
}

.common__product__data__flex__btn__pi {
  background: url("../img/common/btn_bg_pink.png");
  background-size: 100% 100%;
}

.common__product__data__flex__btn__ye {
  background: url("../img/common/btn_bg_gold.png");
  background-size: 100% 100%;
  width: 130px;
}

.common__product__data__row {
  text-align: left;
  display: block;
  margin: 30px 0;
}

.common__product__data__row.u-mgt0 {
  margin: 0 0 15px;
}

.common__product__data__row.u-row01 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.common__product__data__row.u-mt45 {
  margin-top: 35px;
}

.common__product__data__rowBox {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 20px;
  color: #0962a8;
  letter-spacing: normal;
  line-height: 1.2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #fff;
  padding: 10px 35px;
  border-radius: 5px;
}

.common__product__data__rowGuide {
  text-align: left;
  width: 50%;
}

.common__product__data__rowGuide--top {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 12px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.2;
}

.common__product__data__rowGuide--top:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 13px;
  width: 13px;
  border-radius: 50%;
  background: #5db5e6;
  margin-right: 5px;
}

.common__product__data__rowGuide--bot {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 12px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.2;
  margin-top: 5px;
}

.common__product__data__rowGuide--botLeft, .common__product__data__rowGuide--botRight {
  width: 80px;
  height: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border: 1px solid #9FA0A0;
  border-radius: 4px;
  background-color: #cee0ee;
}

.common__product__data__rowGuide--botCenter {
  width: calc(100% - 160px);
  text-align: center;
  background-image: url("../img/top/ico_line.png");
  background-size: auto 4px;
  background-repeat: no-repeat;
  background-position: bottom center;
  margin-bottom: 12px;
  padding-bottom: 5px;
}

.common__product__data__rowGuide2 {
  text-align: left;
  width: 100%;
}

.common__product__data__rowGuide2--top {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 12px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.2;
}

.common__product__data__rowGuide2--top:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 13px;
  width: 13px;
  border-radius: 50%;
  background: #5db5e6;
  margin-right: 5px;
}

.common__product__data__rowGuide2--bot {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 12px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.2;
  margin-top: 5px;
}

.common__product__data__rowGuide2--botLeft, .common__product__data__rowGuide2--botRight {
  width: 120px;
  height: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border: 1px solid #9FA0A0;
  border-radius: 4px;
  background-color: #cee0ee;
}

.common__product__data__rowGuide2--botLeft.u-colorPink, .common__product__data__rowGuide2--botRight.u-colorPink {
  background-color: rgba(184, 24, 62, 0.2);
}

.common__product__data__rowGuide2--botCenter {
  vertical-align: middle;
  width: calc(100% - 240px);
  text-align: center;
}

.common__product__data__rowGuide2--botCenter-top {
  height: 18px;
  background-image: url("../img/top/ico_line.png");
  background-size: auto 4px;
  background-repeat: repeat-x;
  background-position: bottom center;
  padding-bottom: 2px;
}

.common__product__data__rowGuide2--botCenter-top.u-straightLine {
  background-image: url("../img/top/ico_line_straight.png");
  background-size: auto 2px;
}

.common__product__data__rowGuide2--botCenter-bot {
  padding-top: 2px;
}

.common__product__data__rowMiddle {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 110px;
}

.common__product__data__rowMiddle__textTop {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 12px;
  color: #231815;
  letter-spacing: normal;
  line-height: 1.2;
  display: block;
  border-bottom: 2px dotted #9e9e9f;
  padding: 3px 0;
  min-height: 2.5em;
}

.common__product__data__rowMiddle__textBot {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 12px;
  color: #231815;
  letter-spacing: normal;
  line-height: 1.2;
  display: block;
  padding: 3px 0;
  min-height: 2.5em;
}

.common__product__data__nameWh {
  margin: 45px 0 30px;
  padding: 5px 10px;
  background: #fff;
  max-width: 400px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.common__product__data__nameWh__text {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 20px;
  color: #0964aa;
  letter-spacing: normal;
  line-height: 1.2;
  text-align: center;
}

.common__product__data__content__text {
  margin-top: 10px;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 17px;
  color: #595757;
  letter-spacing: normal;
  line-height: 2;
}

.common__product__data__link {
  margin-top: 28px;
  display: block;
  height: 70px;
  box-sizing: border-box;
  border: 2px solid #A5A5A5;
  background: linear-gradient(#EEEEEE, #CDCDCD);
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 24px;
  color: #595757;
  letter-spacing: normal;
  line-height: 2;
  transition: all .3s;
}

.common__product__data__link:after {
  content: "";
  height: 30px;
  margin-left: 22px;
  width: 30px;
  display: inline-block;
  background: url("../img/common/btn_icon_play.png");
  background-size: 100% 100%;
}

.common__product__data__link:hover {
  opacity: .7;
}

.product {
  background: #cee0ee;
  padding: 0 20px;
  height: 0;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  transition: all .5s ease;
}

.product.is-show {
  visibility: visible;
  opacity: 1;
  height: auto;
  overflow: auto;
}

.productInner {
  width: 100%;
  max-width: 1166px;
  margin: 0 auto;
}

.productInner:nth-child(n + 2) {
  margin-top: 60px;
}

.productInner__wrapper {
  background: #fff;
  padding: 37px 50px 50px;
  border-radius: 5px;
}

.productInner__title {
  margin-bottom: 25px;
}

.productInner__title__text {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 22px;
  color: #84b0d3;
  letter-spacing: normal;
  line-height: 1.2;
  position: relative;
  padding-left: 15px;
  font-weight: 700;
}

.productInner__title__text:after {
  content: "";
  position: absolute;
  height: 60px;
  width: 2px;
  background: #84b0d3;
  left: 0;
  top: -38px;
}

.productInner__title__text.u-colorPink {
  color: rgba(184, 24, 62, 0.5);
}

.productInner__title__text.u-colorPink:after {
  background: rgba(184, 24, 62, 0.5);
}

.productInner__flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

.productInner__flex__kv {
  width: 45.03%;
  height: 360px;
  overflow: hidden;
}

.productInner__flex__wrapper {
  width: 53%;
  padding: 0 38px;
}

.productInner__details__name {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 15px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.2;
  margin-top: 28px;
  font-weight: 700;
}

.productInner__group {
  margin-top: 7px;
}

.productInner__group__col {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

.productInner__group__col.u-redSecAdditional {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.productInner__group__col.u-redSecAdditional .productInner__group__col__list {
  margin-right: 20px;
}

.productInner__group__col.u-redSecAdditional .productInner__group__col__list:last-child {
  margin-right: 0;
}

.productInner__group__col__list__item {
  display: block;
  position: relative;
  margin-bottom: 5px;
  padding-left: 15px;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 13px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.2;
}

.productInner__group__col__list__item:after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  height: 13px;
  width: 13px;
  border-radius: 50%;
  background: #cee0ee;
}

.productInner__group__col__list__item.u-item-circle-pink:after {
  background: rgba(184, 24, 62, 0.2);
}

.productInner.u-student {
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 5px;
}

.productInner__student {
  border: 2px solid #cee0ee;
  position: relative;
  padding: 27px 40px 40px;
}

.productInner__student__title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.productInner__student__title__text {
  padding-bottom: 7px;
  border-bottom: 2px solid #cee0ee;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 22px;
  color: #cee0ee;
  letter-spacing: normal;
  line-height: 1.2;
  font-weight: bold;
}

.productInner__student__tag {
  position: absolute;
  top: 29px;
  left: -34px;
}

.productInner__student__tag__kv {
  width: 179px;
}

.productInner__student__flex {
  margin-top: 39px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

.productInner__student__flex__item {
  width: 48.64%;
  padding: 30px;
  background: #5db5e6;
}

.productInner__student__flex__item__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

.productInner__student__flex__item__kv {
  width: 32.75%;
}

.productInner__student__flex__item__content {
  width: 61.14%;
}

.productInner__student__flex__item__content__name__text {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 13px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.4;
  font-weight: bold;
  border-bottom: 1px solid #c9caca;
  padding-bottom: 12px;
}

.productInner__student__flex__item__content__data {
  margin-top: 20px;
}

.productInner__student__flex__item__content__data__text {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 15px;
  color: #595757;
  letter-spacing: -0.06rem;
  line-height: 1.7;
}

.productInner__map__flex {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

.productInner__map__iframe {
  width: 45.03%;
}

.productInner__map__iframe .mapouter {
  position: relative;
  text-align: right;
  height: 360px;
  width: 100%;
}

.productInner__map__iframe .gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 360px;
  width: 100%;
}

.productInner__map__content {
  width: 50%;
}

.productInner__map__content__route {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 60px;
  border-bottom: 1px solid #c9caca;
}

.productInner__map__content__route__location, .productInner__map__content__route__destination {
  padding: 5px 20px;
  border-radius: 5px;
  background: #cee0ee;
  border: 1px solid #c9caca;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.productInner__map__content__route__location__text, .productInner__map__content__route__destination__text {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.2;
  font-weight: 700;
}

.productInner__map__content__route__line {
  flex: auto;
}

.productInner__map__content__route__line__text {
  text-align: center;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.2;
  font-weight: 700;
}

.productInner__map__content__route__line__ui {
  border-top: 3px dashed #595757;
  margin: 5px;
}

.productInner__map__data {
  padding-top: 10px;
  margin-top: 30px;
  border-top: 2px solid #595757;
}

.productInner__map__data__group {
  margin-top: 7px;
}

.productInner__map__data__name {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 15px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.2;
  margin-top: 20px;
  font-weight: 700;
}

.productInner__map__data__text {
  display: block;
  position: relative;
  padding-left: 15px;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 15px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.2;
}

.productInner__map__data__text:after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  height: 13px;
  width: 13px;
  border-radius: 50%;
  background: #cee0ee;
}

.productInner__map__data__text.u-text-circle-pink:after {
  background: rgba(184, 24, 62, 0.2);
}

.productInner__table__flex {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

.productInner__table__content {
  width: 52.16%;
}

.productInner__table__content.u-contentFull {
  width: 100%;
}

.productInner__table__content.u-contentFull table,
.productInner__table__content.u-contentFull tr,
.productInner__table__content.u-contentFull td {
  border-collapse: collapse;
  border: 1px solid #c9caca;
  text-align: center;
  vertical-align: middle;
}

.productInner__table__content table,
.productInner__table__content tr {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #c9caca;
}

.productInner__table__content table.u-table01 td:first-child {
  background: #EFEFEF;
  width: 96px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 700;
}

.productInner__table__content table.u-table02 {
  width: 100%;
}

.productInner__table__content table.u-table03 {
  margin-top: 30px;
}

.productInner__table__content table.u-table04 {
  margin-top: 15px;
}

.productInner__table__content td {
  padding: 12px 12px;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 15px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.6;
  vertical-align: middle;
}
.productInner__table__content td.u-bg-lgr small {
  font-size: 12px;
}

.productInner__table__content td.u-no-pad-TB {
  padding-top: 0;
  padding-bottom: 0;
}

.productInner__table__content td.u-center {
  text-align: center;
}

.productInner__table__content td.u-bg-lgr {
  background: #EFEFEF;
  font-weight: 700;
  width: 105px;
}

.productInner__table__content td.u-custom-bg-lgr {
  width: 190px;
}

.productInner__table__content td.u-custom-w-180 {
  width: 180px;
}

.productInner__table__content td.u-bg-lbl {
  background-color: rgba(9, 98, 168, 0.2);
  font-weight: 700;
}

.productInner__table__content td.u-bg-lbl2 {
  background-color: rgba(9, 98, 168, 0.2);
  font-weight: 700;
}
.productInner__table__content td.u-bg-lbl3 {
    background: #dfdfdf;
    font-weight: 700;
}

.productInner__table__content td.u-bg-lb2-custom {
  background-color: rgba(9, 98, 168, 0.1);
}

.productInner__table__content td.u-bg-lbl-pink-o2 {
  background-color: rgba(184, 24, 62, 0.2);
  font-weight: 700;
}

.productInner__table__content td.u-bg-lbl2-pink-o1 {
  background-color: rgba(184, 24, 62, 0.1);
}

.productInner__table__content td.u-w106 {
  width: 106px;
}

.productInner__table__content td span.u-caption {
  display: block;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 12px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.3;
}

.productInner__table__kv {
  width: 43.15%;
}

.btn__wrapper {
  display: flex;
  align-items: center;
}

.btn__wrapper.u-bg-lbl {
  background: #cee0ee;
}

.btn__ye {
  margin: 70px auto 130px;
  width: 600px;
  height: 100px;
  background: linear-gradient(#F6DA6C, #F1C924);
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 22px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.3;
  transition: all .3s;
  font-weight: 700;
}

.btn__ye:hover {
  opacity: .7;
}

.btn__ye.arr {
  position: relative;
}

.btn__ye.arr:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 2px solid #595757;
  border-bottom: 2px solid #595757;
  transform: rotate(-45deg);
  right: 32px;
}

.btn__bl {
  width: calc(100% - 40px);
  max-width: 1166px;
  height: 80px;
  margin: 0 auto 80px;
  background: #5DB6E7;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 24px;
  color: #fff;
  letter-spacing: normal;
  line-height: 1.3;
  transition: all .3s;
  cursor: pointer;
}

.btn__bl.arr {
  position: relative;
}

.btn__bl.arr:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  top: 30%;
  transform: rotate(45deg);
  right: 50px;
  transition: all .3s;
}

.btn__bl.arr:hover {
  background: #fff;
  color: #6BA1CB;
}

.btn__bl.arr:hover:after {
  border-color: #6BA1CB;
}

.btn__bl.u-btnPink {
  background-color: rgba(184, 24, 62, 0.4);
}

.btn__bl.u-btnPink:hover {
  background-color: #fff;
  color: rgba(184, 24, 62, 0.4);
}

.btn__bl.u-btnPink:hover:after {
  border-color: rgba(184, 24, 62, 0.4);
}

.btn__bl.is-open:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  top: 40%;
  transform: rotate(-135deg);
  right: 50px;
}

.btn__bl.u-customMT70 {
  margin-top: 70px;
}

.social__flex {
  width: 100%;
  max-width: 1166px;
  padding: 70px 0 75px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

.social__flex.u-pb150 {
  padding-bottom: 150px;
}

.social__flex__item {
  width: 47.47%;
}

.social__flex__item__content {
  height: 100%;
}

.social__flex__item__content.u-col {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

.social__flex__item__content__text {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 17px;
  color: #595757;
  letter-spacing: normal;
  line-height: 2;
  text-align: justify;
}

.social__flex__item__content__link {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 15px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.2;
  background: #EFEFEF;
  border-radius: 5px;
  width: 100%;
  display: block;
  text-align: center;
  padding: 13px;
}

.social__flex__item__kv {
  width: 100%;
  position: relative;
}

.social__flex__item__kv.u-withMessage:after {
  content: '';
  position: absolute;
  top: 40px;
  left: 100px;
  width: 160px;
  height: 160px;
  background: url("../img/top/message.png");
  background-size: 100% 100%;
}

.social__flex__item__kvText__data {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

.social__flex__item__kvText__data__inner {
  margin-bottom: 15px;
  width: 100%;
  padding: 20px 23px;
  background: #e5f1f8;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.social__flex__item__kvText__data__inner:last-child {
  margin-bottom: 0;
}

.social__flex__item__kvText__data__bg {
  margin: 0 0 0 0;
  width: 128px;
}

.social__flex__item__kvText__data__captionCont {
  display: block;
  width: calc(100% - 160px);
}

.social__flex__item__kvText__data__caption {
  text-align: center;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 25px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.2;
  font-weight: bold;
}

.social__flex__item__kvText__data__caption__sm {
  margin-bottom: 5px;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 17px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.2;
  text-align: center;
}

.social__flex__item__kvText__link {
  width: 100%;
  margin-top: 20px;
  display: block;
  background: linear-gradient(#A9A9A9, #818181);
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  transition: all .3s;
}

.social__flex__item__kvText__link:hover {
  opacity: .7;
  background: linear-gradient(to right, #A9A9A9, #818181);
}

.social__flex__item__kvText__link.u-customWrp {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.social__flex__item__kvText__link.u-customWrp .social__flex__item__kvText__link__caption.u-customCap {
  text-align: center;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 15px;
  color: #fff;
  letter-spacing: normal;
  line-height: 1.2;
  vertical-align: middle;
}

.social__flex__item__kvText__link.arr {
  position: relative;
}

.social__flex__item__kvText__link.arr:after {
  position: absolute;
  top: 50%;
  content: "";
  width: 12px;
  height: 12px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg) translateY(-50%);
  vertical-align: middle;
  right: 25px;
}


.social__flex__item__kvText__link__tel {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 28px;
  color: #fff;
  letter-spacing: normal;
  line-height: 1.2;
}

.procedure {
  margin-bottom: 25px;
}

.procedure__content {
  width: 100%;
  max-width: 1166px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(3, 52, 98, 0.2);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.procedure__content__item.u-itemLeft {
  width: 30%;
}

.procedure__content__item.u-itemCenter {
  width: 51%;
  border-left: 1px solid #595757;
  box-sizing: border-box;
  padding-left: 35px;
}

.procedure__content__item.u-itemRight {
  width: 15%;
}

.procedure__content__item__title {
  font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif, "Noto Serif JP", serif;
  font-size: 25px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.8;
  text-align: center;
}

.procedure__content__item__text {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 17px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.7;
}

.procedure__content__item__kv {
  max-width: 180px;
  margin: 0 0 0 auto;
}

.procedure__content__item__group__text {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 17px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.7;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.procedure__content__item__group__text__no {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 17px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.7;
}

.procedure__content__item__group__caption {
  margin-top: 25px;
}

.procedure__content__item__group__caption__text {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 13px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.7;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.procedure__content__item__group__caption__text__no {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 13px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.7;
}

.procedure__content__item__group__box {
  background: #174678;
  height: 141px;
  padding: 10px;
}

.procedure__content__item__group__box:last-child {
  margin-top: 20px;
}

.procedure__content__item__group__box__text {
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 17px;
  color: #fff;
  letter-spacing: normal;
  line-height: 1.7;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.procedure__arr {
  width: 60px;
  margin: 0 auto 25px;
}

.u-bgPink {
  background-color: #f7e0e2 !important;
}

/*====================================================================
    SP
====================================================================*/
@media screen and (max-width: 768px) {
  .sec07 {
    background: #F7F8F8;
    padding-bottom: 6vw;
    padding-top: 12vw;
  }
  .sec08 {
    background: #F7F8F8;
    padding-top: 60px;
  }
  .sec09 {
    background: #F7F8F8;
    padding: 6.6vw 5.3vw;
  }
  .btn__ye.min{
    margin: 0 auto 15px;
    padding: 2vw 0;
    width: 100%;
    height: auto;
    font-size: 4vw;
  }
  .common__name__sub {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  .common__name__sub__text {
    font-size: 18px;
    margin-top: 5vw;
  }
  .common__name__left {
    width: 100%;
    max-width: none;
    margin: 0 auto 2.93vw;
  }
  .common__name__left.u-mt30 {
    margin: 30px auto 0;
  }
  .common__name__left__text {
    font-size: 15px;
    margin-top: 5.86vw;
    margin-left: 5.3vw;
  }
  .common__name__left__text.u-tLeft {
    text-align: left;
  }
  .common__product {
    width: 100%;
  }
  .common__product__wrapper {
    max-width: none;
    margin: 0 auto;
    padding: 6.46vw 5.3vw;
    display: block;
  }
  .common__product__wh .common__product__wrapper {
    padding-bottom: 6.6vw;
  }
  .common__product__item {
    width: 100%;
  }
  .common__product__item__kv {
    width: 100%;
  }
  .common__product__data {
    width: 100%;
    padding-top: 6.46vw;
  }
  .common__product__data__flex.u-row01 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
  }
  .common__product__data__flex__name {
    padding-bottom: 1.73vw;
    margin-right: 2.6vw;
    width: 48.6vw;
    transition: all .3s;
  }
  .common__product__data__flex__name__text {
    font-size: 3.7vw;
    font-weight: bold;
  }
  .common__product__data__flex__name__text__small {
    font-size: 4.5vw;
  }
  .common__product__data__flex__name:hover {
    opacity: .7;
  }
  .common__product__data__flex__btn {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: stretch;
  }
  .common__product__data__flex__btn__bl, .common__product__data__flex__btn__pi, .common__product__data__flex__btn__ye, .common__product__data__flex__btn__yl {
    font-size: 2.4vw;
    height: 30px;
  }
  .common__product__data__flex__btn__bl, .common__product__data__flex__btn__pi {
    padding: 12px 8px;
  }
  .common__product__data__flex__btn__bl {
    background: url("../img/common/btn_bg_blue.png");
    background-size: 100% 100%;
    width: 10vw;
  }
  .common__product__data__flex__btn__pi {
    background: url("../img/common/btn_bg_pink.png");
    background-size: 100% 100%;
    width: 10vw;
  }
  .common__product__data__flex__btn__ye {
    background: url("../img/common/btn_bg_gold.png");
    background-size: 100% 100%;
    width: 18vw;
  }
  .common__product__data__flex__btn__yl {
    background: url("../img/common/btn_bg_yellow.png");
    background-size: 100% 100%;
    width: 18vw;
  }
  .mongen {
    background: url(../img/common/mongen-bg.png);
    background-size: 100% 100%;
    width: 15vw;
    height: 30px;
    font-size: 2.4vw;
  }
  .common__product__data__row.u-row01 {
    flex-direction: column;
  }
  .common__product__data__row.u-mt45 {
    margin-top: 18px;
  }
  .common__product__data__nameWh {
    margin: 5.73vw 0 2.93vw;
    border-radius: 5px;
    max-width: 230px;
  }
  .common__product__data__nameWh__text {
    font-size: 3.5vw;
    text-align: left;
  }
  .common__product__data__content__text {
    font-size: 3.5vw;
    line-height: 5.5vw;
    width: 100%;
  }
  .common__product__data__link {
    width: 63.3vw;
    margin: 28px auto 0;
    height: 9.33vw;
    border-radius: 5px;
    font-size: 15px;
  }
  .common__product__data__link:after {
    content: "";
    height: 4vw;
    margin-left: 2.93;
    width: 4vw;
    display: inline-block;
    background: url("../img/common/btn_icon_play.png");
    background-size: 100% 100%;
  }
  .product {
    padding: 0 5.3vw;
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .5s ease;
  }
  .product.is-show {
    visibility: visible;
    opacity: 1;
    height: auto;
  }
  .productInner {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
  .productInner:nth-child(n + 2) {
    margin: 6.6vw auto;
  }
  .productInner__wrapper {
    background: #fff;
    padding: 4.6vw 6.6vw 6.6vw;
    border-radius: 5px;
  }
  .productInner__title {
    margin-bottom: 3.3vw;
  }
  .productInner__title__text {
    font-size: 15px;
    position: relative;
    padding-left: 15px;
  }
  .productInner__title__text:after {
    content: "";
    position: absolute;
    height: 8vw;
    width: 2px;
    left: 0;
    top: 0;
    margin-top: -4.53vw;
  }
  .productInner__flex {
    display: block;
  }
  .productInner__flex__kv {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .productInner__flex__wrapper {
    width: 100%;
    padding: 6.6vw 0 0;
  }
  .productInner__details__name {
    font-size: 2.4vw;
    margin-top: 3.73vw;
  }
  .productInner__group {
    margin-top: .93vw;
  }
  .productInner__group__col {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .productInner__group__col__list__item {
    display: block;
    position: relative;
    padding-left: 2vw;
    font-size: 2.4vw;
  }
  .productInner__group__col__list__item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0.26vw;
    height: 1.73vw;
    width: 1.73vw;
  }
  .productInner.u-student {
    background: #fff;
    padding: 1.3vw;
    box-sizing: border-box;
    border-radius: 5px;
  }
  .productInner__student {
    padding: 3.59vw 5.3vw 5.3vw;
  }
  .productInner__student__title {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  .productInner__student__title__text {
    padding-bottom: .93vw;
    font-size: 15px;
  }
  .productInner__student__tag {
    position: absolute;
    top: 3.86vw;
    left: -4.53vw;
  }
  .productInner__student__tag__kv {
    width: 28.7vw;
  }
  .productInner__student__flex {
    margin-top: 3.86vw;
    display: block;
  }
  .productInner__student__flex__item {
    width: 100%;
    padding: 5.3vw 4vw 3.73vw;
  }
  .productInner__student__flex__item:nth-child(2) {
    margin-top: 5.3vw;
  }
  .productInner__student__flex__item__wrapper {
    display: block;
  }
  .productInner__student__flex__item__kv {
    width: 33.33vw;
    margin: 0 auto;
  }
  .productInner__student__flex__item__content {
    width: 100%;
    padding-top: 0.93vw;
  }
  .productInner__student__flex__item__content__name__text {
    font-size: 2.4vw;
    border-bottom: 1px solid #c9caca;
    padding-bottom: 0.93vw;
    text-align: center;
  }
  .productInner__student__flex__item__content__data {
    margin-top: 1.33vw;
  }
  .productInner__student__flex__item__content__data__text {
    font-size: 15px;
  }
  .productInner__map__flex {
    display: block;
  }
  .productInner__map__iframe {
    width: 100%;
    margin-top: 4.6vw;
  }
  .productInner__map__iframe .mapouter {
    position: relative;
    text-align: right;
    height: 48vw;
    width: 100%;
  }
  .productInner__map__iframe .gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 48vw;
    width: 100%;
  }
  .productInner__map__content {
    width: 100%;
    padding-right: 0;
  }
  .productInner__map__content__route {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 7.3vw;
    border-bottom: 1px solid #c9caca;
  }
  .productInner__map__content__route__location__text, .productInner__map__content__route__destination__text {
    font-size: 10px;
  }
  .productInner__map__content__route__line {
    flex: auto;
  }
  .productInner__map__content__route__line__text {
    font-size: 10px;
  }
  .productInner__map__data {
    padding-top: 1.3vw;
  }
  .productInner__map__data__name {
    font-size: 3vw;
    margin-top: 2.6vw;
  }
  .productInner__map__data__text {
    display: block;
    padding-left: 2vw;
    font-size: 3vw;
  }
  .productInner__map__data__text:after {
    content: "";
    left: 0;
    top: 0.26;
    height: 1.73vw;
    width: 1.73vw;
  }
  .productInner__table__flex {
    display: block;
  }
  .productInner__table__content {
    width: 100%;
  }
  .productInner__table__content.u-contentFull {
    width: 100%;
  }
  .productInner__table__content.u-contentFull table,
  .productInner__table__content.u-contentFull tr,
  .productInner__table__content.u-contentFull td {
    border-collapse: collapse;
    border: 1px solid #c9caca;
    text-align: center;
    vertical-align: middle;
  }
  .productInner__table__content table,
  .productInner__table__content tr {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #c9caca;
  }
  .productInner__table__content table.u-table01 {
    margin-top: 6.6vw;
  }
  .productInner__table__content table.u-table01 td:first-child {
    background: #EFEFEF;
    width: 25.6vw;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
  }

  .productInner__table__content table.u-table04 tbody td:first-child {
    background: #EFEFEF;
    width: 64vw;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
  }
  .productInner__table__content table.u-table04 tbody td:last-child {
    width: 100%;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
  }
  .productInner__table__content table.u-table02 {
    width: 100%;
  }
  .productInner__table__content table.u-table03 {
    margin-top: 4vw;
  }
  .productInner__table__content table.u-table04 {
    margin-top: 4vw;
    width: 100%;
  }
  .productInner__table__content td {
    padding: 1.2vw 1vw;
    font-size: 2.9vw;
    vertical-align: middle;
  }
  .productInner__table__content td small{
    font-size: 10px;
    line-height: 16px;
  }
  .productInner__table__content td.u-center {
    text-align: center;
  }
  .productInner__table__content td.u-bg-lgr {
    white-space: nowrap;
  }
  .productInner__table__content td.u-bg-lbl {
    white-space: nowrap;
  }
  .productInner__table__content td.u-wFixed {
    width: auto;
  }
  .productInner__table__content td.u-bg-lbl2 {
    white-space: nowrap;
  }
  .productInner__table__content td.u-w106 {
    width: 13.3vw;
  }
  .productInner__table__content td.u-splitText {
    width: 12vw;
  }
  .productInner__table__content td.u-splitText span {
    display: block;
  }
  .productInner__table__content td span.u-caption {
    display: block;
    font-size: 2.4vw;
  }
  .productInner__table__kv {
    width: 100%;
    height: auto;
  }
  .productInner__table__content td.u-bg-lgr small{
    font-size: 2vw;
  }
  .productInner__area {
    display: block;
  }
  .productInner__left {
    width: 100%;
  }
  .productInner__left:before {
    display: none;
  }
  .productInner__right {
    width: 100%;
    padding-left: 0;
  }
  .productInner__left__content {
    display: block;
  }
  .productInner__left__content--boxLeft {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .productInner__left__content--boxRight {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .productInner__right__content--title {
    font-size: 1.2rem;
  }
  .productInner__right__content--text {
    font-size: 1.1rem;
  }
  .btn__wrapper {
    display: flex;
    align-items: center;
  }
  .btn__wrapper.u-ye {
  }
  .btn__ye {
    margin: 8.5vw auto 4vw;
    width: 80vw;
    height: 13.3vw;
    font-size: 15px;
  }
  .btn__ye.arr {
    position: relative;
  }
  .btn__ye.arr:after {
    content: "";
    position: absolute;
    width: 1.3vw;
    height: 1.3vw;
    border-right: 1px solid #595757;
    border-bottom: 1px solid #595757;
    transform: rotate(-45deg);
    right: 32px;
  }
  .btn__bl {
    width: 89.3vw;
    max-width: none;
    height: 10.6vw;
    margin: 0 auto 40px;
    font-size: 15px;
    transition: all .3s;
  }
  .btn__bl.arr {
    position: relative;
  }
  .btn__bl.arr:after {
    content: "";
    position: absolute;
    width: 2.6vw;
    height: 2.6vw;
    top: 30%;
    transform: rotate(45deg);
    right: 50px;
  }
  .btn__bl.is-open {
    margin-top: 13.3vw;
  }
  .btn__bl.is-open:after {
    content: "";
    position: absolute;
    width: 2.6vw;
    height: 2.6vw;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    top: 40%;
    transform: rotate(-135deg);
    right: 50px;
    transition: all .3s;
  }
  .btn__orange--link {
    display: block;
    padding: 1.1rem;
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
  .btn__orange.arr:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
    right: 32px;
  }

  .common__inner.u-dormyCustomMT {
    margin: 40px 0 20px;
  }

  .procedure {
    margin-bottom: 3.3vw;
  }
  .procedure__content {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 4.6vw 5.3vw 6.6vw 5.3vw;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    box-sizing: border-box;
  }
  .procedure__content .u-spContainerRow {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: top;
  }
  .procedure__content__item.u-itemLeft {
    width: 100%;
    height: auto;
    border-right: 0;
    display: block;
  }
  .procedure__content__item.u-itemCenter {
    width: 100%;
    border-left: 0;
    box-sizing: border-box;
    display: inline-block;
    padding-left: 0;
    text-align: left;
  }
  .procedure__content__item.u-itemCenterPlus {
    width: 100%;
    padding-left: 0;
    border: none;
  }
  .procedure__content__item.u-itemRight {
    width: 100%;
    position: relative;
    display: block;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 5vw;
  }
  .procedure__content__item__group {
    width: 100%;
  }
  .procedure__content__item__group__box{
    width: 48%;
  }
  .procedure__content__item__kv {
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
  }
  .procedure__content__item.u-itemRight.u-icon01 {
    bottom: auto;
    width: 15.600vw;
  }
  .procedure__content__item.u-itemRight.u-icon02 {
    bottom: auto;
    width: 16.400vw;
  }
  .procedure__content__item.u-itemRight.u-icon03 {
    width: 19.200vw;
  }
  .procedure__content__item.u-itemRight.u-icon04 {
    bottom: auto;
    top: auto;
    transform: translateY(0);
    width: 20.267vw;
  }
  .procedure__content__item.u-itemRight.u-icon05 {
    width: 23.200vw;
  }
  .procedure__content__item.u-itemRight.u-icon06 {
    bottom: auto;
    top: auto;
    right: auto;
    margin: 0 5vw;
    width: 12.133vw;
  }
  .procedure__content__item.u-itemRight.u-icon07 {
    top: auto;
    transform: translateY(0);
    margin: 0 5.8vw;
    width: 12vw;
  }
  .procedure__content__item.u-itemRight.u-icon08 {
    bottom: auto;
    width: 16.933vw;
  }
  .procedure__content__item.u-itemRight.u-icon09 {
    bottom: auto;
    width: 13.733vw;
  }
  .procedure__content__item__title {
    font-size: 4.5vw;
    text-align: center;
    padding-bottom: 2.4vw;
    border-bottom: 1px solid #595757;
    margin-bottom: 5.3vw;
  }
  .procedure__content__item__text {
    font-size: 3.2vw;
    line-height: 1.8;
    letter-spacing: -.06rem;
    text-align: left;
  }
  .procedure__content__item__group__text {
    font-size: 2.9vw;
    line-height: 1.6;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .procedure__content__item__group__text__no {
    font-size: 2.9vw;
  }
  .procedure__content__item__group__caption {
    margin-top: 3.3vw;
  }
  .procedure__content__item__group__caption__text {
    font-size: 2.4vw;
    line-height: 1.5;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .procedure__content__item__group__caption__text__no {
    font-size: 2.4vw;
    line-height: 1.5;
  }
  .procedure__content__item__group__box {
    height: 26.13vw;
    width: 94%;
    padding: 1.3vw;
  }
  .procedure__content__item__group__box:last-child {
    margin-top: 0;
  }
  .procedure__content__item__group__box__text {
    font-size: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  .procedure__content.u-spBGclear {
    background-color: transparent;
  }
  .procedure__content--note {
    padding-left: 1em;
    text-indent: -1em;
    font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 2.3vw;
    color: #222;
    letter-spacing: normal;
    line-height: 1.4;
  }
  .procedure__arr {
    width: 8vw;
    margin: 0 auto 3.3vw;
  }

  .procedure__content__iconLabel__text {
    font-size: 3vw;
  }
  span.u-redText.font-sizeL{
    font-size: 16px;
    font-weight: bold;
  }
  .common__product__data__rowGuide2--botCenter {
    vertical-align: middle;
    width: calc(100% - 140px);
    text-align: center;
  }
  
}

.social__flex {
}

.social__flex.u-pb150 {
  padding-bottom: 150px
}

.social__flex__item {
  width: 47.47%
}
.social__flex__item__wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.social__flex__item__kvText__box {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  width: 164px;
  color: #595757;
  padding: 15px 20px;
  background: #E6EFF6;
  margin-bottom: 15px;
  align-items: center;
  border-radius: 5px;
  text-align: center;
}
.social__flex__item__kvText__box__fukudashi {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  background: #5391c2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 120px;
  height: 60px;
  margin-bottom: 25px;
  border-radius: 5px;
}
.social__flex__item__kvText__box__fukudashi:after {
  content: "";
  border-style: solid;
  border-width: 12px 7px 0 7px;
  border-color: #5391c2 transparent transparent transparent;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
}
.social__flex__item__kvText__box__text1 {
  font-size: 14px;
  line-height: 21px;
  margin-top: 15px;
}
.social__flex__item__kvText__box__text2 {
  font-size: 18px;
  font-weight: bold;
  line-height: 28px;
  margin-top: 10px;
}
.social__flex__item__kvText__box__text2.text-left {
  text-align: left;
  font-size: 13px;
  line-height: 1em;
  letter-spacing: -.1em;
}

.social__flex__item__content {
  height: 100%
}

.social__flex__item__content.u-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch
}

.social__flex__item__content__text {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 17px;
  color: #595757;
  letter-spacing: normal;
  line-height: 2;
  text-align: justify
}

.social__flex__item__content__link {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 15px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.2;
  background: #EFEFEF;
  border-radius: 5px;
  width: 100%;
  display: block;
  text-align: center;
  padding: 13px
}

.social__flex__item__kv {
  width: 100%;
  position: relative
}

.social__flex__item__kv.u-withMessage:after {
  content: "";
  position: absolute;
  top: 40px;
  left: 100px;
  width: 160px;
  height: 160px;
  background: url("../img/top/message.png");
  background-size: 100% 100%
}

.social__flex__item__kvText__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch
}

.social__flex__item__kvText__data__inner {
  width: 31.13%;
  padding: 30px 0;
  background: #CEE0EE;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.social__flex__item__kvText__data__bg {
  width: 100px;
  margin: 0 auto 10px
}

.social__flex__item__kvText__data__caption {
  margin-top: 8px;
  display: block;
  text-align: center;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 22px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.2;
  font-weight: 600
}

.social__flex__item__kvText__data__caption__sm {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 15px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.2;
  text-align: center
}

.social__flex__item__kvText__link {
  width: 100%;
  margin-top: 20px;
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(#A9A9A9), to(#818181));
  background: linear-gradient(#A9A9A9, #818181);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s
}

.social__flex__item__kvText__link.w100 {
  max-width: 100%;
}


.social__flex__item__kvText__link:hover {
  opacity: 0.7;
  background: -webkit-gradient(linear, left top, right top, from(#A9A9A9), to(#818181));
  background: linear-gradient(to right, #A9A9A9, #818181)
}

.social__flex__item__kvText__link.arr {
  position: relative
}

.social__flex__item__kvText__link.arr:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.social__flex__item__kvText__link__inner {
  max-width: 425px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.social__flex__item__kvText__link__caption {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 13px;
  color: #fff;
  letter-spacing: normal;
  line-height: 1.6
}

.social__flex__item__kvText__link__tel {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 28px;
  color: #fff;
  letter-spacing: normal;
  line-height: 1.2
}

.social__flex__item__kvText__link__tel__span {
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 28px;
  color: #fff;
  letter-spacing: normal;
  line-height: 1.6
}

.social__flex__item__kvText__entry.btn-link {
  background: linear-gradient(#A9A9A9, #818181);
  padding: 23px;
  margin-top: 25px;
  box-sizing: border-box;
  height: 72px;
}
.social__flex__item__kvText__entry.arr {
  position: relative;
}
.social__flex__item__kvText__entry {
  width: 100%;
  margin-top: 20px;
  display: block;
  background: linear-gradient(#003557, #003557);
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding: 40px 30px;
  transition: all .3s;
  box-shadow: 0px 0px 5px rgb(0 0 0 / 20%);
  color: #fff;
  text-align: center;
}
.social__flex__item__kvText__entry.arr:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  margin-left: 10%;
}
.social__flex__item__kvText__entry:hover {
  opacity: .7;
}

.common__name {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.blue {
  color: #0962A8;
}

@media screen and (max-width: 768px) {
  .sec-sec08 {
    padding-top: 10vw;
  }
  .social__flex {
    width: 100%;
    max-width: none;
    padding: 8vw 5.3vw 0;
    margin: 0 auto 40px;
    display: block;
  }
  .social__flex.u-pb150 {
    padding-bottom: 20vw;
  }
  .social__flex__item {
    width: 100%;
  }
  .social__flex__item__content {
    height: 100%;
  }
  .social__flex__item__content.u-col {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
  }

  .social__flex__item__content__link {
    margin-top: 4vw;
    font-size: 2.6vw;
    padding: 1.7vw;
    border-radius: 1.3vw;
  }
  .social__flex__item__kv {
    width: 100%;
    position: relative;
    margin-top: 6vw;
  }
  .social__flex__item__kv.u-withMessage:after {
    content: '';
    position: absolute;
    top: 6.13vw;
    left: 31vw;
    width: 20vw;
    height: 20vw;
    background: url("../img/top/message.png");
    background-size: 100% 100%;
  }
  .social__flex__item__kvText {
    padding-top: 20px;
  }

  .social__flex__item__kvText__box__text2 {
    font-size: 10px;
    font-weight: bold;
    line-height: 20px;
    margin-top: 10px;
  }
  .social__flex__item__kvText__data {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .social__flex__item__kvText__data__inner {
    width: calc(50% - 1.2vw);
    padding: 2.6vw 0;
    box-sizing: border-box;
  }
  .social__flex__item__kvText__data__bg {
    width: 9.3vw;
    margin: 0 auto 2vw;
  }
  .social__flex__item__kvText__data__caption {
    font-size: 3.65vw;
  }
  .social__flex__item__kvText__data__caption__ce {
    font-size: 3.65vw;
  }
  .social__flex__item__kvText__data__caption__sm {
    font-size: 2.4vw;
  }
  .social__flex__item__kvText__link {
    width: 100%;
    margin-top: 2.6vw;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }
  .social__flex__item__kvText__link.arr {
    position: relative;
  }
  .social__flex__item__kvText__link.arr:after {
    content: "";
    display: inline-block;
    width: 1.5vw;
    height: 1.5vw;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
  }
  .social__flex__item__kvText__link__inner {
    max-width: 77vw;
    width: 100%;
    flex-direction: column;
  }
  .social__flex__item__kvText__link__caption {
    text-align: center;
  }
  .social__flex__item__kvText__link__tel {
    font-size: 4vw;
  }
  .social__flex__item__kvText__link__tel__span {
    font-size: 20px;
  }
  .social__flex__item__kvText__box__icon {
    width:60px;
    margin-right: 30px;
  }
  .social__flex__item__kvText__box__caption {
    font-size: 16px;
  }
  .social__flex__item__kvText__box__caption__span {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 5px;
  }
  .social__flex__item__kvText__box {
    padding: 15px 8px;
    width: 31%;
  }
  .social__flex__item__kvText__box__fukudashi {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #5391c2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 40px;
    margin-bottom: 15px;
    border-radius: 5px;
  }
  .social__flex__item__kvText__box__text1 {
    font-size: 11px;
    line-height: 16px;
    margin-top: 15px;
  }
  .social__flex__item__content__text {
    font-size: 2.9vw;
  }
  .common__name__text {
    font-size: 5.5vw;
    padding-bottom: 1.3vw;
  }
  .social__flex__item__kvText__box__text2 {
    font-size: 13px;
    font-weight: bold;
    line-height: 18px;
    margin-top: 10px;
  }
  .social__flex__item__kvText__box__text2.text-left {
    text-align: left;
    font-size: 10px;
    letter-spacing: -.1em;
    text-indent: -1em;
    padding-left: 1em;
  }

  .social__btn__wrap {
    max-width: 100%;
    margin: 0 auto 0;
    padding: 8vw 5.3vw 0;
  }
  .social__btn__flex {
    display: block;
    max-width: 100%;
  }
  .social__btn__text {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 40px;
    padding-bottom: 1.73vw;
  }
  .social__btn__wrap .social__flex__item__kvText__link.w100 {
    width: 100%;
    height: auto;
    margin: 0;
  }
  .social__flex__item__kvText__link.btn-official {
    max-width: 100%;
    height: 66px;
    margin: 40px 0 0;
  }
  .social__flex__item__kvText__link.btn-official .social__flex__item__kvText__link__caption {
    font-size: 14px;
    padding-left: 10%;
  }

}

/*====================================================================
フッターレギュレーション改定_20221205
====================================================================*/

.footer__domyLogo {
  text-align: center;
  margin-bottom: 40px;
}
.footer__domyLogo img{
  width: 150px;
}

.footer__kyoritsuLogo {
  text-align: center;
  margin-bottom: 40px;
}
.footer__kyoritsuLogo img{
  width: 113px;
}

.footer-siryou-flex {
  display: flex;
  justify-content: space-between;
  max-width: 1166px;
  margin: auto;
}
.footer-siryou-flex .btn__ye{
  width: 540px;
}
.btn__siryo {
  margin: 70px auto 130px;
  width: 540px;
  height: 100px;
  background: linear-gradient(#8BCAFC, #66AEE8);
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 22px;
  color: #595757;
  letter-spacing: normal;
  line-height: 1.3;
  transition: all 0.3s;
  font-weight: 700;
  position: relative;
}
.btn__siryo:hover {
  opacity: 0.7;
}
.btn__siryo.arr:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 2px solid #595757;
  border-bottom: 2px solid #595757;
  transform: rotate(-45deg);
  right: 32px;
}

@media screen and (max-width: 768px) {
  .footer__domyLogo {
    text-align: center;
    margin-bottom: 30px;
  }
  .footer__kyoritsuLogo {
    text-align: center;
    margin-bottom: 30px;
  }
}

/*====================================================================
資料ボタン追加_20240806
====================================================================*/

.nav__link.siryou {
  background-color: #5391c2;
  padding: 0 50px;
}
.footer-siryou-flex {
  display: flex;
  justify-content: space-between;
  max-width: 1166px;
  margin: auto;
}
.footer-siryou-flex .btn__ye{
  width: 540px;
}
.btn__siryo {
margin: 70px auto 130px;
width: 540px;
height: 100px;
background: linear-gradient(#8BCAFC, #66AEE8);
border-radius: 5px;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
align-items: center;
font-family: "游ゴシック", Helvetica Neue, Helvetica, Arial, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
font-size: 22px;
color: #595757;
letter-spacing: normal;
line-height: 1.3;
transition: all 0.3s;
font-weight: 700;
position: relative;
}
.btn__siryo:hover {
opacity: 0.7;
}
.btn__siryo.arr:after {
content: "";
position: absolute;
width: 10px;
height: 10px;
border-right: 2px solid #595757;
border-bottom: 2px solid #595757;
transform: rotate(-45deg);
right: 32px;
}
.common__product.bg-white {
  background-color: #fff;
}
.btn__bl.bl2 {
  background-color: #174678;
}
.btn__bl.bl2:hover{
  background-color: #174678;
  color: #fff;
  opacity: .6;
}

@media screen and (max-width: 768px) {
  .footer-siryou-flex {
    display: block;
    max-width: 100%;
    margin: auto;
  }
  .footer-siryou-flex .btn__ye{
    width: 80vw;
  }
  .btn__siryo {
    margin: 8.5vw auto 1vw;
    width: 80vw;
    height: 13.3vw;
    font-size: 15px;
  }
  .btn__siryo.arr:after {
    content: "";
    position: absolute;
    width: 1.3vw;
    height: 1.3vw;
    border-right: 1px solid #595757;
    border-bottom: 1px solid #595757;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 32px;
  }
}

/*====================================================================
ニューストピックス
====================================================================*/

/*ニューストピックス*/
.newtpicks {
  max-width: 1160px;
  margin: 60px auto 80px;
}
.newtpicks dl {
  border-bottom: 1px solid #595757;
  display: flex;
  font-size: 22px;
  padding: 30px 0;
  min-width: 620px;
}
.newtpicks dl:first-of-type {
  padding-top: 0;
}
.newtpicks dl dt {
  width: 20%;
}
.newtpicks dl dt .red {
  color: #b8183e;
  font-weight: 600;
}
.newtpicks dl dd {
  width: 80%;
}
.newtpicks dl dd a {
  color: #595757;
}

@media screen and (max-width: 768px) {
  .newtpicks {
    max-width: 100%;
    padding: 0 5%;
    margin: 30px auto 30px;
  }
  .newtpicks dl {
    border-bottom: 1px solid #595757;
    display: block;
    font-size: 16px;
    padding: 20px 0;
    min-width: 100%;
  }
  .newtpicks dl:first-of-type {
    padding-top: 0;
  }
  .newtpicks dl dt {
    width: 100%;
    line-height: 24px;
    margin-bottom: 15px;
  }
  .newtpicks dl dt .red {
    color: #b8183e;
    font-weight: 600;
    display: inline;
  }
  .newtpicks dl dd {
    width: 100%;
    line-height: 24px;
  }
  .newtpicks dl dd a {
    color: #595757;
  }
}


/*====================================================================
ファクトドクター_20250708
====================================================================*/

.fastdoctor {
    width: calc(100% - 40px);
    max-width: 1163px;
    margin: 0 auto 10%;
    display: flex;
    flex-wrap: wrap;
}
.fastdoctor-block1 {
  order: 1;
  width: 50%;
  background-color: #e5eff7;
}
.fastdoctor-block1 .fastdoctor-logo {
  width: 100%;
  text-align: center;
  padding: 25px 20px 30px;
}
.fastdoctor-block1 .fastdoctor-logo img{
  width: 395px;
}
.fastdoctor-block1 .bg-blue{
  padding: 0 20px 50px;
}
.fastdoctor-block1 .bg-blue .text1{
  font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif, "Noto Serif JP", serif;
  font-size: 27px;
  line-height: 40px;
  margin-bottom: 20px;
}
.fastdoctor-block1 .bg-blue .text2{
  font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif, "Noto Serif JP", serif;
  color: #fff;
  font-size: 27px;
  line-height: 40px;
  background-color: #005bab;
  padding: 15px 20px;
}

.fastdoctor-block2 {
  order: 3;
  width: 50%;
  padding: 40px 40px 50px 20px;
}
.fastdoctor-block2 .fastdoctor-img{
  width: 520px;
  margin: 0 auto 15px;
}
.fastdoctor-block2 .fastdoctor-dl {
  display: block;
  border: 1px solid #dcdddd;
  position: relative;
  max-width: 280px;
  margin: auto;
}
.fastdoctor-block2 .fastdoctor-dl dt{
  border-bottom: 1px solid #dcdddd;
  padding: 13px;
  font-size: 24px;
  text-align: center;
}
.fastdoctor-block2 .fastdoctor-dl dd{
  border-bottom: 1px solid #dcdddd;
  padding: 13px;
  font-size: 24px;
  text-align: center;
}
.fastdoctor-block2 .fastdoctor-dl dd span{
  color: #005bab;
}
.fastdoctor-block2 .fastdoctor-dl .icon{
  position: absolute;
  top: -23px;
  right: -15px;
  width: 80px;
}

.fastdoctor-block3 {
  order: 2;
  width: 50%;
  padding: 30px 20px 30px;
  background-color: #e5eff7;
}
.fastdoctor-block3 .text3{
  font-size: 21px;
  line-height: 43px;
  color: #005bab;
  text-decoration: underline;
  text-align: center;
  margin-bottom: 30px;
}
.fastdoctor-ul {
  display: flex;
  justify-content: space-between;
}
.fastdoctor-ul li{
  position: relative;
  width: 30%;
  background-color: #fff;
  border: 1px solid #005bab;
  padding: 15px 20px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  line-height: 30px;
  color: #005bab;
}
.fastdoctor-ul li i{
  position: absolute;
  width: 46px;
  top: 50%;
  transform: translateY(-50%);
  left: -23px;
}

.fastdoctor-block4 {
  order: 4;
  width: 50%;
  padding: 40px 20px 50px;
  background-color: #fffac6;
}
.fastdoctor-tokuten {
  width: 510px;
  margin: 0 auto 20px;
}
.fastdoctor-tokuten-flex {
  display: flex;
  align-items: center;
}
.fastdoctor-tokuten-text {
  width: 235px;
  height: 74px;
  border: 2px solid #f15a24;
  display: flex;
  align-items: center;
  background-color: #f15a24;
  box-sizing: border-box;
}
.fastdoctor-tokuten-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 10px;
}
.fastdoctor-tokuten-icon img{
  width: 54px;
}
.fastdoctor-tokuten-text p {
  font-size: 17px;
  line-height: 27px;
  color: #fff;
  text-align: center;
  padding-left: 20px;
}
.fastdoctor-tokuten-price {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fastdoctor-tokuten-price .price1 {
  font-size: 56px;
  font-weight: bold;
  margin-left: 10px;
  position: relative;
}
.fastdoctor-tokuten-price .price1 small{
  font-size: 27px;
}
.fastdoctor-tokuten-price .price1:after{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #e50012;
  position: absolute;
  transform: rotate(-19deg);
  top: 25px;
  left: 0;
}
.fastdoctor-tokuten-price .arrow {
  width: 23px;
  margin: 0 15px;
}
.fastdoctor-tokuten-price .price2 {
  font-size: 51px;
  font-weight: bold;
  margin-left: 10px;
  color: #e50012;
}
.fastdoctor-tokuten-price .price2 strong{
  font-size: 106px;
}

.fastdoctor-tel {
  padding-top: 20px;
  margin-top: 15px;
  border-top: 2px solid #e50012;
  display: flex;
  align-items: center;
}
.fastdoctor-tel-text {
  font-size: 17px;
  font-weight: bold;
  color: #f15a24;
  text-align: center;
  background-color: #fff;
  border: 1px solid #f15a24;
  border-radius: 20px;
  padding: 10px 25px;
  margin-right: 15px;
}
.fastdoctor-tel-link{
  font-size: 43px;
  font-weight: bold;
  color: #595757;
}

@media screen and (max-width: 1200px) {
  .fastdoctor {
      width: 100%;
      max-width: 800px;
      margin: 40px auto 5%;
      padding: 0 5%;
      display: block;
  }
  .fastdoctor-block1 {
    order: 1;
    width: 100%;
    background-color: #e5eff7;
  }
  .fastdoctor-block1 .fastdoctor-logo {
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: #fff;
  }
  .fastdoctor-block1 .fastdoctor-logo img{
    width: 220px;
  }
  .fastdoctor-block1 .bg-blue{
    padding: 15px 0 25px;
  }
  .fastdoctor-block1 .bg-blue .text1{
    font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif, "Noto Serif JP", serif;
    font-size: 15px;
    line-height: 40px;
    margin-bottom: 10px;
    text-align: center;
  }
  .fastdoctor-block1 .bg-blue .text2{
    font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif, "Noto Serif JP", serif;
    color: #fff;
    font-size: 17px;
    line-height: 27px;
    text-align: center;
    background-color: #005bab;
    padding: 13px 10px;
  }

  .fastdoctor-block2 {
    order: 3;
    width: 100%;
    padding: 20px 15px;
  }
  .fastdoctor-block2 .fastdoctor-img{
    width: 95%;
    margin: 0 auto 30px;
  }
  .fastdoctor-block2 .fastdoctor-dl {
    display: flex;
    border: 1px solid #dcdddd;
    position: relative;
    max-width: 95%;
    margin: auto;
  }
  .fastdoctor-block2 .fastdoctor-dl dt{
    border-right: 1px solid #dcdddd;
    border-bottom: 0;
    padding: 10px;
    font-size: 15px;
    text-align: center;
    width: 20%;
  }
  .fastdoctor-block2 .fastdoctor-dl dd{
    border-bottom: 1px solid #dcdddd;
    padding: 10px;
    font-size: 15px;
    text-align: center;
    width: 80%;
  }
  .fastdoctor-block2 .fastdoctor-dl dd span{
    color: #005bab;
  }
  .fastdoctor-block2 .fastdoctor-dl .icon{
    position: absolute;
    top: -35px;
    right: -10px;
    width: 50px;
  }

  .fastdoctor-block3 {
    order: 2;
    width: 100%;
    padding: 20px 20px 5px;
    background-color: #e5eff7;
  }
  .fastdoctor-block3 .text3{
    font-size: 18px;
    line-height: 36px;
    color: #005bab;
    text-decoration: underline;
    text-align: center;
    margin-bottom: 20px;
  }
  .fastdoctor-ul {
    display: block;
    max-width: 78%;
    margin: auto;
  }
  .fastdoctor-ul li{
    position: relative;
    width: 100%;
    background-color: #fff;
    border: 1px solid #005bab;
    padding: 15px 20px;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    line-height: 25px;
    color: #005bab;
    margin-bottom: 20px;
  }
  .fastdoctor-ul li i{
    position: absolute;
    width:38px;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
  }

  .fastdoctor-block4 {
    order: 4;
    width: 100%;
    padding: 20px 20px 24px;
    background-color: #fffac6;
  }
  .fastdoctor-tokuten {
    width: 100%;
    margin: 0 auto 20px;
  }
  .fastdoctor-tokuten-flex {
    display: block;
  }
  .fastdoctor-tokuten-text {
    width: 80%;
    height: auto;
    margin: 0 auto 10px;
    border: 2px solid #f15a24;
    display: flex;
    align-items: center;
    background-color: #f15a24;
    box-sizing: border-box;
  }
  .fastdoctor-tokuten-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 10px;
  }
  .fastdoctor-tokuten-icon img{
    width: 40px;
  }
  .fastdoctor-tokuten-text p {
    font-size: 12px;
    line-height: 27px;
    color: #fff;
    text-align: center;
    padding-left: 10px;
  }
  .fastdoctor-tokuten-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
  }
  .fastdoctor-tokuten-price .price1 {
    font-size: 41px;
    font-weight: bold;
    margin-left: 10px;
  }
  .fastdoctor-tokuten-price .price1 small{
    font-size: 20px;
  }
  .fastdoctor-tokuten-price .price1:after{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #e50012;
    position: absolute;
    transform: rotate(-16deg);
    top: 18px;
    left: 0;
  }
  .fastdoctor-tokuten-price .arrow {
    width: 17px;
    margin: 0 15px 10px;
  }
  .fastdoctor-tokuten-price .arrow img{
    padding-bottom: 10px;
  }
  .fastdoctor-tokuten-price .price2 {
    font-size: 38px;
    font-weight: bold;
    margin-left: 10px;
    color: #e50012;
  }
  .fastdoctor-tokuten-price .price2 strong{
    font-size: 70px;
  }

  .fastdoctor-tel {
    padding-top: 25px;
    margin-top: 15px;
    border-top: 2px solid #e50012;
    display: block;
    text-align: center;
  }
  .fastdoctor-tel-text {
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
    color: #f15a24;
    text-align: center;
    background-color: #fff;
    border: 1px solid #f15a24;
    border-radius: 20px;
    padding: 10px 25px;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .fastdoctor-tel-link{
    font-size: 32px;
    font-weight: bold;
    color: #595757;
    display: block;
  }
}


/*-----------------------------------------------
PC/SP
------------------------------------------------*/
.pc {
  display: block;
}
.sp{
  display: none;
}

@media screen and (max-width: 768px) {
  .pc{
    display: none;
  }
  .sp {
    display: block;
  }
}