@charset "UTF-8";
/* font
--------------------------------------- */
@font-face {
  font-family: "Roboto-Black";
  src: url("/fonts/t_smile/front/Roboto-Black.woff") format("woff"), url("/fonts/t_smile/front/Roboto-Black.ttf") format("ttf");
  font-display: swap;
}

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

html {
  font-kerning: normal;
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: 1.1;
  color: #282828;
}

img,
video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

ol,
ul {
  list-style: none;
}

q,
blockquote {
  quotes: none;
}

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

input[type="text"],
input[type="email"],
input[type="submit"],
button,
textarea {
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
}

input[type="submit"],
button {
  padding: 0;
  margin: 0;
  cursor: pointer;
  border: none;
}

::-moz-selection {
  font-weight: bold;
  color: #fff;
  background: none repeat scroll 0 0 #222;
}

::selection {
  color: #fff;
  background: none repeat scroll 0 0 #222;
}

:placeholder-shown {
  color: #ccc;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #ccc;
}

[src$=".svg"],
[data$=".svg"] {
  width: 100%;
}

/* layout
--------------------------------------- */
.l_wrap {
  overflow: hidden;
}

.l_layoutOut {
  position: relative;
}

.l_layoutOut-pattern {
  background: url(/images/t_smile/front/common/pattern_bg.jpg) repeat;
  background-size: 400px auto;
}

@media screen and (min-width: 768px) {
  .l_layoutOut-pattern {
    background-size: 800px auto;
  }
}

.l_layoutOut-patternRed {
  background-color: #13244D;
  background-size: 400px auto;
}

@media screen and (min-width: 768px) {
  .l_layoutOut-patternRed {
    background-size: 800px auto;
  }
}

.l_layoutOut-point {
  background: url(/images/t_smile/front/index/point_bg.jpg) no-repeat 50% 20%/cover;
}

@media screen and (min-width: 768px) {
  .l_layoutOut-point {
    background-image: url(/images/t_smile/front/index/point_bg_pc.jpg);
    background-position: 50% 15%;
  }
}

.l_layoutOut-found {
  background: url(/images/t_smile/front/index/found_bg.jpg) no-repeat 50% 50%/cover;
}

.l_layout {
  padding: 0 15px;
}

.l_layout-w900, .l_layout {
  position: relative;
}

@media screen and (min-width: 768px) {
  .l_layout-w900, .l_layout {
    margin: auto;
  }
}

@media screen and (min-width: 768px) {
  .l_layout {
    max-width: 1140px;
    padding: 0 30px;
  }
}

.l_layout-w900 {
  padding: 40px 15px 60px;
}

@media screen and (min-width: 768px) {
  .l_layout-w900 {
    max-width: 900px;
    padding: 60px 30px 80px;
  }
}

/* animation
--------------------------------------- */
.is-MoveFade {
  opacity: 0;
}

.is-MoveUp,
.is-MoveDown,
.is-MoveLeft,
.is-MoveRight,
.is-MoveFade,
.is-MoveVisible,
.is-MoveScale {
  visibility: hidden;
}

