@charset "UTF-8";
/* --------------------------------------------------------------------------------
 * web fonts
-------------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;700;900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
/**
* 1366pxから1920pxにかけて、徐々に拡大していく計算
* width: calculateY(1000, 0.1) + px;
* のように使う。第二引数は省略可。デフォルトは0.1
*/
/* ----------------------------------------------------------------------
 reset (exculding 'sup')
---------------------------------------------------------------------- */
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, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

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

caption, th {
  text-align: left;
}

img {
  vertical-align: middle;
}

/* ----------------------------------------------------------------------
 basic setting
---------------------------------------------------------------------- */
body {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  color: #161f3e;
  line-height: 1.5;
  /*
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  */
}

body * {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

input, button, textarea, select {
  color: #161f3e;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-size: 16px;
}

textarea {
  vertical-align: top;
}

*:focus {
  outline: none;
}

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

a:hover {
  backface-visibility: hidden;
}

/* ----------------------------------------------------------------------
 common class
---------------------------------------------------------------------- */
@media only screen and (min-width: 751px) {
  .pc-non {
    display: none !important;
  }
}
@media only screen and (max-width: 750px) {
  .sp-non {
    display: none !important;
  }
}
.mb0 {
  margin-bottom: 0;
}

.ta-center {
  text-align: center;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.telLink {
  color: inherit;
  text-decoration: none;
}
@media only screen and (min-width: 751px) {
  .telLink {
    pointer-events: none;
  }
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .wrapper {
    width: auto;
  }
}

.hover-opacity {
  transition: 0.3s;
}
@media only screen and (min-width: 751px) {
  .hover-opacity:hover {
    opacity: 0.7;
  }
}

.hoverTxt {
  text-decoration: none;
  color: inherit;
}
.hoverTxt:hover {
  text-decoration: underline;
}

.require {
  display: inline-block;
  background-color: #B81544;
  color: #fff;
  font-size: 1.4rem;
  padding: 3px 5px;
  border-radius: 4px;
  margin-left: 5px;
}

.color-red {
  color: #B81544;
}

.color-green {
  color: #17B2A0;
}

.btn-default {
  display: flex;
  max-width: 100%;
  width: 352px;
  height: 68px;
  background-color: #fff;
  border-radius: 50vh;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 900;
  color: #17B2A0;
  text-decoration: none;
  border: 1px solid #17B2A0;
  margin: 0 auto;
}
@media only screen and (max-width: 750px) {
  .btn-default {
    height: 58px;
    font-size: 20px;
  }
}
.btn-default.-green {
  color: #fff;
  background-color: #17B2A0;
}
@media (hover: hover) {
  .btn-default {
    transition: opacity 0.3s;
  }
  .btn-default:hover {
    opacity: 0.7;
  }
}

/* ----------------------------------------------------------------------
 Button
---------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s;
}
.header.is-fixed {
  background-color: rgba(255, 255, 255, 0.5);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 20px 20px;
}
@media only screen and (max-width: 750px) {
  .header__inner {
    width: 100%;
    padding: 10px 20px 10px 10px;
  }
}
@media only screen and (max-width: 750px) {
  .header__logo {
    width: 178px;
  }
}
.header__right {
  display: flex;
}
.headerTel {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 750px) {
  .headerTel__icon {
    display: none;
  }
}
.headerTel__right {
  text-align: center;
  margin-left: 5px;
}
@media only screen and (max-width: 750px) {
  .headerTel__right {
    margin: 0;
  }
}
.headerTel__message {
  font-size: 16px;
  font-weight: 900;
  color: #17B2A0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 750px) {
  .headerTel__message {
    font-size: 10px;
  }
}
.headerTel__message:before {
  content: "";
  width: 7px;
  height: 12px;
  background: url(../img/tel_line_left.png) no-repeat center/contain;
  margin-right: 6px;
}
@media only screen and (max-width: 750px) {
  .headerTel__message:before {
    width: 5px;
    height: 8px;
  }
}
.headerTel__message:after {
  content: "";
  width: 7px;
  height: 12px;
  background: url(../img/tel_line_right.png) no-repeat center/contain;
  margin-left: 6px;
}
@media only screen and (max-width: 750px) {
  .headerTel__message:after {
    width: 5px;
    height: 8px;
  }
}
.headerTel__tel {
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  color: #17B2A0;
}
@media only screen and (max-width: 750px) {
  .headerTel__tel {
    font-size: 14px;
  }
}
@media only screen and (max-width: 750px) {
  .headerTel__tel a {
    display: flex;
    width: 146px;
    height: 26px;
    background-color: #fff;
    border: 1px solid #17B2A0;
    border-radius: 50vh;
    color: #17B2A0;
    align-items: center;
    justify-content: center;
  }
}
.headerTel__tel img {
  margin-right: 8px;
}
.headerButtons {
  display: flex;
  margin-left: 10px;
}
@media only screen and (max-width: 750px) {
  .headerButtons {
    position: fixed;
    width: 100%;
    background-color: rgba(210, 239, 237, 0.9);
    bottom: 0px;
    left: 0px;
    padding: 16px 10px;
    justify-content: space-between;
    margin: 0;
  }
}
.headerButtons__item {
  margin-left: 10px;
}
@media only screen and (max-width: 750px) {
  .headerButtons__item {
    margin: 0;
    width: calc(50% - 3px);
  }
}
.headerButtons a {
  display: block;
  width: 200px;
  font-size: 14px;
  font-weight: 900;
  padding: 9px 10px;
  border: 1px solid #17B2A0;
  text-align: center;
  background-color: #fff;
  color: #17B2A0;
  text-decoration: none;
  border-radius: 50vh;
}
@media only screen and (max-width: 750px) {
  .headerButtons a {
    width: 100%;
    font-size: 13px;
    padding: 8px 0px;
  }
}
.headerButtons a.-green {
  background-color: #17B2A0;
  color: #fff;
}

.main {
  overflow: hidden;
}

.hero {
  height: 644px;
  background: url(../img/hero_bg.png) center center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero__img {
  margin-top: auto;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .hero {
    height: auto;
    background: none;
  }
}

.intro {
  padding: 120px 0 130px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .intro {
    padding: 45px 15px 64px;
  }
}
.intro__title {
  display: inline-block;
  position: relative;
  font-size: 32px;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .intro__title {
    font-size: 20px;
  }
}
.intro__title .large {
  font-size: 42px;
  color: #B81544;
}
@media only screen and (max-width: 750px) {
  .intro__title .large {
    font-size: 26px;
  }
}
.intro__title:before {
  content: "";
  background: url(../img/intro_title_line_left.png) center center/contain no-repeat;
  width: 27px;
  height: 32px;
  position: absolute;
  left: -87px;
  top: 19px;
}
@media only screen and (max-width: 750px) {
  .intro__title:before {
    width: 24px;
    height: 28px;
    left: -36px;
    top: auto;
    bottom: 5px;
  }
}
.intro__title:after {
  content: "";
  background: url(../img/intro_title_line_right.png) center center/contain no-repeat;
  width: 27px;
  height: 32px;
  position: absolute;
  right: -87px;
  top: 19px;
}
@media only screen and (max-width: 750px) {
  .intro__title:after {
    width: 24px;
    height: 28px;
    right: -36px;
    top: auto;
    bottom: 5px;
  }
}
.introList {
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  max-width: 1024px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 750px) {
  .introList {
    margin-top: 24px;
    justify-content: flex-start;
  }
}
.introList__item {
  margin: 24px 12px;
  width: 232px;
  height: 266px;
  border-radius: 10px;
  text-align: center;
  background-color: #F6DEDE;
}
@media only screen and (max-width: 750px) {
  .introList__item {
    width: calc(33.3% - 8px);
    margin: 8px 4px 0;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.introList__item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  padding-top: 30px;
}
@media only screen and (max-width: 750px) {
  .introList__item a {
    padding-top: 14px;
  }
}
@media only screen and (max-width: 750px) {
  .introList__icon img {
    width: 55px;
  }
}
.introList__text {
  margin-top: 20px;
  font-weight: bold;
  font-size: 20px;
}
@media only screen and (max-width: 750px) {
  .introList__text {
    font-size: 12px;
    margin-top: 6px;
  }
}
.introAchievements {
  margin-top: 72px;
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .introAchievements {
    margin-top: 32px;
  }
}
.introAchievements:before {
  content: "";
  background: url(../img/gold_left.png) center center/contain no-repeat;
  width: 64px;
  height: 164px;
  position: absolute;
  left: -90px;
  top: -3px;
}
@media only screen and (max-width: 750px) {
  .introAchievements:before {
    width: 24px;
    height: 62px;
    left: -32px;
    top: 0px;
  }
}
.introAchievements:after {
  content: "";
  background: url(../img/gold_right.png) center center/contain no-repeat;
  width: 64px;
  height: 164px;
  position: absolute;
  right: -90px;
  top: -3px;
}
@media only screen and (max-width: 750px) {
  .introAchievements:after {
    width: 24px;
    height: 62px;
    right: -32px;
    top: 0px;
  }
}
.introAchievements__small {
  font-size: 32px;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .introAchievements__small {
    font-size: 14px;
  }
}
.introAchievements__large {
  font-size: 52px;
  font-weight: bold;
  line-height: 1.1;
}
@media only screen and (max-width: 750px) {
  .introAchievements__large {
    font-size: 20px;
  }
}
.introAchievements__large .large {
  font-size: 86px;
  font-weight: 500;
}
@media only screen and (max-width: 750px) {
  .introAchievements__large .large {
    font-size: 32px;
  }
}

.worries {
  background-color: #F0F0F0;
  padding: 120px 3%;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .worries {
    padding: 64px 3% 50px;
  }
}
.worries:after {
  content: "";
  width: 116px;
  height: 116px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  background-color: #F0F0F0;
  position: absolute;
  bottom: -27px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 750px) {
  .worries:after {
    bottom: -12px;
  }
}
.worries__float {
  position: absolute;
  right: calc(50% - 440px);
  top: -67px;
}
@media only screen and (max-width: 750px) {
  .worries__float {
    width: 76px;
    top: -46px;
    right: 10px;
  }
}
.worries__title {
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .worries__title {
    font-size: 20px;
  }
}
.worries__title span {
  color: #B81544;
  font-size: 42px;
}
@media only screen and (max-width: 750px) {
  .worries__title span {
    font-size: 26px;
  }
}
.worries__title:before {
  content: "";
  background: url(../img/worries_title_icon.png) center center/contain no-repeat;
  width: 53px;
  height: 57px;
  position: absolute;
  left: -86px;
  top: -18px;
}
@media only screen and (max-width: 750px) {
  .worries__title:before {
    width: 30px;
    height: 32px;
    left: -25px;
    top: -29px;
  }
}
.worriesList {
  margin-top: 76px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 750px) {
  .worriesList {
    margin-top: 32px;
    display: block;
  }
}
.worriesList__item {
  margin: 0 9px;
  width: 30%;
  max-width: 320px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .worriesList__item {
    width: 100%;
    max-width: 306px;
    margin: 0 auto 22px;
  }
  .worriesList__item:last-child {
    margin-bottom: 0;
  }
}
.worriesList__text {
  width: 100%;
  height: 152px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 16px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .worriesList__text {
    height: 120px;
    font-size: 18px;
  }
}
.worriesList__text:after {
  content: "";
  background: url(../img/balloon.png) center center/contain no-repeat;
  width: 28px;
  height: 36px;
  position: absolute;
  right: 79px;
  bottom: -46px;
}
@media only screen and (max-width: 750px) {
  .worriesList__text:after {
    width: 25px;
    height: 31px;
    right: 96px;
    bottom: -37px;
  }
}
.worriesList__img {
  margin-top: -14px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 750px) {
  .worriesList__img {
    margin-top: -8px;
  }
  .worriesList__img img {
    width: auto;
    height: 90px;
  }
}

.cloud {
  padding: 120px 3% 70px;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 750px) {
  .cloud {
    padding: 72px 10px 45px;
  }
}
.cloud__float {
  position: absolute;
  left: calc(50% - 535px);
  top: -20px;
}
@media only screen and (max-width: 750px) {
  .cloud__float {
    width: 90px;
    top: -63px;
    left: 10px;
  }
}
.cloud__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.cloud__title {
  position: relative;
  display: inline-block;
}
.cloud__title .small {
  display: block;
  font-size: 32px;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .cloud__title .small {
    font-size: 20px;
  }
}
.cloud__title .large {
  display: block;
  font-size: 42px;
  font-weight: bold;
  color: #B81544;
}
@media only screen and (max-width: 750px) {
  .cloud__title .large {
    font-size: 26px;
    margin-top: 8px;
  }
}
.cloud__title:after {
  content: "";
  background: url(../img/cloud_title_icon.png) center center/contain no-repeat;
  width: 70px;
  height: 84px;
  position: absolute;
  right: -86px;
  top: -24px;
}
@media only screen and (max-width: 750px) {
  .cloud__title:after {
    width: 34px;
    height: 40px;
    right: -9px;
    top: 3px;
  }
}
.cloud__h3 {
  margin-top: 60px;
  display: flex;
  align-items: center;
  font-size: 30px;
  font-weight: bold;
  color: #DE3464;
}
@media only screen and (max-width: 750px) {
  .cloud__h3 {
    margin-top: 32px;
    font-size: 18px;
  }
}
.cloud__h3 .small {
  font-size: 26px;
}
@media only screen and (max-width: 750px) {
  .cloud__h3 .small {
    font-size: 16px;
  }
}
.cloud__h3:before {
  content: "";
  flex: 1;
  height: 1px;
  border-bottom: 4px dotted #DE3464;
  margin-right: 32px;
}
@media only screen and (max-width: 750px) {
  .cloud__h3:before {
    margin-right: 13px;
  }
}
.cloud__h3:after {
  content: "";
  flex: 1;
  height: 1px;
  border-bottom: 4px dotted #DE3464;
  margin-left: 32px;
}
@media only screen and (max-width: 750px) {
  .cloud__h3:after {
    margin-left: 13px;
  }
}
.cloud__img {
  margin-top: 50px;
}
@media only screen and (max-width: 750px) {
  .cloud__img {
    margin-top: 20px;
  }
}

.function {
  background: url(../img/function_bg_top.png) left top no-repeat, url(../img/function_bg_bottom.png) right bottom no-repeat;
  background-color: #b81544;
  position: relative;
  padding: 200px 3% 140px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .function {
    background-size: 60%, 80%;
    background-color: #b81544;
    padding: 74px 10px 85px;
  }
}
.function:before {
  content: "";
  width: 1824px;
  height: 320px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: -237px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1824px) {
  .function:before {
    width: 120%;
  }
}
@media only screen and (max-width: 750px) {
  .function:before {
    width: 596px;
    height: 104px;
    top: -76px;
  }
}
.function__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.function__title {
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 750px) {
  .function__title {
    font-size: 26px;
  }
}
.function__title:after {
  content: "";
  background: url(../img/function_title_icon.png) no-repeat center/contain;
  width: 98px;
  height: 98px;
  position: absolute;
  right: -98px;
  top: -38px;
}
@media only screen and (max-width: 750px) {
  .function__title:after {
    width: 50px;
    height: 50px;
    right: -54px;
    top: -13px;
  }
}
.functionList {
  margin-top: 96px;
}
@media only screen and (max-width: 750px) {
  .functionList {
    margin-top: 32px;
  }
}
.functionBlock {
  display: flex;
  position: relative;
  justify-content: flex-end;
  padding-top: 52px;
  margin-bottom: 120px;
}
@media only screen and (max-width: 750px) {
  .functionBlock {
    padding-top: 0;
    margin-bottom: 90px;
    display: block;
  }
}
.functionBlock:last-child {
  margin-bottom: 0;
}
.functionBlock__left {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #fff;
  width: 64.5%;
  height: 392px;
  border-radius: 24px;
  padding: 28px 274px 0px 56px;
  text-align: left;
}
@media only screen and (max-width: 750px) {
  .functionBlock__left {
    position: static;
    margin: 0 20px;
    padding: 33px 30px 58px;
    position: relative;
    height: auto;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.functionBlock__num {
  line-height: 1;
  font-size: 100px;
  font-weight: bold;
  color: #F6DEDE;
}
@media only screen and (max-width: 750px) {
  .functionBlock__num {
    width: 78px;
    font-size: 50px;
  }
}
.functionBlock__title {
  margin-top: 18px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 750px) {
  .functionBlock__title {
    margin-top: 0;
  }
}
@media only screen and (max-width: 750px) {
  .functionBlock__title .icon {
    width: 42px;
  }
}
.functionBlock__title .text {
  margin-left: 8px;
  font-size: 30px;
  font-weight: bold;
  color: #DE3464;
}
@media only screen and (max-width: 750px) {
  .functionBlock__title .text {
    font-size: 20px;
  }
}
.functionBlock__text {
  margin-top: 24px;
  font-weight: 500;
}
@media only screen and (max-width: 750px) {
  .functionBlock__text {
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
  }
}
.functionBlock__right {
  width: 55.4%;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .functionBlock__right {
    margin-top: -30px;
    width: 100%;
  }
}
.functionBlockSlider__item {
  padding: 10px;
}
.functionBlockSlider__item a {
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.1);
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}
.functionBlockSlider__item a img {
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .functionBlockSlider__item a:hover img {
    opacity: 0.7;
  }
}
.functionBlockSlider .slick-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -10px;
  z-index: 2;
  background: url(../img/prev.png) no-repeat center/contain;
  width: 42px;
  height: 42px;
}
@media only screen and (max-width: 750px) {
  .functionBlockSlider .slick-prev {
    width: 34px;
    height: 34px;
    left: 0px;
  }
}
.functionBlockSlider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
  z-index: 2;
  background: url(../img/next.png) no-repeat center/contain;
  width: 42px;
  height: 42px;
}
@media only screen and (max-width: 750px) {
  .functionBlockSlider .slick-next {
    width: 34px;
    height: 34px;
    right: 0px;
  }
}
.functionBlockSlider .slick-dots {
  position: absolute;
  right: calc(100% + 20px);
  display: flex;
  bottom: -3px;
}
@media only screen and (max-width: 750px) {
  .functionBlockSlider .slick-dots {
    right: auto;
    left: 0px;
    bottom: -33px;
  }
}
.functionBlockSlider .slick-dots li {
  margin-left: 8px;
}
.functionBlockSlider .slick-dots li.slick-active button {
  opacity: 1;
}
.functionBlockSlider .slick-dots button {
  -webkit-appearance: none;
  border-style: none;
  width: 12px;
  height: 12px;
  padding: 0;
  background-color: #fff;
  opacity: 0.5;
  text-indent: -9999px;
  border-radius: 50%;
}
.functionBlock__zoom {
  position: absolute;
  right: 10px;
  bottom: -24px;
  font-size: 14px;
  z-index: 1;
  display: flex;
  color: #fff;
}
@media only screen and (max-width: 750px) {
  .functionBlock__zoom {
    font-size: 12px;
  }
}
.functionBlock__zoom:after {
  content: "";
  width: 21px;
  height: 22px;
  background: url(../img/icon_search.png) no-repeat center/contain;
  display: block;
  margin-left: 4px;
}
@media only screen and (max-width: 750px) {
  .functionBlock__zoom:after {
    width: 17px;
    height: 18px;
  }
}

.features {
  background-color: #EFDBD5;
  padding: 100px 3% 120px;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .features {
    padding: 85px 10px 64px;
  }
}
.features__float {
  position: absolute;
  top: -92px;
  right: calc(50% - 620px);
}
@media only screen and (max-width: 750px) {
  .features__float {
    width: 96px;
    top: -57px;
    right: 10px;
  }
}
.features__inner {
  max-width: 1116px;
  margin: 0 auto;
}
.features__title {
  display: inline-block;
  position: relative;
  font-size: 42px;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .features__title {
    font-size: 26px;
  }
}
.features__title .small {
  font-size: 32px;
}
@media only screen and (max-width: 750px) {
  .features__title .small {
    font-size: 20px;
  }
}
.features__title:before {
  content: "";
  background: url(../img/features_title_left.png) no-repeat center/contain;
  width: 46px;
  height: 46px;
  position: absolute;
  left: -75px;
  top: 14px;
}
@media only screen and (max-width: 750px) {
  .features__title:before {
    width: 38px;
    height: 38px;
    left: -30px;
    top: -32px;
  }
}
.features__title:after {
  content: "";
  background: url(../img/features_title_right.png) no-repeat center/contain;
  width: 50px;
  height: 64px;
  position: absolute;
  right: -76px;
  top: 7px;
}
@media only screen and (max-width: 750px) {
  .features__title:after {
    width: 22px;
    height: 26px;
    right: -37px;
    top: 8px;
  }
}
.featuresList {
  margin-top: 96px;
}
@media only screen and (max-width: 750px) {
  .featuresList {
    margin-top: 32px;
  }
}
.featuresBlock {
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 58px;
  position: relative;
  text-align: left;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 750px) {
  .featuresBlock {
    padding: 66px 12px 32px;
    display: block;
  }
}
.featuresBlock:last-child {
  margin-bottom: 0;
}
.featuresBlock:nth-child(2n) {
  flex-direction: row;
}
.featuresBlock:nth-child(2n) .featuresBlock__num {
  left: 56px;
  right: auto;
}
@media only screen and (max-width: 750px) {
  .featuresBlock:nth-child(2n) .featuresBlock__num {
    left: 24px;
  }
}
.featuresBlock__num {
  position: absolute;
  top: -10px;
  right: 56px;
  width: 80px;
  height: 100px;
  text-align: center;
  padding-top: 14px;
  font-size: 40px;
  font-weight: 600;
  background: url(../img/tag.png) no-repeat center/contain;
  color: #fff;
}
@media only screen and (max-width: 750px) {
  .featuresBlock__num {
    top: -6px;
    right: 24px;
    width: 52px;
    height: 64px;
    font-size: 28px;
    padding-top: 10px;
  }
}
.featuresBlock__info {
  width: 392px;
}
@media only screen and (max-width: 750px) {
  .featuresBlock__info {
    width: auto;
  }
}
.featuresBlock__title {
  font-size: 32px;
  font-weight: 900;
  color: #B81544;
}
@media only screen and (max-width: 750px) {
  .featuresBlock__title {
    font-size: 20px;
    text-align: center;
  }
}
.featuresBlock__text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
}
@media only screen and (max-width: 750px) {
  .featuresBlock__text {
    font-size: 14px;
    margin-top: 16px;
  }
}
.featuresBlock__img {
  margin-top: 18px;
}

.support {
  background-color: #B81544;
  padding: 100px 3% 120px;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .support {
    padding: 54px 20px 65px;
  }
}
.support__title {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 750px) {
  .support__title {
    flex-direction: column;
  }
}
.support__title .white {
  font-size: 36px;
  font-weight: bold;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .support__title .white {
    font-size: 24px;
  }
}
.support__title .ruby {
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  top: -16px;
  left: 72px;
}
@media only screen and (max-width: 750px) {
  .support__title .ruby {
    font-size: 12px;
    left: 0px;
    width: 100%;
    text-align: center;
  }
}
.support__title .dot {
  background-image: radial-gradient(circle at center, #fff 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.3em;
}
.support__title .gold {
  margin: 0 14px;
}
@media only screen and (max-width: 750px) {
  .support__title .gold {
    width: 242px;
    margin: 2px 0 6px;
  }
}
.support__subtitle {
  font-size: 20px;
  font-weight: bold;
  margin-top: 16px;
}
@media only screen and (max-width: 750px) {
  .support__subtitle {
    font-size: 16px;
    margin-top: 14px;
  }
}
.supportTarget {
  max-width: 806px;
  margin: 48px auto 0;
  border: 1px solid #fff;
  padding: 22px 50px 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
@media only screen and (max-width: 750px) {
  .supportTarget {
    flex-direction: column;
    padding: 24px 16px 20px;
  }
}
.supportTarget__title {
  font-size: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .supportTarget__title {
    font-size: 18px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #fff;
    width: 100%;
  }
}
.supportTarget__right {
  padding-left: 43px;
  border-left: 1px dotted #fff;
}
@media only screen and (max-width: 750px) {
  .supportTarget__right {
    padding: 17px 0 0;
    border-left-style: none;
  }
}
.supportTarget__list li {
  font-size: 24px;
  font-weight: bold;
  margin: 8px 0;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 750px) {
  .supportTarget__list li {
    font-size: 18px;
  }
}
.supportTarget__list li:before {
  content: "";
  background: url(../img/icon_check.png) no-repeat center/contain;
  width: 28px;
  height: 28px;
  display: inline-block;
  margin-right: 9px;
}
@media only screen and (max-width: 750px) {
  .supportTarget__list li:before {
    width: 24px;
    height: 24px;
  }
}
.supportGraph {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 750px) {
  .supportGraph {
    margin-top: 18px;
    flex-direction: column;
  }
}
.supportGraph__item {
  margin: 0 8px;
}
@media only screen and (max-width: 750px) {
  .supportGraph__item {
    margin: 16px 0 0;
  }
}
.support__link {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.support__link:after {
  content: "";
  width: 30px;
  height: 30px;
  background: url(../img/angle_right_circle.png) no-repeat center/contain;
  margin-left: 5px;
}
@media only screen and (max-width: 750px) {
  .support__link:after {
    width: 22px;
    height: 22px;
  }
}
.support__link a {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  line-height: 1.3;
}
@media only screen and (max-width: 750px) {
  .support__link a {
    font-size: 20px;
  }
}

.contactButtons {
  padding: 60px 3%;
  background: url(../img/contact_bg.png) no-repeat center/cover;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .contactButtons {
    background: url(../img/contact_bg_sp.png) no-repeat center/cover;
    padding: 50px 10px 50px;
  }
}
.contactButtons__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 750px) {
  .contactButtons__inner {
    flex-direction: column;
  }
}
@media only screen and (max-width: 750px) {
  .contactButtons__img {
    width: 156px;
  }
}
.contactButtons__right {
  margin-left: 10px;
}
@media only screen and (max-width: 750px) {
  .contactButtons__right {
    margin: 24px 0 0;
  }
}
.contactButtons__title {
  font-size: 30px;
  font-weight: bold;
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 750px) {
  .contactButtons__title {
    font-size: 24px;
  }
}
.contactButtons__title:before {
  content: "";
  background: url(../img/contact_title_left.png) no-repeat center/contain;
  width: 19px;
  height: 30px;
  position: absolute;
  left: -30px;
  top: 6px;
}
@media only screen and (max-width: 750px) {
  .contactButtons__title:before {
    width: 16px;
    height: 25px;
    left: -40px;
    top: 36px;
  }
}
.contactButtons__title:after {
  content: "";
  background: url(../img/contact_title_right.png) no-repeat center/contain;
  width: 19px;
  height: 30px;
  position: absolute;
  right: -30px;
  top: 6px;
}
@media only screen and (max-width: 750px) {
  .contactButtons__title:after {
    width: 16px;
    height: 25px;
    right: -40px;
    top: 36px;
  }
}
.contactButtons__list {
  display: flex;
  margin-top: 24px;
}
@media only screen and (max-width: 750px) {
  .contactButtons__list {
    flex-direction: column;
    align-items: center;
  }
}
.contactButtons__list li {
  width: 352px;
  margin: 0 8px;
}
@media only screen and (max-width: 750px) {
  .contactButtons__list li {
    width: 312px;
    margin: 6px 0;
  }
}
.contactButtons__list li a {
  display: flex;
  width: 100%;
  height: 68px;
  background-color: #fff;
  border-radius: 50vh;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 900;
  color: #17B2A0;
  text-decoration: none;
  border: 1px solid #17B2A0;
}
@media only screen and (max-width: 750px) {
  .contactButtons__list li a {
    height: 58px;
    font-size: 20px;
  }
}
.contactButtons__list li a.-green {
  color: #fff;
  background-color: #17B2A0;
}

.price {
  padding: 120px 3%;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .price {
    padding: 64px 20px;
  }
}
.price__title {
  font-size: 42px;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .price__title {
    font-size: 26px;
  }
}
.price__read {
  font-size: 20px;
  font-weight: 500;
  margin-top: 60px;
}
@media only screen and (max-width: 750px) {
  .price__read {
    font-size: 16px;
    margin-top: 32px;
  }
}
.priceRow {
  margin-top: 70px;
}
@media only screen and (max-width: 750px) {
  .priceRow {
    margin-top: 40px;
  }
}
.price__caution {
  margin-top: 16px;
  font-size: 12px;
}
@media only screen and (max-width: 750px) {
  .price__caution {
    font-size: 10px;
    margin-top: 14px;
    text-align: left;
  }
}

.works {
  padding: 120px 3%;
  background-color: #F6EFEC;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .works {
    padding: 64px 0 100px;
  }
}
.works__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.works__title {
  font-size: 42px;
  font-weight: bold;
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .works__title {
    font-size: 26px;
  }
}
.works__title:after {
  content: "";
  background: url(../img/works_title_icon.png) no-repeat center/contain;
  width: 30px;
  height: 28px;
  position: absolute;
  right: -52px;
  top: -13px;
}
@media only screen and (max-width: 750px) {
  .works__title:after {
    width: 24px;
    height: 22px;
    right: -27px;
    top: -20px;
  }
}
.worksList {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
@media only screen and (max-width: 750px) {
  .worksList {
    margin: 32px 0 0;
    display: block;
  }
}
.worksList__item {
  margin: 20px 10px 0;
  width: calc(33.33% - 20px);
}
@media only screen and (max-width: 750px) {
  .worksList__item {
    width: 94vw;
    margin: 0;
  }
}
.worksList a {
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  border-radius: 12px;
  height: 400px;
  padding: 30px 24px 30px;
  text-align: left;
  position: relative;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .worksList a:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 750px) {
  .worksList a {
    margin: 0 4px;
  }
}
.worksList__thumb {
  text-align: center;
}
.worksList__client {
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
}
.worksList__excerpt {
  margin-top: 20px;
  color: #B81544;
  font-weight: bold;
}
.worksList__next {
  position: absolute;
  right: 24px;
  bottom: 30px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
}
.worksList__next:after {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/angle_right_circle_red.png) no-repeat center/contain;
  display: block;
  margin-left: 6px;
}
.worksList .slick-dots {
  position: absolute;
  bottom: -48px;
  left: 0px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.worksList .slick-dots li {
  margin: 0 4px;
}
.worksList .slick-dots li button {
  -webkit-appearance: none;
  border-style: none;
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background-color: #DE3464;
  opacity: 0.5;
  text-indent: -9999px;
}
.worksList .slick-dots li.slick-active button {
  opacity: 1;
}

.flow {
  padding: 120px 3%;
  background-color: #F48D8D;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .flow {
    padding: 64px 20px;
  }
}
.flow__float {
  position: absolute;
  top: -49px;
  left: calc(50% - 400px);
}
@media only screen and (max-width: 750px) {
  .flow__float {
    width: 70px;
    top: -35px;
    left: 10px;
  }
}
.flow__title {
  font-size: 42px;
  font-weight: bold;
  color: #fff;
}
@media only screen and (max-width: 750px) {
  .flow__title {
    font-size: 26px;
  }
}
.flowList {
  display: flex;
  margin-top: 52px;
  justify-content: center;
}
@media only screen and (max-width: 750px) {
  .flowList {
    margin-top: 20px;
    flex-direction: column;
  }
}
.flowList__item {
  margin: 0 6px;
  border-radius: 8px;
  background-color: #fff;
  padding: 16px 22px 27px;
  width: 190px;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .flowList__item {
    width: 100%;
    padding: 42px 40px 34px;
    margin: 12px auto 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
.flowList__item:after {
  content: "";
  width: 36px;
  height: 36px;
  background: url(../img/arow_flow.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  z-index: 2;
}
@media only screen and (max-width: 750px) {
  .flowList__item:after {
    width: 32px;
    height: 32px;
    top: auto;
    bottom: -23px;
    right: 50%;
    transform: translateX(50%) translateY(0) rotate(90deg);
  }
}
.flowList__item:last-child:after {
  display: none;
}
.flowList__step {
  width: 108px;
  height: 23px;
  background: url(../img/ribbon.png) no-repeat center/contain;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  margin: 0 auto;
}
.flowList__step .num {
  font-size: 16px;
}
@media only screen and (max-width: 750px) {
  .flowList__step {
    width: 126px;
    margin: 0;
  }
}
.flowList__title {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 900;
  color: #B81544;
}
@media only screen and (max-width: 750px) {
  .flowList__title {
    margin-top: 12px;
    width: 126px;
  }
}
.flowList__img {
  margin-top: 10px;
}
@media only screen and (max-width: 750px) {
  .flowList__img {
    margin: 0;
    position: absolute;
    left: 24px;
    top: 12px;
    width: 146px;
  }
}
.flowList__text {
  text-align: left;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}
.flowList__text.-center {
  text-align: center;
}
.flowList__text a {
  color: #17B2A0;
}
@media only screen and (max-width: 750px) {
  .flowList__text {
    width: 100%;
    margin-top: 12px;
  }
}

.faq {
  padding: 120px 3%;
}
@media only screen and (max-width: 750px) {
  .faq {
    padding: 64px 10px;
  }
}
.faq__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.faq__title {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}
@media only screen and (max-width: 750px) {
  .faq__title {
    font-size: 26px;
    margin-bottom: 32px;
  }
}
.faqBlock + .faqBlock {
  margin-top: 8px;
}
.faqBlock__q {
  background-color: #F6EFEC;
  border-radius: 6px;
  padding: 19px 27px 19px 60px;
  position: relative;
}
@media (hover: hover) {
  .faqBlock__q {
    cursor: pointer;
  }
}
@media only screen and (max-width: 750px) {
  .faqBlock__q {
    padding: 19px 44px;
    font-size: 14px;
  }
}
.faqBlock__q:before {
  content: "Q.";
  color: #DE3464;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  top: 11px;
  left: 17px;
}
@media only screen and (max-width: 750px) {
  .faqBlock__q:before {
    top: 10px;
    left: 11px;
  }
}
.faqBlock__q:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/plus.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 750px) {
  .faqBlock__q:after {
    right: 10px;
    width: 14px;
    height: 14px;
  }
}
.faqBlock__q.is-open:after {
  background-image: url(../img/minus.png);
}
.faqBlock__title {
  font-size: 14px;
  font-weight: bold;
}
.faqBlock__a {
  padding: 16px 20px 16px 60px;
  position: relative;
  display: none;
  font-size: 14px;
}
@media only screen and (max-width: 750px) {
  .faqBlock__a {
    padding: 15px 10px 15px 44px;
  }
}
.faqBlock__a a {
  color: #17B2A0;
}
.faqBlock__a:before {
  content: "A.";
  color: #F48D8D;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  top: 11px;
  left: 17px;
}
@media only screen and (max-width: 750px) {
  .faqBlock__a:before {
    top: 10px;
    left: 11px;
  }
}

.contact {
  padding: 120px 3% 120px;
  background-color: #F6DEDE;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .contact {
    padding: 64px 10px 100px;
  }
}
.contact__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.contact__title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 60px;
}
@media only screen and (max-width: 750px) {
  .contact__title {
    font-size: 26px;
    margin-bottom: 32px;
  }
}
.contactForm {
  background-color: #fff;
  border-radius: 20px;
  padding: 70px 16.5%;
}
@media only screen and (max-width: 750px) {
  .contactForm {
    padding: 40px 20px;
  }
}
.contactForm__read {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 14px;
}
.contactFormList {
  text-align: left;
}
.contactFormList__item {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
}
@media only screen and (max-width: 750px) {
  .contactFormList__item {
    display: block;
    margin-bottom: 24px;
  }
}
.contactFormList__item dt {
  width: 178px;
  font-size: 16px;
  font-weight: bold;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .contactFormList__item dt {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}
.contactFormList__item dt .required {
  display: inline-block;
  background-color: #B81544;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  width: 32px;
  padding: 3px 0px 4px;
  border-radius: 4px;
  position: absolute;
  right: 0px;
  top: 0px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .contactFormList__item dt .required {
    position: static;
    margin-right: 6px;
  }
}
.contactFormList__item dt .free {
  display: inline-block;
  background-color: #8B8B8B;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  width: 32px;
  padding: 3px 0px 4px;
  border-radius: 4px;
  position: absolute;
  right: 0px;
  top: 0px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .contactFormList__item dt .free {
    position: static;
    margin-right: 6px;
  }
}
.contactFormList__item dd {
  flex: 1;
  margin-left: 12px;
}
@media only screen and (max-width: 750px) {
  .contactFormList__item dd {
    margin-left: 0;
    margin-top: 8px;
  }
}
.contactFormPrivacy {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 750px) {
  .contactFormPrivacy {
    margin-top: 16px;
  }
}
.contactFormPrivacy__inner {
  text-align: left;
  display: flex;
}
@media only screen and (max-width: 750px) {
  .contactFormPrivacy__inner {
    display: block;
    text-align: center;
  }
}
.contactFormPrivacy__inner .left {
  position: relative;
  top: -1px;
}
@media only screen and (max-width: 750px) {
  .contactFormPrivacy__inner .left {
    display: inline-block;
    top: 1px;
  }
}
.contactFormPrivacy__inner p {
  font-size: 12px;
  font-weight: 500;
  margin-left: 6px;
}
@media only screen and (max-width: 750px) {
  .contactFormPrivacy__inner p {
    display: inline;
    margin: 0;
  }
}
.contactFormPrivacy__inner p a {
  color: #B81544;
}
.contactForm__btn {
  margin-top: 32px;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .contactForm__btn {
    margin-top: 24px;
  }
}
.contactForm__send {
  -webkit-appearance: none;
  border-style: none;
  background-color: #17B2A0;
  width: 352px;
  height: 66px;
  border-radius: 50vh;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}
@media (hover: hover) {
  .contactForm__send:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
@media only screen and (max-width: 750px) {
  .contactForm__send {
    width: 100%;
    height: 56px;
    font-size: 20px;
  }
}

.form-text {
  border-style: none;
  width: 100%;
  height: 42px;
  background-color: #F7F7F7;
  padding: 0 15px;
}
.form-text::-moz-placeholder {
  color: #C7C7C7;
}
.form-text::placeholder {
  color: #C7C7C7;
}

.form-select {
  border-style: none;
  width: 100%;
  height: 42px;
  background-color: #F7F7F7;
  padding: 0 15px;
}

.form-error {
  color: #B81544;
  font-size: 14px;
  margin-top: 4px;
  font-weight: bold;
}

.form-check {
  font-size: 14px;
  display: inline-block;
  margin-right: 0.8em;
}

.form-check input {
  margin-right: 0.2em;
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 63px 0;
}
@media only screen and (max-width: 750px) {
  .footer {
    padding: 26px 20px 100px;
  }
}
.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 750px) {
  .footer__inner {
    flex-direction: column;
  }
}
@media only screen and (max-width: 750px) {
  .footer__logo {
    width: 143px;
  }
}
@media only screen and (max-width: 750px) {
  .footer__right {
    margin-top: 24px;
  }
}
.footerAddress__item {
  font-size: 14px;
  display: flex;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .footerAddress__item {
    font-size: 12px;
  }
}
.footerAddress__item dt {
  margin-right: 16px;
}
.footerTel {
  margin-top: 28px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 750px) {
  .footerTel__icon {
    width: 54px;
  }
}
.footerTel__tel {
  line-height: 1;
  margin-left: 6px;
  font-size: 42px;
  font-weight: 500;
}
@media only screen and (max-width: 750px) {
  .footerTel__tel {
    font-size: 24px;
    text-decoration: underline;
  }
}
.footer .copyright {
  position: absolute;
  bottom: 0px;
  left: 0px;
  font-size: 12px;
  font-weight: 500;
}
@media only screen and (max-width: 750px) {
  .footer .copyright {
    font-size: 10px;
    position: static;
    margin-top: 24px;
  }
}