.is-MoveOutRight {
  visibility: visible;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -30%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    transform: translate(100%);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(3);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* img Move
--------------------------------------- */
@keyframes fadeInImg {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  50% {
    visibility: visible;
    opacity: 0.5;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes transX {
  0% {
    transform: translateX(-100%);
  }
  47.5% {
    transform: translateX(0);
  }
  52.5% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.fadeVisible {
  visibility: visible;
  animation-name: fadeInImg;
  animation-duration: 1s;
  animation-delay: 1.2s;
  animation-fill-mode: both;
}

.fadeMask {
  visibility: visible;
  animation-name: transX;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeInUp,
.fadeInDown,
.fadeInLeft,
.fadeInRight,
.fadeIn,
.fadeInScale {
  visibility: visible;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeInDown {
  animation-name: fadeInDown;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

.fadeInRight {
  animation-name: fadeInRight;
}

.fadeIn {
  animation-name: fadeIn;
}

.fadeInScale {
  animation-name: fadeInScale;
}

.delay__s01 {
  animation-delay: 0.1s;
}

.delay__s02 {
  animation-delay: 0.2s;
}

.delay__s03 {
  animation-delay: 0.3s;
}

.delay__s04 {
  animation-delay: 0.4s;
}

.delay__s05 {
  animation-delay: 0.5s;
}

.delay__s06 {
  animation-delay: 0.6s;
}

.delay__s07 {
  animation-delay: 0.7s;
}

.delay__s08 {
  animation-delay: 0.8s;
}

.delay__s09 {
  animation-delay: 0.9s;
}

.delay__s10 {
  animation-delay: 1s;
}

.delay__s11 {
  animation-delay: 1.1s;
}

.delay__s12 {
  animation-delay: 1.2s;
}

.delay__s13 {
  animation-delay: 1.3s;
}

.delay__s14 {
  animation-delay: 1.4s;
}

.delay__s15 {
  animation-delay: 1.5s;
}

.delay__s16 {
  animation-delay: 1.6s;
}

.delay__s17 {
  animation-delay: 1.7s;
}

.delay__s18 {
  animation-delay: 1.8s;
}

.delay__s19 {
  animation-delay: 1.9s;
}

.delay__s2 {
  animation-delay: 2s;
}

.duration__s12 {
  animation-duration: 1.2s;
}

.duration__s14 {
  animation-duration: 1.4s;
}

.duration__s16 {
  animation-duration: 1.6s;
}

/* footer
--------------------------------------- */
.footer {
  margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .footer {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 1024px) {
  .footer {
    margin-bottom: 0;
  }
}

.footer__wrap {
  padding: 20px 15px;
  background: #e5e5e5;
}

@media screen and (min-width: 768px) {
  .footer__wrap {
    padding: 25px 15px;
    text-align: center;
  }
}

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

@media screen and (min-width: 768px) {
  .footer__nav {
    flex-direction: row;
    justify-content: center;
  }
}

.footer__navItem {
  padding: 10px 0;
  border-bottom: 1px solid #d8d8d8;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.1;
}

@media screen and (min-width: 768px) {
  .footer__navItem {
    padding: 0 10px;
    font-size: 12px;
    font-size: 1.2rem;
    border-bottom: none;
  }
}

.footer__company {
  margin-top: 15px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .footer__company {
    font-size: 20px;
    font-size: 2rem;
  }
}

.footer__text {
  font-size: 10px;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .footer__text {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.footer__copyright {
  padding: 10px 15px;
  color: #fff;
  text-align: center;
  background: #282828;
  font-size: 10px;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/* head
--------------------------------------- */
.head .head__title-line, .head .head__title {
  position: relative;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-weight: 900;
  color: #CF322A;
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (min-width: 768px) {
  .head .head__title-line, .head .head__title {
    font-size: 40px;
    font-size: 4rem;
  }
}

.head__title-line::before, .head__title-line::after {
  position: absolute;
  left: 50%;
  display: block;
  width: 4px;
  margin-left: -2px;
  content: "";
}

.head__title-line::before {
  top: -68px;
  height: 40px;
  background: #302828;
}

@media screen and (min-width: 768px) {
  .head__title-line::before {
    top: -118px;
    height: 90px;
  }
}

.head__title-line::after {
  top: -24px;
  height: 8px;
  background: #d40027;
}

@media screen and (min-width: 768px) {
  .head__title-line::after {
    top: -24px;
  }
}

.head__en {
  max-width: 120px;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .head__en {
    max-width: 200px;
  }
}

.head__en + .head__title {
  margin-top: 10px;
}

/* header
--------------------------------------- */
header {
  height: 60px;
}

@media screen and (min-width: 768px) {
  header {
    height: 90px;
  }
}

@media screen and (min-width: 1024px) {
  header {
    height: 170px;
  }
}

@media screen and (min-width: 1024px) {
  header + .tel {
    display: none;
  }
}

.header {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 60px;
  padding: 15px;
  background: linear-gradient(125deg, #fff 0%, #fff 45%, #282828 45%, #282828 100%);
}

@media screen and (min-width: 768px) {
  .header {
    height: 90px;
    padding: 0 30px;
  }
}

@media screen and (min-width: 1024px) {
  .header {
    position: static;
    height: 170px;
    padding: 0;
    background: #282828;
  }
}

.header__wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-right: 37px;
}

@media screen and (min-width: 768px) {
  .header__wrap {
    height: 90px;
    padding-right: 57px;
  }
}

@media screen and (min-width: 1024px) {
  .header__wrap {
    max-width: 1460px;
    height: 100px;
    padding: 0 30px;
    margin: auto;
  }
}

.header__logo {
  width: 90px;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .header__logo {
    width: 160px;
  }
}

@media screen and (min-width: 1024px) {
  .header__logo {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    width: 316px;
    height: 170px;
    padding: 42px 0 0;
    margin: 0 0 0 -158px;
    text-align: center;
  }
}

.header__logo img {
  max-width: 260px;
}

.header__slogan {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.3;
}

@media screen and (min-width: 374px) {
  .header__slogan {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.1;
  }
}

@media screen and (min-width: 768px) {
  .header__slogan {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .header__slogan {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.header__slogan + .tel {
  display: none;
}

@media screen and (min-width: 1024px) {
  .header__slogan + .tel {
    display: block;
  }
}

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

/* hamburger
--------------------------------------- */
.hamburger {
  position: absolute;
  top: 20px;
  right: 15px;
  display: inline-block;
  width: 22px;
  height: 18px;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .hamburger {
    top: 34px;
    right: 30px;
    width: 40px;
    height: 24px;
  }
}

@media screen and (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger__pipe {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: #fff;
  transition: all 0.4s ease-out;
}

.hamburger__pipe:nth-of-type(1) {
  top: 0;
}

.hamburger__pipe:nth-of-type(2) {
  top: 8px;
}

@media screen and (min-width: 768px) {
  .hamburger__pipe:nth-of-type(2) {
    top: 11px;
  }
}

.hamburger__pipe:nth-of-type(3) {
  bottom: 0;
}

.hamburger-active .hamburger__pipe:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
}

@media screen and (min-width: 768px) {
  .hamburger-active .hamburger__pipe:nth-of-type(1) {
    transform: translateY(11px) rotate(-45deg);
  }
}

.hamburger-active .hamburger__pipe:nth-of-type(2) {
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .hamburger-active .hamburger__pipe:nth-of-type(2) {
    opacity: 0;
  }
}

.hamburger-active .hamburger__pipe:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
}

@media screen and (min-width: 768px) {
  .hamburger-active .hamburger__pipe:nth-of-type(3) {
    transform: translateY(-11px) rotate(45deg);
  }
}

/* gnav
--------------------------------------- */
.gnav {
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 99;
  display: none;
  width: 100%;
  padding: 30px 30px 40px;
  background: #fff;
  border-top: 1px solid #e8e8e8;
}

@media screen and (min-width: 768px) {
  .gnav {
    top: 90px;
    padding: 60px 80px 80px;
  }
}

@media screen and (min-width: 1024px) {
  .gnav {
    position: static;
    display: block;
    padding: 0;
    background: transparent;
    background: #fff;
    border-top: none;
  }
}

.gnav-active .gnav__item {
  visibility: visible;
  animation-name: fadeInDown;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.gnav-active .gnav__item:nth-of-type(1) {
  animation-delay: 0.1s;
}

.gnav-active .gnav__item:nth-of-type(2) {
  animation-delay: 0.2s;
}

.gnav-active .gnav__item:nth-of-type(3) {
  animation-delay: 0.3s;
}

.gnav-active .gnav__item:nth-of-type(4) {
  animation-delay: 0.4s;
}

.gnav-active .snav__list {
  visibility: visible;
  animation-name: fadeInDown;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-delay: 0.7s;
}

@media screen and (min-width: 1024px) {
  .gnav__list {
    display: flex;
    width: 100%;
    max-width: 1460px;
    padding: 0 30px;
    margin: auto;
  }
}

@media screen and (min-width: 1024px) {
  .gnav__item {
    position: relative;
    z-index: 100;
    width: calc(25%);
    animation-name: none;
  }
  .gnav__item:nth-of-type(3) {
    margin-left: 316px;
  }
  .gnav__item:nth-of-type(even)::before {
    position: absolute;
    top: 13px;
    display: block;
    width: 1px;
    height: 44px;
    content: "";
    background: #d9d9d9;
  }
}

.gnav__link {
  display: block;
  padding: 20px 0;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  border-bottom: 1px solid #e8e8e8;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.1;
}

@media screen and (min-width: 768px) {
  .gnav__link {
    padding: 25px 0;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .gnav__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    padding: 0;
    text-align: center;
    border-bottom: none;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .gnav__link::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    content: "";
    background: #13244D;
    transition: height 0.4s ease-out;
  }
  .gnav__link-current::before, .gnav__link:hover::before {
    height: 5px;
  }
}

/* tel
--------------------------------------- */
.tel {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 50px;
  padding: 7px 10px;
  color: #fff;
  text-align: center;
  background: #111;
}

@media screen and (min-width: 768px) {
  .tel {
    height: 60px;
    cursor: default;
  }
}

@media screen and (min-width: 1024px) {
  .tel {
    position: static;
    display: none;
    width: auto;
    height: auto;
    padding: 0;
    text-align: left;
    background: #282828;
  }
}

.tel__tel {
  font-family: "Roboto-Black", -apple-system, blinkmacsystemfont, "游ゴシック Medium", yugothic, yugothicm, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.1;
}

@media screen and (min-width: 768px) {
  .tel__tel {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .tel__tel {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.tel__num {
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (min-width: 768px) {
  .tel__num {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .tel__num {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

@media screen and (min-width: 1280px) {
  .tel__num {
    font-size: 38px;
    font-size: 3.8rem;
  }
}

.tel__text {
  margin-top: 5px;
  font-size: 10px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.1;
}

@media screen and (min-width: 1024px) {
  .tel__text {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

@media screen and (min-width: 1280px) {
  .tel__text {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

/* slick
--------------------------------------- */
.slick-slider {
  position: relative;
  box-sizing: border-box;
  display: block;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

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

@media screen and (min-width: 768px) {
  .slick-list {
    margin: 0 30px;
  }
}

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

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

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

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

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

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

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

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

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

.slick-slide img {
  display: block;
}

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

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

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

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

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

.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  top: 37%;
  z-index: 50;
  display: block;
  width: 0;
  height: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  background: transparent;
  border-color: transparent #908c8a transparent transparent;
  border-style: solid;
  border-width: 17px 17px 17px 0;
  outline: none;
  transform: translate(0, -50%);
}

@media screen and (min-width: 768px) {
  .slick-prev,
.slick-next {
    top: 30%;
  }
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
  border-color: transparent transparent transparent #908c8a;
  border-width: 17px 0 17px 17px;
}

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

.slick-dots {
  position: absolute;
  bottom: -35px;
  display: block;
  width: 100%;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  padding: 0;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 50%;
}

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

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

.slick-dots li button:hover::before, .slick-dots li button:focus::before {
  background: #13244D;
}

.slick-dots li button::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button::before {
  background: #13244D;
}

/* Body
--------------------------------------- */
body {
  font-family: -apple-system, blinkmacsystemfont, "游ゴシック Medium", yugothic, yugothicm, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, sans-serif;
  font-size: 1.3em;
  color: #111;
  font-kerning: normal;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 1.5em;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

/* link
--------------------------------------- */
a {
  color: #282828;
  text-decoration: none;
}

/* ink
--------------------------------------- */
.ink-rightBottom, .ink-rightCenter, .ink-rightTop, .ink-right, .ink-leftBottom, .ink-left {
  position: absolute;
  z-index: 1;
  width: 400px;
  height: 400px;
}

@media screen and (min-width: 768px) {
  .ink-rightBottom, .ink-rightCenter, .ink-rightTop, .ink-right, .ink-leftBottom, .ink-left {
    width: 800px;
    height: 800px;
    background-size: 800px auto;
  }
}

.ink-left {
  bottom: -50px;
  left: -50%;
}

@media screen and (min-width: 768px) {
  .ink-left {
    bottom: -200px;
    left: -50%;
  }
}

.ink-leftBottom {
  bottom: -50px;
  left: -50%;
}

@media screen and (min-width: 768px) {
  .ink-leftBottom {
    bottom: -300px;
  }
}

.ink-right {
  top: -20px;
  right: -50%;
}

.ink-rightTop {
  top: -300px;
  right: -50%;
}

.ink-rightCenter {
  right: -90%;
}

@media screen and (min-width: 768px) {
  .ink-rightCenter {
    top: -200px;
    right: -55%;
  }
}

.ink-rightBottom {
  right: -50%;
  bottom: -100px;
}

.ink__gray, .ink__white {
  width: 100%;
  height: 100%;
  background: url(/images/t_smile/front/index/ink_gray.png) no-repeat 50% 50%;
  background-size: 400px auto;
}

@media screen and (min-width: 768px) {
  .ink__gray, .ink__white {
    background-size: 800px auto;
  }
}

.ink__white {
  background-image: url(/images/t_smile/front/index/ink_white.png);
}

/* mainVisual
--------------------------------------- */
.mainVisual {
  position: relative;
}

.mainVisual__img {
  padding-top: 100%;
  background: url(/images/t_smile/front/index/mv.jpg) no-repeat 50% 50%/cover;
}

@media screen and (min-width: 768px) {
  .mainVisual__img {
    padding-top: 41.6666666667%;
    background-image: url(/images/t_smile/front/index/mv_pc.jpg);
  }
}

.mainVisual__present {
  position: absolute;
  right: 20px;
  display: block;
  transition: opacity 0.4s ease-out;
  width: 32.1333333333%;
  top: 31.3333333333%;
}

@media screen and (min-width: 768px) {
  .mainVisual__present {
    width: 16.3541666667%;
    top: 30.25%;
    right: 20.8333333333%;
  }
}

.mainVisual__present:hover {
  opacity: 0.7;
}

/* register
--------------------------------------- */
.register {
  position: relative;
  z-index: 10;
  padding: 20px 0;
}

@media screen and (min-width: 768px) {
  .register {
    padding: 30px 0;
  }
}

.register__slogan-white, .register__slogan {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-weight: 900;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.1;
}

@media screen and (min-width: 768px) {
  .register__slogan-white, .register__slogan {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.register__slogan-white {
  color: #fff;
}

.register__switch {
  display: block;
  max-width: 450px;
  margin: 5px auto 0;
  transition: opacity 0.4s ease-out;
}

@media screen and (min-width: 768px) {
  .register__switch {
    max-width: 820px;
    margin-top: 10px;
  }
}

.register__switch:hover {
  opacity: 0.7;
}

.join {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  padding-bottom: 10%;
  background: #f5f5f5;
}

@media screen and (min-width: 768px) {
  .join {
    padding-bottom: 90px;
  }
}

.join__box {
  background: #13244D;
  padding: 10% 3%;
}

@media screen and (min-width: 768px) {
  .join__box {
    padding: 90px 10px;
  }
}

.join__title {
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .join__title {
    margin-bottom: 30px;
    font-size: 48px;
    font-size: 4.8rem;
  }
}

.join__lead {
  margin-top: 10px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .join__lead {
    margin-top: 20px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.join__grid {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .join__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -60px 0 0 0;
  }
}

.join__gridItem {
  text-align: center;
  padding: 20px 10px;
  border: 2px solid #13244D;
  background: #fff;
  margin-bottom: 18px;
}

@media screen and (min-width: 768px) {
  .join__gridItem {
    padding: 40px 20px;
  }
}

@media screen and (min-width: 768px) {
  .join__gridItem + .condition__gridItem {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .join__gridItem {
    width: calc(50% - 18px);
    margin-bottom: 18px;
  }
}

@media screen and (min-width: 1024px) {
  .join__gridItem {
    width: 32%;
    margin-right: 18px;
    margin-bottom: 18px;
  }
}

@media screen and (min-width: 768px) {
  .join__gridItem:nth-child(1) {
    margin-right: 18px;
  }
}

@media screen and (min-width: 1024px) {
  .join__gridItem:nth-child(3) {
    margin-right: 0;
  }
}

@media screen and (min-width: 1024px) {
  .join__gridItem:nth-child(4), .join__gridItem:nth-child(5) {
    margin-bottom: 0;
  }
}

.join__grid--mini {
  display: block;
}

@media screen and (min-width: 1024px) {
  .join__grid--mini {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.join__gridbox {
  width: auto;
  display: block;
}

@media screen and (min-width: 768px) {
  .join__gridbox {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 1024px) {
  .join__gridbox {
    width: 44.5%;
  }
}

@media screen and (min-width: 1024px) {
  .join__gridbox .join__gridItem {
    width: 45.5%;
    padding: 20px 10px;
  }
}

@media screen and (min-width: 1024px) {
  .join__gridbox .join__gridTitle {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .join__gridbox .join__text {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 16px 0;
    margin-top: 10px;
  }
}

@media screen and (min-width: 1024px) {
  .join__gridbox .join__text .point_yellow {
    font-size: 20px;
    font-size: 2rem;
  }
}

.join__point {
  position: relative;
  width: 100%;
  padding: 25px 0;
  margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .join__point {
    width: 98%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1024px) {
  .join__point {
    width: 55%;
    padding: 30px 0;
  }
}

.join__point:after {
  content: '';
  background: url(/images/t_smile/front/index/point_left.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  left: 0;
  width: 59px;
  height: 100%;
}

@media screen and (min-width: 1024px) {
  .join__point:after {
    height: 93%;
  }
}

.join__point:before {
  content: '';
  background: url(/images/t_smile/front/index/point_right.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  right: 0;
  width: 59px;
  height: 100%;
}

@media screen and (min-width: 1024px) {
  .join__point:before {
    height: 93%;
  }
}

.join__point .point_icon {
  width: 62px;
  margin: 0 auto 16px;
}

@media screen and (min-width: 768px) {
  .join__point .point_icon {
    width: 82px;
    margin: 0 auto 20px;
  }
}

.join__point .point_txt {
  width: 80%;
  margin: 0 auto 16px;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .join__point .point_txt {
    font-size: 30px;
    font-size: 3rem;
  }
}

.join__point .point_txt strong {
  color: #CF322A;
}

.join__point .point_notice {
  display: block;
  font-weight: normal;
  text-align: right;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  .join__point .point_notice {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.join__gridTitle {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .join__gridTitle {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.join__text {
  margin-top: 10px;
  position: relative;
  background: #13244D;
  border-radius: 5px;
  color: #fff;
  line-height: 1.1;
  padding: 20px 0 18px;
}

@media screen and (min-width: 768px) {
  .join__text {
    margin-top: 20px;
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: bold;
    letter-spacing: -0.06em;
  }
}

.join__text:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #13244D;
}

.join__pointtext {
  margin-top: 10px;
  position: relative;
  background: #13244D;
  border-radius: 5px;
  color: #fff;
  line-height: 1.1;
  padding: 12px 0 8px;
}

@media screen and (min-width: 768px) {
  .join__pointtext {
    margin-top: 20px;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: -0.06em;
  }
}

.join__pointtext:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #13244D;
}

.join .point_yellow {
  color: #FFFD2F;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: bold;
}

.join__img {
  margin: 35px auto 0;
}

.join__img.icon_register {
  width: 138px;
}

.join__img.icon_join {
  width: 120px;
}

.join__img.icon_enrollment {
  width: 109px;
}

.join__img.icon_retirement {
  width: 136px;
}

@media screen and (min-width: 768px) {
  .join__img.icon_retirement {
    width: 94px;
  }
}

.join__img.icon_rejoin {
  width: 121px;
}

@media screen and (min-width: 768px) {
  .join__img.icon_rejoin {
    width: 82px;
  }
}

.join__strong {
  color: #CF322A;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .join__strong {
    font-size: 30px;
    font-size: 3rem;
  }
}

/* condition
--------------------------------------- */
.condition {
  position: relative;
  z-index: 10;
  padding: 40px 0;
}

@media screen and (min-width: 768px) {
  .condition {
    padding: 60px 0 80px;
  }
}

.condition__grid {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .condition__grid {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0 0 -15px;
  }
}

.condition__gridItem {
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
}

.condition__gridItem + .condition__gridItem {
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .condition__gridItem + .condition__gridItem {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .condition__gridItem {
    width: calc(50% - 15px);
    margin-left: 15px;
  }
}

@media screen and (min-width: 1024px) {
  .condition__gridItem {
    width: calc(25% - 15px);
  }
}

@media screen and (min-width: 768px) {
  .condition__gridItem:nth-of-type(3), .condition__gridItem:nth-of-type(4) {
    margin-top: 15px;
  }
}

@media screen and (min-width: 1024px) {
  .condition__gridItem:nth-of-type(3), .condition__gridItem:nth-of-type(4) {
    margin-top: 0;
  }
}

.condition__main {
  padding: 20px 10px;
  background: #13244D;
}

@media screen and (min-width: 768px) {
  .condition__main {
    padding: 20px 5px;
  }
}

.condition__title {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .condition__title {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.condition__text {
  margin-top: 10px;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .condition__text {
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: -0.06em;
  }
}

.condition__img {
  overflow: hidden;
  border-radius: 0 0 4px 4px;
}

/* point
--------------------------------------- */
.point {
  position: relative;
  z-index: 10;
  padding: 40px 0;
}

@media screen and (min-width: 768px) {
  .point {
    padding: 60px 0 80px;
  }
}

@media screen and (min-width: 768px) {
  .point__head {
    padding-top: 40px;
  }
}

.point__title {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-weight: 900;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .point__title {
    font-size: 56px;
    font-size: 5.6rem;
  }
}

.point__text {
  margin-top: 15px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .point__text {
    margin-top: 20px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.point__new {
  position: absolute;
  top: 20px;
  right: 0;
  width: 30%;
  transition: opacity 0.4s ease-out;
}

@media screen and (min-width: 768px) {
  .point__new {
    top: 40px;
    width: 314px;
    height: 314px;
  }
}

.point__new:hover {
  opacity: 0.7;
}

.point__grid {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .point__grid {
    display: flex;
    justify-content: center;
    margin: 60px 0 0 -15px;
  }
}

.point__gridItem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .point__gridItem {
    width: calc(33.3333333% - 15px);
    margin-left: 15px;
  }
}

.point__gridItem::before {
  position: absolute;
  top: 10px;
  left: 10px;
  display: block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  content: "";
  border: 2px solid #13244D;
}

.point__gridItem + .point__gridItem {
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .point__gridItem + .point__gridItem {
    margin-top: 0;
  }
}

.point__gridItem:hover .point__img,
.point__gridItem:hover .point__gridTitle {
  opacity: 0.5;
}

.point__gridItem:hover .point__gridTitle {
  text-decoration: underline;
}

.point__gridInner {
  padding: 40px 20px;
}

@media screen and (min-width: 768px) {
  .point__gridInner {
    padding: 50px 30px;
  }
}

.point__gridInner::before, .point__gridInner::after {
  position: absolute;
  display: block;
  width: 10px;
  height: 2px;
  content: "";
  background: #fff;
}

.point__gridInner::before {
  top: 10px;
  left: 12px;
}

.point__gridInner::after {
  right: 12px;
  bottom: 10px;
}

.point__img {
  max-width: 200px;
  margin: auto;
  transition: opacity 0.4s ease-out;
}

@media screen and (min-width: 768px) {
  .point__img {
    max-width: 240px;
  }
}

.point__img.icon3 {
  max-width: 110px;
}

@media screen and (min-width: 768px) {
  .point__img.icon3 {
    max-width: 141px;
  }
}

.point__gridTitle {
  margin-top: 15px;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  transition: opacity 0.4s ease-out;
}

@media screen and (min-width: 768px) {
  .point__gridTitle {
    margin-top: 20px;
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .point__gridTitle {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.point__detail {
  margin-top: 20px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .point__detail {
    margin-top: 30px;
  }
}

.point__link {
  display: inline-block;
  padding: 15px 20px;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  color: #13244D;
  border: 2px solid #13244D;
}

@media screen and (min-width: 768px) {
  .point__link {
    padding: 15px 30px;
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .point__link {
    padding: 15px 40px;
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.point__link:hover {
  text-decoration: underline;
}

.point__red {
  color: #CF322A;
}

/* support
--------------------------------------- */
.support {
  position: relative;
  z-index: 10;
  padding: 40px 0;
}

@media screen and (min-width: 768px) {
  .support {
    padding: 60px 0 80px;
  }
}

.support__grid {
  margin-top: 20px;
  background: #fff;
  border: 2px solid #13244D;
}

@media screen and (min-width: 768px) {
  .support__grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
  }
}

.support__gridItem {
  padding: 30px 20px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .support__gridItem {
    width: 33.3333333%;
    padding: 40px 30px;
  }
}

.support__gridItem + .support__gridItem {
  border-top: 2px solid #13244D;
}

@media screen and (min-width: 768px) {
  .support__gridItem + .support__gridItem {
    border-top: none;
  }
  .support__gridItem + .support__gridItem:not(:last-of-type):not(:nth-of-type(4)) {
    border-left: 2px solid #13244D;
  }
}

@media screen and (min-width: 768px) {
  .support__gridItem:nth-of-type(4), .support__gridItem:nth-of-type(5) {
    width: 100%;
    border-top: 2px solid #13244D;
  }
}

@media screen and (min-width: 768px) {
  .support__gridInner-iso, .support__gridInner {
    display: flex;
    align-items: center;
    max-width: 780px;
    margin: auto;
  }
}

@media screen and (min-width: 768px) {
  .support__gridInner-iso {
    max-width: 920px;
    margin: auto;
  }
}

.support__title {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .support__title {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .support__title {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.support__titleLarge {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .support__titleLarge {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .support__titleLarge {
    font-size: 30px;
    font-size: 3rem;
  }
}

.support__num {
  margin-top: 5px;
  font-family: "Roboto-Black", -apple-system, blinkmacsystemfont, "游ゴシック Medium", yugothic, yugothicm, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, sans-serif;
  color: #CF322A;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.1;
}

@media screen and (min-width: 768px) {
  .support__num {
    font-size: 48px;
    font-size: 4.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .support__num {
    margin-top: 10px;
    font-size: 70px;
    font-size: 7rem;
  }
}

.support__jp {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .support__jp {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .support__jp {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.support__comment {
  margin-top: 10px;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .support__comment {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.support__red {
  color: #CF322A;
}

.support__text {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .support__text {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.support__img-reason, .support__img {
  margin: 20px auto 0;
}

.support__img {
  max-width: 180px;
}

@media screen and (min-width: 768px) {
  .support__img {
    max-width: 240px;
  }
}

.support__img-reason {
  max-width: 240px;
}

@media screen and (min-width: 768px) {
  .support__img-reason {
    max-width: 300px;
  }
}

.support__img.icon_1 {
  max-width: 118px;
}

@media screen and (min-width: 768px) {
  .support__img.icon_1 {
    max-width: 118px;
  }
}

.support__img.icon_2 {
  max-width: 200px;
}

@media screen and (min-width: 768px) {
  .support__img.icon_2 {
    max-width: 245px;
  }
}

@media screen and (min-width: 768px) {
  .support__mian-iso, .support__mian {
    width: calc(100% - 160px);
    padding-right: 20px;
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .support__mian-iso {
    width: calc(100% - 300px);
  }
}

.support__logo-iso, .support__logo {
  max-width: 180px;
  margin: 20px auto 0;
}

@media screen and (min-width: 768px) {
  .support__logo-iso, .support__logo {
    width: 100%;
    max-width: 160px;
    margin: 0;
  }
}

.support__sub {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .support__sub {
    width: 300px;
  }
}

.support__logo-iso {
  max-width: 300px;
}

@media screen and (min-width: 768px) {
  .support__logo-iso {
    max-width: 300px;
  }
}

/* found
--------------------------------------- */
.found {
  position: relative;
  z-index: 10;
  padding: 60px 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .found {
    padding: 110px 0;
  }
}

.found__slogan {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-weight: 900;
  color: #fff;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .found__slogan {
    font-size: 56px;
    font-size: 5.6rem;
  }
}

.found__text {
  margin-top: 10px;
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  .found__text {
    margin-top: 20px;
    font-size: 20px;
    font-size: 2rem;
  }
}

/* inexperienced
--------------------------------------- */
.inexperienced {
  position: relative;
  z-index: 10;
  padding: 40px 0;
}

@media screen and (min-width: 768px) {
  .inexperienced {
    padding: 60px 0 80px;
  }
}

.inexperienced__grid {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  border: 2px solid #13244D;
}

@media screen and (min-width: 768px) {
  .inexperienced__grid {
    margin-top: 20px;
  }
}

.inexperienced__gridItem {
  width: 50%;
  padding: 20px 10px;
  background: #fff;
  border-bottom: 2px solid #13244D;
  transition: background-color 0.6s ease-out;
}

@media screen and (min-width: 768px) {
  .inexperienced__gridItem {
    width: 25%;
    padding: 50px 10px 40px;
    border-left: 2px solid #13244D;
  }
  .inexperienced__gridItem:nth-of-type(n + 5) {
    border-bottom: none;
  }
}

.inexperienced__gridItem:nth-of-type(even) {
  border-left: 2px solid #13244D;
}

.inexperienced__gridItem:nth-of-type(n + 7) {
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .inexperienced__gridItem:nth-of-type(1), .inexperienced__gridItem:nth-of-type(5) {
    border-left: none;
  }
}

.inexperienced__title {
  margin-top: 20px;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .inexperienced__title {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .inexperienced__title {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.inexperienced__img {
  width: 60%;
  max-width: 100px;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .inexperienced__img {
    width: 60%;
    max-width: 120px;
  }
}

.inexperienced__img.icon110 {
  width: 90px;
}

@media screen and (min-width: 768px) {
  .inexperienced__img.icon110 {
    width: 110px;
  }
}

.inexperienced__img.icon100 {
  width: 85px;
}

@media screen and (min-width: 768px) {
  .inexperienced__img.icon100 {
    width: 100px;
  }
}

.inexperienced .balloon {
  margin-top: 30px;
}

.inexperienced .balloon__title {
  background: #282828;
  color: #fff;
  font-weight: bold;
  position: relative;
  text-align: center;
  border-radius: 5px;
  padding: 2%;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .inexperienced .balloon__title {
    font-size: 28px;
    font-size: 2.8rem;
    padding: 16px 0 12px;
  }
}

.inexperienced .balloon__title:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -20px;
  border: 20px solid transparent;
  border-top: 30px solid #282828;
}

.inexperienced .balloon__title .big {
  font-size: 30px;
  font-size: 3rem;
}

@media screen and (min-width: 768px) {
  .inexperienced .balloon__title .big {
    font-size: 36px;
    font-size: 3.6rem;
  }
}

/* slider
--------------------------------------- */
.slider {
  position: relative;
  z-index: 10;
  padding: 40px 0;
}

@media screen and (min-width: 768px) {
  .slider {
    padding: 60px 0 80px;
  }
}

.slider__grid {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .slider__grid {
    margin-top: 30px;
  }
}

.slider img {
  width: 100%;
}

.slider__text {
  margin-top: 15px;
  text-align: center;
}

/* explanation
--------------------------------------- */
.explanation__title, .explanation__titleMiddle, .explanation__titleSmall {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}

.explanation__title {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .explanation__title {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.explanation__title + .explanation__titleMiddle,
.explanation__title + .explanation__text {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .explanation__title + .explanation__titleMiddle,
.explanation__title + .explanation__text {
    margin-top: 40px;
  }
}

.explanation__titleMiddle {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 15px;
  margin-top: 40px;
  border-bottom: 1px solid #d8d8d8;
}

@media screen and (min-width: 768px) {
  .explanation__titleMiddle {
    padding-bottom: 20px;
    margin-top: 50px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.explanation__titleMiddle + .explanation__text {
  margin-top: 15px;
}

.explanation__titleMiddle + .explanation__ordered {
  margin-top: 20px;
}

.explanation__titleSmall {
  margin-top: 15px;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .explanation__titleSmall {
    margin-top: 20px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.explanation__titleSmall + .explanation__text {
  margin-top: 15px;
}

.explanation__text + .explanation__text,
.explanation__text + .explanation__ordered {
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .explanation__text + .explanation__text,
.explanation__text + .explanation__ordered {
    margin-top: 20px;
  }
}

.explanation__endtext {
  margin-top: 15px;
  text-align: right;
}

.explanation__revision {
  margin-top: 15px;
}

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

.explanation__ordered + .explanation__text {
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .explanation__ordered + .explanation__text {
    margin-top: 20px;
  }
}

.explanation__ordered + .explanation__titleMiddle {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .explanation__ordered + .explanation__titleMiddle {
    margin-top: 40px;
  }
}

.explanation__orderedItem {
  margin-left: 20px;
  list-style-type: decimal;
}

.explanation__orderedItem + .explanation__orderedItem {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .explanation__orderedItem + .explanation__orderedItem {
    margin-top: 15px;
  }
}

.explanation__link {
  text-decoration: underline;
}

.explanation__link:hover {
  text-decoration: none;
}

.explanation__cell {
  margin-top: 20px;
}

.explanation__cell + .explanation__titleMiddle {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .explanation__cell + .explanation__titleMiddle {
    margin-top: 50px;
  }
}

.explanation__cellRow + .explanation__cellRow {
  margin-top: 10px;
}

.explanation__cellTitle {
  padding: 10px;
  font-weight: bold;
  background: #f0f0f0;
}

@media screen and (min-width: 768px) {
  .explanation__cellTitle {
    padding: 15px;
  }
}

.explanation__cellText {
  padding: 10px;
}

@media screen and (min-width: 768px) {
  .explanation__cellText {
    padding: 15px;
  }
}

/* form
--------------------------------------- */
.form__row {
  padding: 20px 0;
  border-bottom: 1px solid #d8d8d8;
}

@media screen and (min-width: 768px) {
  .form__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}

.form__row:first-of-type {
  border-top: 1px solid #d8d8d8;
}

.form__row + .switch {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .form__row + .switch {
    margin-top: 40px;
  }
}

.form__title {
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .form__title {
    width: 240px;
    padding-right: 10px;
  }
}

.form__required {
  padding: 4px 10px;
  margin-left: 10px;
  color: #fff;
  background: #cf0905;
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.1;
}

@media screen and (min-width: 768px) {
  .form__required {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.form__col {
  margin-top: 5px;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .form__col {
    width: calc(100% - 240px);
    margin-top: 0;
  }
}

.form__input {
  margin-top: 5px;
}

@media screen and (min-width: 768px) {
  .form__input {
    margin-top: 10px;
  }
}

.form__listItem + .form__listItem {
  margin-top: 5px;
}

.form__error {
  padding: 5px 10px;
  margin-top: 5px;
  color: #fff;
  background: #be4033;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .form__error {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.form__flat-w100, .form__flat {
  width: 100%;
  padding: 15px;
  border: 1px solid #d8d8d8;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  .form__flat-w100, .form__flat {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.form__flat-w100 {
  width: 100px;
}

/* login
--------------------------------------- */
.login__title {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .login__title {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.login__cell {
  padding-top: 10px;
}

@media screen and (min-width: 768px) {
  .login__cell {
    padding-top: 20px;
  }
}

.login__cell + .switch {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .login__cell + .switch {
    margin-top: 40px;
  }
}

.login__row {
  margin-top: 20px;
}

.login__col {
  margin-top: 5px;
}

.login__error {
  padding: 5px;
  margin-top: 10px;
  color: #fff;
  background: #ce040f;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.1;
}

/* switch
--------------------------------------- */
@media screen and (min-width: 768px) {
  .switch {
    display: flex;
    justify-content: center;
    margin-left: -10px;
  }
}

@media screen and (min-width: 768px) {
  .switch__grid {
    width: calc(50% - 10px);
    margin-left: 10px;
  }
}

.switch__grid + .switch__grid {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .switch__grid + .switch__grid {
    margin-top: 0;
  }
}

.switch__link {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px;
  color: #fff;
  text-align: center;
  background: #13244D;
  border: 1px solid #13244D;
  transition: background-color 0.6s ease-out;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.1;
}

@media screen and (min-width: 768px) {
  .switch__link {
    padding: 20px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.switch__link::before {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  content: "";
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.switch__link:hover {
  color: #13244D;
  background: #fff;
}

.switch__link:hover::before {
  border-color: #13244D;
}

.switch__back {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px;
  color: #111;
  text-align: center;
  background: #e5e5e5;
  border: 1px solid #111;
  transition: background-color 0.6s ease-out;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.1;
}

@media screen and (min-width: 768px) {
  .switch__back {
    padding: 20px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.switch__back::before {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  content: "";
  border-top: 1px solid #111;
  border-right: 1px solid #111;
  transform: rotate(-135deg);
}

.switch__back:hover {
  color: #111;
  background: #fff;
}

.switch__back:hover::before {
  border-color: #111;
}

/* utility
--------------------------------------- */
.u_flat {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-size: 1.6rem;
  border: 1px solid #e8e8e8;
  transition: all 0.4s ease-out;
}

@media screen and (min-width: 768px) {
  .u_flat {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.u_flat:focus {
  background: #f5f5f5;
  border: 1px solid #d8d8d8;
}

/* flow
--------------------------------------- */
.flow {
  padding-bottom: 80px;
}

@media screen and (min-width: 768px) {
  .flow {
    padding-bottom: 100px;
  }
}

.flow__exchangeSlogan, .flow__title, .flow__headTitle, .flow__headSlogan {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-weight: 900;
}

.flow__head {
  margin-top: 40px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .flow__head {
    margin-top: 80px;
  }
}

.flow__headSlogan {
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (min-width: 768px) {
  .flow__headSlogan {
    font-size: 40px;
    font-size: 4rem;
  }
}

.flow__headTitle {
  margin-top: 10px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (min-width: 768px) {
  .flow__headTitle {
    font-size: 30px;
    font-size: 3rem;
  }
}

.flow__marker {
  background: linear-gradient(transparent 75%, rgba(206, 49, 46, 0.3) 75%);
}

.flow__wrap {
  display: flex;
  margin-left: -20px;
}

@media screen and (min-width: 768px) {
  .flow__wrap {
    margin-left: -40px;
  }
}

.flow__wrap .flow__block {
  width: calc(50% - 20px);
  margin-left: 20px;
}

@media screen and (min-width: 768px) {
  .flow__wrap .flow__block {
    width: calc(50% - 40px);
    margin: 40px 0 0 40px;
  }
}

.flow__block-flex, .flow__block {
  position: relative;
  padding: 20px 15px;
  margin-top: 30px;
  border: 2px solid #13244D;
}

@media screen and (min-width: 768px) {
  .flow__block-flex, .flow__block {
    width: calc(50% - 40px);
    padding: 40px 50px;
    margin: 40px 0 0 40px;
  }
}

@media screen and (min-width: 768px) {
  .flow__block-flex {
    display: flex;
    align-items: center;
    width: 100%;
    margin-left: 0;
  }
}

.flow__block + .flow__block {
  margin-top: 30px;
}

.flow__img {
  width: 80px;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .flow__img {
    width: 100px;
  }
}

.flow__main-circle, .flow__main-flex, .flow__main {
  margin-top: 20px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .flow__main-flex {
    width: calc(100% - 150px);
    margin: 0 0 0 50px;
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .flow__main-circle {
    width: calc(100% - 150px);
    padding-right: 180px;
    margin: 0 0 0 50px;
    text-align: left;
  }
}

.flow__en {
  display: flex;
  display: inline-block;
  padding: 3px 15px;
  margin: auto;
  font-family: "Roboto-Black", -apple-system, blinkmacsystemfont, "游ゴシック Medium", yugothic, yugothicm, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, sans-serif;
  color: #fff;
  background: #13244D;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.1;
}

@media screen and (min-width: 768px) {
  .flow__en {
    padding: 5px 20px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.flow__title {
  padding-bottom: 15px;
  margin: 10px 0 15px;
  font-size: 15px;
  font-size: 1.5rem;
  border-bottom: 1px solid #e8e8e8;
}

@media screen and (min-width: 768px) {
  .flow__title {
    font-size: 24px;
    font-size: 2.4rem;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.flow__circle {
  position: absolute;
  top: -30px;
  right: -10px;
  width: 40%;
  max-width: 160px;
}

@media screen and (min-width: 768px) {
  .flow__circle {
    top: -50px;
    max-width: 240px;
  }
}

.flow__text {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .flow__text {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.flow__textIndent {
  padding-left: 1em;
  margin-top: 5px;
  text-align: left;
  text-indent: -1em;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .flow__textIndent {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.flow__arrow-left, .flow__arrow-top, .flow__arrow {
  position: absolute;
  left: calc(50% - 2px);
  width: 4px;
  height: 30px;
  background: #13244D;
}

@media screen and (min-width: 768px) {
  .flow__arrow-left, .flow__arrow-top, .flow__arrow {
    height: 40px;
  }
}

.flow__arrow-left::before, .flow__arrow-top::before, .flow__arrow::before {
  position: absolute;
  bottom: 2px;
  left: calc(50% - 10px);
  width: 20px;
  height: 20px;
  content: "";
  border-top: 4px solid #13244D;
  border-right: 4px solid #13244D;
  transform: rotate(135deg);
}

.flow__arrow {
  bottom: -30px;
}

@media screen and (min-width: 768px) {
  .flow__arrow {
    bottom: -40px;
  }
}

.flow__arrow-top {
  top: -34px;
}

@media screen and (min-width: 768px) {
  .flow__arrow-top {
    top: -44px;
  }
}

.flow__arrow-left {
  top: calc(50% - 20px);
  left: -13px;
  height: 18px;
  transform: rotate(90deg);
}

@media screen and (min-width: 768px) {
  .flow__arrow-left {
    top: calc(50% - 20px);
    left: -22px;
  }
}

.flow__exchange {
  margin-top: 40px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .flow__exchange {
    margin-top: 60px;
  }
}

.flow__exchangeSlogan {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.1;
}

@media screen and (min-width: 768px) {
  .flow__exchangeSlogan {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.flow__exchangeText {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .flow__exchangeText {
    margin-top: 20px;
  }
}

.flow__link {
  color: #13244D;
  text-decoration: underline;
}

.flow__link:hover {
  text-decoration: none;
}

/* job
--------------------------------------- */
.job {
  position: relative;
  z-index: 10;
  padding: 40px 0;
}

@media screen and (min-width: 768px) {
  .job {
    padding: 60px 0 80px;
  }
}

.job__block {
  padding: 20px 0;
  border-bottom: 1px solid #e8e8e8;
}

@media screen and (min-width: 768px) {
  .job__block {
    display: flex;
    padding: 30px 0;
  }
}

.job__block:first-of-type {
  border-top: 1px solid #e8e8e8;
}

@media screen and (min-width: 768px) {
  .job__sub {
    width: 30%;
  }
}

.job__main {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .job__main {
    width: 70%;
    padding-left: 30px;
    margin-top: 0;
  }
}

.job__title {
  font-weight: bold;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .job__title {
    font-size: 1.5em;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.job__text + .job__text {
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .job__text + .job__text {
    margin-top: 20px;
  }
}

.job__link {
  position: relative;
  color: #13244D;
  text-decoration: underline;
}

.job__link::before {
  position: absolute;
  top: 4px;
  right: -15px;
  display: block;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 2px solid #13244D;
  border-right: 2px solid #13244D;
  transform: rotate(45deg);
}

.job__link:hover {
  text-decoration: none;
}

/* pointVisual
--------------------------------------- */
.pointVisual {
  position: relative;
  background: url(/images/t_smile/front/point_fc/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
  padding-top: 106.6666666667%;
}

@media screen and (min-width: 768px) {
  .pointVisual {
    height: 600px;
    padding-top: 0;
    background-image: url(/images/t_smile/front/point_fc/mv_pc.jpg);
  }
}

.pointVisual__main {
  position: absolute;
  top: 50%;
  padding-left: 15px;
  font-size: 0;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .pointVisual__main {
    top: 40%;
    right: 0;
    left: 0;
    max-width: 1140px;
    padding: 0 30px;
    margin: auto;
  }
}

.pointVisual__title {
  margin-top: 20px;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-weight: 900;
  color: #ce312e;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .pointVisual__title {
    font-size: 48px;
    font-size: 4.8rem;
  }
}

.pointVisual__text {
  display: inline-block;
  padding: 5px;
  margin-top: 20px;
  color: #fff;
  letter-spacing: -0.05em;
  background: #ce312e;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.1;
}

@media screen and (min-width: 768px) {
  .pointVisual__text {
    padding: 5px 10px;
    margin-top: 30px;
    letter-spacing: 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.pointVisual__text:last-of-type {
  margin-top: 5px;
}

@media screen and (min-width: 768px) {
  .pointVisual__text:last-of-type {
    margin-top: 10px;
  }
}

.pointVisual__point {
  width: 80px;
}

@media screen and (min-width: 768px) {
  .pointVisual__point {
    position: absolute;
    top: -20%;
    left: 55%;
    width: 14.5454545455%;
  }
}

/* system
--------------------------------------- */
.system {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .system {
    margin-top: -120px;
  }
}

.system__title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 768px) {
  .system__title {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

@media screen and (min-width: 768px) {
  .system__grid {
    display: flex;
    flex-wrap: wrap;
    margin: -10px 0 0 -40px;
  }
}

.system__gridItem {
  position: relative;
  margin-top: 20px;
  border: 1px solid #e8e8e8;
}

@media screen and (min-width: 768px) {
  .system__gridItem {
    width: calc(50% - 40px);
    margin: 40px 0 0 40px;
    text-align: center;
  }
}

.system__gridTitle {
  padding: 15px;
  margin: -1px;
  color: #fff;
  background: #282828;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .system__gridTitle {
    padding: 25px 20px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.system__body {
  padding: 20px;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .system__body {
    padding: 30px;
  }
}

.system__slogan {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.1;
}

@media screen and (min-width: 768px) {
  .system__slogan {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.system__point {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-weight: 900;
  color: #ce312e;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .system__point {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.system__num {
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .system__num {
    font-size: 36px;
    font-size: 3.6rem;
  }
}

.system__text {
  margin-top: 5px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .system__text {
    margin-top: 10px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

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

.system__text-strong {
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .system__text-strong {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.system__patent {
  margin-top: 5px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .system__patent {
    margin-top: 10px;
  }
}

.system__balloon {
  position: absolute;
  top: -30px;
  right: 10px;
  width: 80px;
}

@media screen and (min-width: 768px) {
  .system__balloon {
    top: -50px;
    right: -20px;
    width: 120px;
  }
}

/* use
--------------------------------------- */
.use {
  margin: 40px 0 60px;
}

@media screen and (min-width: 768px) {
  .use {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .use__main {
    width: 340px;
  }
}

@media screen and (min-width: 768px) {
  .use__main.top {
    margin-top: 50px;
  }
}

.use__title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 768px) {
  .use__title {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.use__text {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .use__text {
    margin-top: 20px;
  }
}

.use__img {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .use__img {
    width: calc(100% - 380px);
    margin-top: 0;
  }
}

.use__comment {
  margin-top: 10px;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .use__comment {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.referrals {
  padding: 64px 0;
}

.referrals__list {
  margin: 20px auto 5px;
}

@media screen and (min-width: 600px) {
  .referrals__list {
    display: flex;
    flex-wrap: wrap;
    margin: 43px auto 10px;
  }
}

@media screen and (min-width: 1024px) {
  .referrals__list {
    width: 1080px;
    margin: 86px auto 20px;
  }
}

.referrals__list li {
  align-self: center;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (min-width: 600px) {
  .referrals__list li {
    width: 50%;
  }
}

@media screen and (min-width: 1024px) {
  .referrals__list li {
    width: 25%;
  }
}

.referrals__list li.toyota-kyushu img {
  width: 93px;
}

@media screen and (min-width: 768px) {
  .referrals__list li.toyota-kyushu img {
    width: 117px;
  }
}

.referrals__list li.denso img {
  width: 162px;
}

@media screen and (min-width: 768px) {
  .referrals__list li.denso img {
    width: 203px;
  }
}

.referrals__list li.daihatsu img {
  width: 180px;
}

@media screen and (min-width: 768px) {
  .referrals__list li.daihatsu img {
    width: 226px;
  }
}

.referrals__list li.hino img {
  width: 82px;
}

@media screen and (min-width: 768px) {
  .referrals__list li.hino img {
    width: 103px;
  }
}

.referrals__list li.toyota-boshoku img {
  width: 170px;
}

@media screen and (min-width: 768px) {
  .referrals__list li.toyota-boshoku img {
    width: 213px;
  }
}

.referrals__list li.denso-kyushu img {
  width: 176px;
}

@media screen and (min-width: 768px) {
  .referrals__list li.denso-kyushu img {
    width: 220px;
  }
}

.referrals__list li.kyosan img {
  width: 59px;
}

@media screen and (min-width: 768px) {
  .referrals__list li.kyosan img {
    width: 74px;
  }
}

.referrals__list li.nissan-kyushu img {
  width: 175px;
}

@media screen and (min-width: 768px) {
  .referrals__list li.nissan-kyushu img {
    width: 219px;
  }
}

.referrals__lead {
  background: #ececec;
  text-align: center;
  padding: 16px;
  margin: 0 auto;
  width: 90%;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (min-width: 1024px) {
  .referrals__lead {
    padding: 16px 0;
    width: 760px;
  }
}

@media screen and (min-width: 768px) {
  .referrals__lead {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
/*# sourceMappingURL=index.css.map */