@charset "UTF-8";
@font-face {
  font-family: "mincho";
  src: url("../css/kokumin.woff") format("woff");
}

@font-face {
  font-family: "arial";
  src: url("../css/Arial.woff") format("woff");
}
@font-face {
  font-family: "kai";
  src: url("../css/nagayama_kai.woff") format("woff");
}
html {
  font-size: 16px;
  scroll-padding-top: 95px;
}

@media screen and (max-width: 550px) {
  html {
    scroll-padding-top: 90px;
  }
}


body {
  font-family:'Shippori Mincho', serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,.15);;
}
@media screen and (max-width: 768px) {
  .header {
    height: 75px;
  }
}
.header_inner {
  display: flex;
  align-items: center;
  height: inherit;
  padding-left: 20px;
  padding-right: 20px;
}
.header_name {
  margin-right: auto;
}
.header_logo {
  width: 280px;
}

@media screen and (max-width: 1090px) {
  .header_logo {
    width: 260px;
  }
}
@media screen and (max-width: 768px) {
  .header_logo {
    width: 220px;
  }
}
.header_nav {
  height: inherit;
}
.header_items {
  display: flex;
  align-items: center;
  height: inherit;
}
.header_item {
  height: inherit;
}
.header_item:not(:first-child) {
  margin-left: 20px;
}
.header_link {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  color: #000;
  font-family: "mincho", "Noto Sans JP", sans-serif, serif;
  text-decoration: underline;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top:33px;
  right: 15px;
  width: 30px;
  height: 25px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .hamburger {
    top: 25px;
    height: 20px;
  }
}
.hamburger.is-active {
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 550px) {
  .hamburger.is-active {
    top: 20px;
  }
}
.hamburger.is-active span {
  background-color: #000;
}
.hamburger.is-active span:nth-child(1) {
  top: 15px;
  transform: rotate(-45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  top: 15px;
  transform: rotate(45deg);
}
.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  transition: transform 0.3s, background-color 0.3s;
  background-color: #000;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 12px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 550px) {
  .hamburger span:nth-child(2) {
    top: 10px;
  }
}
.hamburger span:nth-child(3) {
  top: 25px;
}
@media screen and (max-width: 550px) {
  .hamburger span:nth-child(3) {
    top: 20px;
  }
}

.drawer-menu {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background: #fff;
}
.drawer-menu_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: inherit;
}
.drawer-menu_items {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.drawer-menu_item {
  display: inline-block;
}
.drawer-menu_item:not(:first-child) {
  margin-top: 25px;
}
@media screen and (max-width: 550px) {
  .drawer-menu_item:not(:first-child) {
    margin-top: 15px;
  }
}
.drawer-menu_link {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  letter-spacing: 0.05em;
  line-height: 1.875;
  color: #000;
  width: 200px;
  text-align: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 550px) {
  .drawer-menu_link {
    font-size: 12px;
    padding-bottom: 15px;
    width: 150px;
  }
}

.drawer-img{
  width: 180px;
}

.ig-img{
  width: 20px;
}
.tiktok-img{
  width: 20px;
}

.wow-img{
  width: 20px;
}
.ig-dimg{
  width: 30px;
}
.tiktok-dimg{
  width: 30px;
}

.wow-dimg{
  width: 30px;
}

.drawer-icon__items{
  width: 200px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

@media screen and (max-width: 550px){
  .drawer-icon__items{
    width: 150px;
  }
}

body {
  font-family: "mincho", "Noto Sans JP", sans-serif, serif;
}

.top{
  position: relative;
  text-align: center;
  margin-top: 95px;
  margin-bottom: 200px;
}

@media screen and (max-width: 768px) {
  .top{
    margin-bottom: 0;
    margin-top: 75px;
  }
}

.growth-top{
  margin-bottom: 0;
}

.mv-img{
  width: 100%;
}

.topNews {
  margin-top: 180px;
  text-align: center;
}

.topNews-link {
  font-size: 23px;
  margin-top: 30px;
  color: #fff;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  background-color: #5F79D8;
  padding: 10px 50px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 4px 4px 4px gray;
}
@media screen and (max-width: 1090px) {
  .topNews-link {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .topNews-link {
    font-size: 12px;
  }
}


.topNews-img {
  margin-top: 70px;
  width: 909px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1090px) {
  .topNews-img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .topNews-img {
    width: 510px;
  }
}
@media screen and (max-width: 550px) {
  .topNews-img {
    margin-top: 40px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
.topNews-wrap {
  text-align: right;
  margin-top: 20px;
}

.topNews-more {
  color: #38B6FF;
  font-size: 27px;
  text-decoration: underline;
}
@media screen and (max-width: 1090px) {
  .topNews-more {
    font-size: 20px;
  }
}
@media screen and (max-width: 550px) {
  .topNews-more {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .topNews-more {
    font-size: 12px;
  }
}


.works {
  margin-top: 150px;
}

@media screen and (max-width: 768px) {
  .works {
    margin-top: 100px;
  }
}

@media screen and (max-width: 450px) {
  .works {
    margin-top: 70px;
  }
}

.works-wrap {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 550px) {
  .works-wrap {
    display: block;
    margin-top: 40px;
  }
}
.works-items {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 550px) {
  .works-items {
    width: 300px;
    margin-right: auto;
    margin-left: auto;
  }
}
.works-item {
  width: 50%;
  margin-right: auto;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
.works-item1 {
  margin-right: 45px;
}

.works-img{
  object-fit: contain;
}

.works-youtube{
  width: 45%;
}

@media screen and (max-width: 550px) {
  .works-youtube{
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .works-youtube2{
    margin-top: 50px;
  }
}
@media screen and (max-width: 1090px) {
  .works-item1 {
    margin-right: 35px;
  }
}
.works-item2 {
  margin-left: 45px;
}
@media screen and (max-width: 1090px) {
  .works-item2 {
    margin-left: 35px;
  }
}

.works-click{
  font-size: 23px;
  margin-top: 30px;
  color: #fff;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  background-color: #5F79D8;
  padding: 10px 50px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 4px 4px 4px gray;
}

@media screen and (max-width: 1090px) {
  .works-click{
    padding: 10px 30px;
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .works-click{
    padding: 10px 30px;
    font-size: 15px;
  }
}

.works-link__ttl {
  font-size: 32px;
  text-align: center;
  font-family:'Shippori Mincho', serif;
}

@media screen and (max-width: 1090px) {
  .works-link__ttl {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .works-link__ttl {
    font-size: 18px;
  }
}

@media screen and (max-width: 550px) {
  .works-link__ttl {
    font-size: 22px;
  }
}

.works-link {
  margin-top: 40px;
  aspect-ratio: 16/9;
  display: block;
}
@media screen and (max-width: 550px) {
  .works-link {
    margin-top: 20px;
  }
}

.works-link2{
  margin-top: 30px;
}

.works-link iframe{
  width: 100%;
}
.works-more {
  text-align: right;
  margin-top: 60px;
}
@media screen and (max-width: 550px) {
  .works-more {
    margin-top: 30px;
  }
}
@media screen and (max-width: 450px) {
  .works-more {
    margin: 15px;
  }
}
.works-com {
  color: #38B6FF;
  font-size: 27px;
  text-decoration: underline;
}
@media screen and (max-width: 1090px) {
  .works-com {
    font-size: 20px;
  }
}
@media screen and (max-width: 550px) {
  .works-com {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .works-com {
    font-size: 12px;
  }
}

.image {
  position: relative;
  margin-top: 200px;
}
@media screen and (max-width: 1090px) {
  .image {
    margin-top: 150px;
  }
}
@media screen and (max-width: 550px) {
  .image {
    margin-top: 100px;
  }
}
.image-wrap {
  margin-top: 150px;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1090px) {
  .image-wrap {
    margin-top: 60px;
    margin-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 550px) {
  .image-wrap {
    margin-top: 65px;
    margin-bottom: 50px;
  }
}
.image-text {
  font-size: 20px;
  font-family: 'Shippori Mincho', serif;
}
@media screen and (max-width: 1090px) {
  .image-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 550px) {
  .image-text {
    font-size: 16px;
    margin-right: 10px;
  }
}

.image-cont {
  margin-top: 80px;
  display: flex;
  font-family: 'Shippori Mincho', serif;
}
@media screen and (max-width: 550px) {
  .image-cont {
    margin-top: 60px;
  }
}
.image-cont__wrap {
  width: 90%;
}
@media screen and (max-width: 550px) {
  .image-cont__wrap {
    width: 75%;
  }
}
.image-cont__ttl {
  font-size: 25px;
  margin-bottom: 20px;
  font-family: 'Shippori Mincho', serif;
}
@media screen and (max-width: 1090px) {
  .image-cont__ttl {
    font-size: 18px;
  }
}
@media screen and (max-width: 550px) {
  .image-cont__ttl {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.image-cont__items {
  margin-top: 20px;
  margin-left: 33px;
}
@media screen and (max-width: 550px) {
  .image-cont__items {
    margin-top: 10px;
    margin-left: 20px;
  }
}
.image-cont__items2 {
  margin-top: 0;
}
.image-cont__item {
  list-style: disc;
  font-size: 20px;
  line-height: 1.8;
  font-family:'Shippori Mincho', serif;
}
@media screen and (max-width: 1090px) {
  .image-cont__item {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .image-cont__item {
    font-size: 14px;
  }
}
.image-cont__text {
  font-size: 20px;
  line-height: 1.8;
  font-family: 'Shippori Mincho', serif;
}
@media screen and (max-width: 1090px) {
  .image-cont__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .image-cont__text {
    font-size: 14px;
  }
}
.image-cont__text2 {
  margin-top: 30px;
  font-family: 'Shippori Mincho', serif;
}
@media screen and (max-width: 550px) {
  .image-cont__text2 {
    margin-top: 10px;
  }
}


.line-icon {
  width: 150px;
  height: 160px;
  margin-top: 60px;
}
@media screen and (max-width: 1090px) {
  .line-icon {
    width: 120px;
    height: 130px;
  }
}
@media screen and (max-width: 550px) {
  .line-icon {
    width: 70px;
    height: 80px;
  }
}

.zoom-icon {
  width: 150px;
  height: 150px;
  margin-top: 60px;
}
@media screen and (max-width: 1090px) {
  .zoom-icon {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 550px) {
  .zoom-icon {
    width: 70px;
    height: 70px;
  }
}

.phone-icon {
  width: 150px;
  height: 150px;
  margin-top: 60px;
}
@media screen and (max-width: 1090px) {
  .phone-icon {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 550px) {
  .phone-icon {
    width: 70px;
    height: 70px;
  }
}

.edit-icon {
  width: 150px;
  height: 150px;
  margin-top: 60px;
}
@media screen and (max-width: 1090px) {
  .edit-icon {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 550px) {
  .edit-icon {
    width: 70px;
    height: 70px;
  }
}

.reason {
  position: relative;
  margin-top: 100px;
  padding-top: 200px;
  padding-bottom: 150px;
  background-color: #f4f4f4;
}
@media screen and (max-width: 1090px) {
  .reason {
    margin-top: 150px;
  }
}
@media screen and (max-width: 768px) {
  .reason {
    margin-top: 100px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 450px) {
  .reason {
    margin-top: 70px;
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.reason-wrap {
  margin-top: 150px;
  margin-bottom: 80px;
  font-family: 'Shippori Mincho', serif;
}
@media screen and (max-width: 1090px) {
  .reason-wrap {
    margin-top: 90px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 550px) {
  .reason-wrap {
    margin-top: 65px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 450px) {
  .reason-wrap {
    margin-top: 60px;
    margin-bottom: 40px;
  }
}
.reason-inner {
  border: 1px solid #000;
}

@media screen and (max-width: 768px){
  .reason-inner {
    border: none;
  }
}


.reason-cont {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 550px) {
  .reason-cont {
    display: block;
    margin-top: 0;
  }
}
.reason-cont__title {
  display: flex;
}
@media screen and (max-width: 768px) {
  .reason-cont__title {
    margin-left: 10px;
  }
}
@media screen and (max-width: 550px) {
  .reason-cont__title {
    justify-content: center;
    margin-left: 0;
  }
}
@media screen and (max-width: 450px) {
  .reason-cont__title {
    margin-left: 0;
  }
}
.reason-cont__wrap {
  width: 66%;
}
@media screen and (max-width: 768px) {
  .reason-cont__wrap {
    width: 62%;
  }
}
@media screen and (max-width: 550px) {
  .reason-cont__wrap {
    width: 100%;
  }
}
.reason-cont__wrap2 {
  width: 55%;
}
@media screen and (max-width: 1090px) {
  .reason-cont__wrap2 {
    width: 64%;
  }
}
@media screen and (max-width: 768px) {
  .reason-cont__wrap2 {
    width: 74%;
  }
}
@media screen and (max-width: 550px) {
  .reason-cont__wrap2 {
    width: 100%;
  }
}
.reason-cont__wrap3 {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .reason-cont__wrap3 {
    width: 61%;
  }
}
@media screen and (max-width: 550px) {
  .reason-cont__wrap3 {
    width: 100%;
  }
}
.reason-cont__num {
  font-size: 40px;
}
@media screen and (max-width: 1090px) {
  .reason-cont__num {
    font-size: 27px;
  }
}
@media screen and (max-width: 550px) {
  .reason-cont__num {
    font-size: 22px;
  }
}
@media screen and (max-width: 450px) {
  .reason-cont__num {
    font-size: 18px;
  }
}

.reason-cont__ttl {
  margin-left: 20px;
  font-size: 40px;
  text-decoration: underline;
}
@media screen and (max-width: 1090px) {
  .reason-cont__ttl {
    font-size: 27px;
  }
}
@media screen and (max-width: 550px) {
  .reason-cont__ttl {
    font-size: 22px;
    margin-left: 10px;
  }
}

@media screen and (max-width: 450px) {
  .reason-cont__ttl {
    font-size: 18px;
  }
}

.reason-cont__text {
  font-size: 20px;
  margin-top: 30px;
  padding-left: 40px;
  line-height: 1.8;
  font-family:'Shippori Mincho', serif;
}
@media screen and (max-width: 1090px) {
  .reason-cont__text {
    font-size: 16px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .reason-cont__text {
    font-size: 14px;
    padding-left: 15px;
  }
}
@media screen and (max-width: 550px) {
  .reason-cont__text {
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  .reason-cont__text {
    font-size: 12px;
  }
}
.reason-cont__works {
  width: 250px;
  height: 40px;
  background-color: #000;
  margin-left: auto;
  margin-right: auto;
  border-radius: 4px;
}
@media screen and (max-width: 1090px) {
  .reason-cont__works {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .reason-cont__works {
    width: 140px;
  }
}
.reason-cont__sub {
  font-size: 20px;
  color: rgb(242, 115, 115);
  text-align: right;
  width: 415px;
}
@media screen and (max-width: 1090px) {
  .reason-cont__sub {
    width: 290px;
  }
}
@media screen and (max-width: 768px) {
  .reason-cont__sub {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 550px) {
  .reason-cont__sub {
    font-size: 14px;
  }
}
.reason-cont__items {
  margin-top: 30px;
  margin-left: 40px;
}
@media screen and (max-width: 1090px) {
  .reason-cont__items {
    margin-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .reason-cont__items {
    margin-left: 15px;
  }
}
@media screen and (max-width: 550px) {
  .reason-cont__items {
    margin-top: 15px;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }
}
.reason-cont__item {
  font-size: 20px;
  list-style: disc;
  margin-left: 30px;
  line-height: 1.6;
  font-family: 'Shippori Mincho', serif;
}
@media screen and (max-width: 1090px) {
  .reason-cont__item {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .reason-cont__item {
    margin-left: 15px;
  }
}
@media screen and (max-width: 550px) {
  .reason-cont__item {
    font-size: 12px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 450px) {
  .reason-cont__item {
    margin-left: 10px;
  }
}
.reason-img {
  width: 100%;
}

.reason4-img{
  box-shadow: 2px 2px 4px gray;
}

.reason-Line{
  width: 40%;
  box-shadow: 10px 10px 14px gray;
  margin-right: auto;
  margin-left: auto;
  border-radius: 35px;
}

@media screen and (max-width: 1090px){
  .reason-Line{
    border-radius: 25px;
  }
}

@media screen and (max-width: 550px){
  .reason-Line{
    width: 100px;
  }
}


.reason-right {
  width: 34%;
  margin-top: 20px;
  display: block;
}
@media screen and (max-width: 768px) {
  .reason-right {
    width: 35%;
  }
}
@media screen and (max-width: 550px) {
  .reason-right {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 30px;
    padding-left: 0;
  }
}
@media screen and (max-width: 450px) {
  .reason-right {
    width: 90%;
  }
}
.reason-right2 {
  display: block;
  width: 40%;
  margin-top: 20px;
}
@media screen and (max-width: 1090px) {
  .reason-right2 {
    width: 37%;
  }
}
@media screen and (max-width: 768px) {
  .reason-right2 {
    width: 26%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 550px) {
  .reason-right2 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 0;
  }
}
.reason-link {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: inherit;
  font-family: "arial", "Noto Sans JP", sans-serif, serif;
}
@media screen and (max-width: 1090px) {
  .reason-link {
    font-size: 14px;
  }
}

@media screen and (max-width: 550px){
  .reason-sp{
    text-align: center;
  }
}


.concept {
  position: relative;
  margin-top: 200px;
}
@media screen and (max-width: 1090px) {
  .concept {
    margin-top: 150px;
  }
}

@media screen and (max-width: 768px) {
  .concept {
    margin-top: 100px;
  }
}
@media screen and (max-width: 450px) {
  .concept {
    margin-top: 70px;
  }
}

.concept-wrap {
  margin-top: 150px;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 1090px) {
  .concept-wrap {
    margin-top: 80px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 550px) {
  .concept-wrap {
    margin-top: 60px;
    margin-bottom: 30px;
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media screen and (max-width: 400px) {
  .concept-wrap {
    margin-top: 40px;
    padding-left: 0;
    padding-right: 0;
  }
}
.concept-text {
  margin-top: 30px;
  font-size: 28px;
  line-height: 2;
  font-family: 'Shippori Mincho', serif;
}
@media screen and (max-width: 1090px) {
  .concept-text {
    margin-top: 20px;
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .concept-text {
    font-size: 22px;
  }
}
@media screen and (max-width: 550px) {
  .concept-text {
    font-size: 18px;
  }
}


.concept-main {
  font-weight: 700;
  font-size: 34px;
  font-family: 'Shippori Mincho', serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1090px) {
  .concept-main {
    width: 420px;
    font-size: 30px;
    margin-right: auto;
    margin-left: auto;
  }
  .concept-main__right {
    text-align: right;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .concept-main {
    width: 380px;
    font-size: 28px;
    text-align: left;
  }
}
@media screen and (max-width: 550px) {
  .concept-main {
    width: 355px;
    font-size: 26px;
  }
}
@media screen and (max-width: 450px) {
  .concept-main {
    width: 325px;
    font-size: 23px;
  }
}
@media screen and (max-width: 375px) {
  .concept-main {
    width: 300px;
    font-size: 22px;
  }
}

.concept-inner {
  border: 1px solid #000;
}

@media screen and (max-width: 768px){
  .concept-inner {
    border: none;
  }
}

.mbg {
  position: relative;
  margin-top: 200px;
  margin-bottom: 200px;
}
@media screen and (max-width: 1090px) {
  .mbg {
    margin-top: 150px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 550px) {
  .mbg {
    margin-top: 100px;
    margin-bottom: 50px;
  }
}
.mbg-wrap {
  margin-top: 150px;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 1090px) {
  .mbg-wrap {
    margin-top: 100px;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 550px) {
  .mbg-wrap {
    margin-top: 65px;
    margin-bottom: 30px;
  }
}
.mbg-text {
  margin-top: 50px;
  font-size: 23px;
  line-height: 2;
  font-family:'Shippori Mincho', serif;
}
@media screen and (max-width: 1090px) {
  .mbg-text {
    font-size: 16px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 550px) {
  .mbg-text {
    font-size: 14px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 450px) {
  .mbg-text {
    font-size: 12px;
  }
}
.mbg-main {
  position: relative;
  font-size: 26px;
  text-decoration: underline;
}
@media screen and (max-width: 1090px) {
  .mbg-main {
    font-size: 22px;
  }
}
@media screen and (max-width: 550px) {
  .mbg-main {
    font-size: 20px;
  }
}
.mbg-inner {
  border: 1px solid #000;
}
.mbg-att {
  margin-top: 50px;
  border: 1px dashed #000;
  padding: 5px;
}
@media screen and (max-width: 1090px) {
  .mbg-att {
    margin-top: 30px;
  }
}
@media screen and (max-width: 550px) {
  .mbg-att {
    margin-top: 20px;
  }
}
.mbg-att__ttl {
  font-size: 25px;
  font-weight: 700;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 35px;
}
@media screen and (max-width: 1090px) {
  .mbg-att__ttl {
    font-size: 23px;
  }
}
@media screen and (max-width: 550px) {
  .mbg-att__ttl {
    font-size: 18px;
  }
}
.mbg-att__ttl::before {
  display: block;
  content: "";
  background-color: #000;
  width: 1em;
  height: 1em;
  position: absolute;
  left: -30px;
  top: 7px;
  border-radius: 50%;
}
@media screen and (max-width: 550px) {
  .mbg-att__ttl::before {
    width: 0.8em;
    height: 0.8em;
    top: 8px;
    left: -22px;
  }
}
.mbg-att__items {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-right: auto;
  margin-left: auto;
}
.mbg-att__text {
  font-size: 23px;
  margin-top: 10px;
  list-style: disc;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family:'Shippori Mincho', serif;
}
@media screen and (max-width: 1090px) {
  .mbg-att__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .mbg-att__text {
    font-size: 10px;
  }
}
@media screen and (max-width: 375px) {
  .mbg-att__text {
    width: 245px;
    text-align: left;
  }
}

.charge-mv {
  margin-top: 200px;
}

@media screen and (max-width: 550px) {
  .charge-mv {
    margin-top: 160px;
  }
}
.charge-mv__img {
  width: 300px;
  margin-right: auto;
  margin-left: auto;
}
.charge-mv__ttl {
  font-size: 35px;
  letter-spacing: 0.1em;
  border-bottom: 2px dashed #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: 'Shippori Mincho', serif;
}
@media screen and (max-width: 1090px) {
  .charge-mv__ttl {
    margin-top: 30px;
  }
}
.charge-mv__text {
  font-size: 20px;
  margin-top: 30px;
  font-family:'Shippori Mincho', serif;
}
@media screen and (max-width: 768px) {
  .charge-mv__text {
    font-size: 19px;
  }
}
@media screen and (max-width: 550px) {
  .charge-mv__text {
    font-size: 17px;
  }
}
@media screen and (max-width: 400px) {
  .charge-mv__text {
    font-size: 15px;
  }
}
.charge-mv__att {
  margin-top: 10px;
  font-size: 20px;
  font-family: 'Shippori Mincho', serif;
  color: rgb(229, 64, 64);
}
@media screen and (max-width: 550px) {
  .charge-mv__att {
    font-size: 14px;
  }
}

.price {
  position: relative;
  margin-top: 200px;
}

@media screen and (max-width: 550px) {
  .price {
    margin-top: 150px;
  }
}

.price-wrap {
  margin-top: 50px;
  border: 3px solid #000;
  text-align: center;
}
@media screen and (max-width: 550px) {
  .price-wrap {
    margin-top: 30px;
    border: none;
  }
}
.charge-wrap{
  position: relative;
  width:fit-content;
  margin-right: auto;
  margin-left: auto;
}

.charge-wrap::before {
  position: absolute;
  content: "";
  left: -30px;
  top: 20px;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  transform: rotate(45deg);
}
@media screen and (max-width: 1090px) {
  .charge-wrap::before {
    width: 14px;
    height: 14px;
    left: -20px;
    top: 16px;
  }
}

@media screen and (max-width: 550px) {
  .charge-wrap::before {
    top: 11px;
  }
}
@media screen and (max-width: 375px) {
  .charge-wrap::before {
    top: 8px;
  }
}
.price-wrap__lead {
  font-size: 40px;
  font-family:'Shippori Mincho', serif;
}
@media screen and (max-width: 1090px) {
  .price-wrap__lead {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .price-wrap__lead {
    font-size: 30px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 550px) {
  .price-wrap__lead {
    font-size: 24px;
  }
}
@media screen and (max-width: 450px) {
  .price-wrap__lead {
    font-size: 22px;
  }
}
@media screen and (max-width: 400px) {
  .price-wrap__lead {
    font-size: 20px;
  }
}

.price-attention{
  margin-top: 10px;
  font-size: 18px;
  font-family:"Noto Sans JP", sans-serif;
  width: fit-content;
  line-height: 2;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media screen and (max-width: 1090px) {
  .price-attention{
    font-size: 12px;
  }
}
@media screen and (max-width: 550px) {
  .price-attention{
    border: 2px solid #000;
    padding:20px 30px;
  }
}


.price-cont {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 55px;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .price-cont {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 375px) {
  .price-cont {
    justify-content: space-between;
  }
}
.price-item {
  font-size: 30px;
  text-align: left;
  margin-left: 130px;
  list-style: disc;
  font-family:'Shippori Mincho', serif;
  margin-top: 30px;
}
@media screen and (max-width: 1090px) {
  .price-item {
    font-size: 28px;
    margin-left: 70px;
  }
}
@media screen and (max-width: 550px) {
  .price-item {
    margin-left: 25px;
    font-size: 20px;
    width: 100%;
    margin-left: 25px;
  }
}
@media screen and (max-width: 375px) {
  .price-item {
    font-size: 15px;
  }
}
.price-item__more {
  margin-left: 100px;
}
@media screen and (max-width: 1090px) {
  .price-item__more {
    margin-left: 30px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 450px) {
  .price-item__more {
    margin-left: 20px;
    margin-top: 30px;
  }
}
.price-item__span {
  font-size: 20px;
}
@media screen and (max-width: 1090px) {
  .price-item__span {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .price-item__span {
    font-size: 15px;
  }
}
@media screen and (max-width: 450px) {
  .price-item__span {
    font-size: 13px;
  }
}
@media screen and (max-width: 375px) {
  .price-item__span {
    font-size: 10px;
  }
}
.price-item2 {
  font-weight: 400;
  font-size: 30px;
  margin-left: 50px;
  font-family: 'Shippori Mincho', serif;
  margin-top: 30px;
  text-align: left;
}
@media screen and (max-width: 1090px) {
  .price-item2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 550px) {
  .price-item2 {
    font-size: 20px;
    width: 100%;
    margin-left: 0;
    margin-right: 15px;
  }
}
@media screen and (max-width: 375px) {
  .price-item2 {
    font-size: 15px;
  }
}
.price-item2-1 {
  margin-top: 52px;
}
.price-item2__last {
  margin-top: 75px;
}
@media screen and (max-width: 1090px) {
  .price-item2__last {
    margin-left: 10px;
    margin-top: 35px;
  }
}
@media screen and (max-width: 550px) {
  .price-item2__last {
    margin-top: 56px;
  }
}
@media screen and (max-width: 1090px) {
  .price-item2__last2 {
    margin-top: 72px;
  }
}
@media screen and (max-width: 550px) {
  .price-item2__last2 {
    margin-top: 60px;
  }
}
@media screen and (max-width: 450px) {
  .price-item2__last2 {
    margin-top: 90px;
  }
}
@media screen and (max-width: 375px) {
  .price-item2__last2 {
    margin-top: 75px;
  }
}
@media screen and (max-width: 1090px) {
  .price-item2__first {
    margin-left: 10px;
  }
}
.price-item2__span {
  font-size: 20px;
}
@media screen and (max-width: 1090px) {
  .price-item2__span {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .price-item2__span {
    font-size: 15px;
  }
}
@media screen and (max-width: 375px) {
  .price-item2__span {
    font-size: 10px;
  }
}

.price-last{
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .price-last{
    margin-top: 30px;
  }
}
@media screen and (max-width: 550px) {
  .price-last{
    margin-top: 30px;
  }
}
@media screen and (max-width: 375px) {
  .price-last{
    margin-top: 30px;
  }
}
.price-a {
  width: 200px;
  height: 40px;
  background-color: #000;
  margin-left: auto;
  margin-right: 50px;
}
@media screen and (max-width: 550px) {
  .price-a {
    height: 30px;
  }
}
.price-link {
  font-size: 20px;
  color: #fff;
  height: inherit;
  display: flex;
  font-family: "arial", "Noto Sans JP", sans-serif, serif;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 550px) {
  .price-link {
    font-size: 17px;
  }
}
.price-att {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  border: 1px dashed #000;
  text-align: center;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .price-att {
    width: 80%;
  }
}

@media screen and (max-width: 550px) {
  .price-att {
    width: 90%;
    margin-top: 30px;
  }
}

.price-att__ttl {
  position: relative;
  font-size: 20px;
  font-weight: 400;
  font-family:'Shippori Mincho', serif;
}
@media screen and (max-width: 1090px) {
  .price-att__ttl {
    font-size: 16px;
  }
}


.price-att__text {
  font-family:'Shippori Mincho', serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  line-height: 2;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

@media screen and (max-width: 1090px) {
  .price-att__text {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .price-att__text {
    font-size: 12px;
  }
}
@media screen and (max-width: 450px) {
  .price-att__text {
    font-size: 10px;
    margin-top: 10px;
  }
}

.price-att__text2 {
  font-family:"Noto Sans JP", sans-serif, serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 18px;
  line-height: 2;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
@media screen and (max-width: 1090px) {
  .price-att__text2 {
    font-size: 12px;
  }
}
@media screen and (max-width: 550px) {
  .price-att__text2 {
    border: 2px solid #000;
    padding:20px 30px;
  }
}

.top-price{
  margin-bottom: 0;
  margin-top: 100px;
}

.te {
  position: relative;
  margin-bottom: 200px;
  margin-top: 150px;
}
@media screen and (max-width: 1090px) {
  .te {
    margin-bottom: 100px;
    margin-top: 100px;
  }
}
@media screen and (max-width: 550px) {
  .te {
    margin-bottom: 50px;
  }
}
.te-wrap {
  margin-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 1090px) {
  .te-wrap {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 550px) {
  .te-wrap {
    margin-bottom: 30px;
  }
}

.te-text {
  font-size: 23px;
  line-height: 2;
  font-family: 'Shippori Mincho', serif;
}
@media screen and (max-width: 1090px) {
  .te-text {
    font-size: 17px;
  }
}
@media screen and (max-width: 550px) {
  .te-text {
    font-size: 14px;
  }
}
.te-text__span {
  font-size: 27px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 1090px) {
  .te-text__span {
    font-size: 20px;
  }
}
@media screen and (max-width: 550px) {
  .te-text__span {
    font-size: 17px;
  }
}

.te-cont {
  display: grid;
  margin-top: 30px;
  grid-template-columns: 9fr 1fr;
  border: 1px solid #000;
}
.te-left {
  padding: 20px;
  font-size: 25px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  font-family: 'Frank Ruhl Libre', serif;
}
@media screen and (max-width: 1090px) {
  .te-left {
    font-size: 18px;
    padding: 10px;
  }
}
@media screen and (max-width: 550px) {
  .te-left {
    font-size: 14px;
    padding: 10px;
  }
}
.te-left__span {
  float: right;
}
.te-left__last {
  padding: 20px;
  border-right: 1px solid #000;
  font-size: 25px;
}
@media screen and (max-width: 1090px) {
  .te-left__last {
    font-size: 18px;
    padding: 10px;
  }
}
@media screen and (max-width: 550px) {
  .te-left__last {
    font-size: 14px;
    padding: 10px;
  }
}
.te-right {
  font-size: 25px;
  padding: 20px;
  border-bottom: 1px solid #000;
  flex-wrap: wrap;
  display: flex;
  font-family: 'Frank Ruhl Libre', serif;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1090px) {
  .te-right {
    font-size: 18px;
    padding: 10px;
  }
}
@media screen and (max-width: 550px) {
  .te-right {
    font-size: 14px;
    padding: 10px;
  }
}
.te-right__last {
  padding: 20px;
  font-size: 25px;
  font-family: 'Frank Ruhl Libre', serif;
}
@media screen and (max-width: 1090px) {
  .te-right__last {
    font-size: 18px;
    padding: 10px;
  }
}
@media screen and (max-width: 550px) {
  .te-right__last {
    font-size: 14px;
    padding: 10px;
  }
}
.te-att {
  margin-top: 50px;
  border: 1px dashed #000;
  padding: 5px;
}
@media screen and (max-width: 1090px) {
  .te-att {
    margin-top: 30px;
  }
}
@media screen and (max-width: 550px) {
  .te-att {
    margin-top: 20px;
  }
}
.te-att__ttl {
  font-size: 25px;
  font-weight: 700;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 35px;
}
@media screen and (max-width: 1090px) {
  .te-att__ttl {
    font-size: 23px;
  }
}
@media screen and (max-width: 550px) {
  .te-att__ttl {
    font-size: 18px;
  }
}
.te-att__ttl::before {
  display: block;
  content: "";
  background-color: #000;
  width: 1em;
  height: 1em;
  position: absolute;
  left: -30px;
  top: 7px;
  border-radius: 50%;
}
.te-att__items {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-right: auto;
  margin-left: auto;
}
.te-att__text {
  font-size: 23px;
  margin-top: 10px;
  list-style: disc;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1090px) {
  .te-att__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 550px) {
  .te-att__text {
    font-size: 10px;
  }
}
@media screen and (max-width: 375px) {
  .te-att__text {
    width: 245px;
    text-align: left;
  }
}

.charge-item {
  font-size: 30px;
  margin-top: 27px;
  text-align: left;
  margin-left: 20px;
  list-style: disc;
  font-family: 'Shippori Mincho', serif;
  margin-top: 30px;
}
@media screen and (max-width: 1090px) {
  .charge-item {
    font-size: 28px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .charge-item {
    font-size: 22px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 550px) {
  .charge-item {
    width: 100%;
    font-size: 20px;
  }
}
@media screen and (max-width: 450px) {
  .charge-item {
    font-size: 18px;
  }
}
@media screen and (max-width: 375px) {
  .charge-item {
    font-size: 15px;
    margin-left: 20px;
  }
}

.charge-item2{
  list-style: none;
  margin-left: 0;
}

@media screen and (max-width: 768px) {
  .charge-item__first {
    margin-left: 10px;
  }
}


.charge-item__last1{
  margin-top: 30px;
}

@media screen and (max-width: 1090px) {
  .charge-item__last1 {
    margin-top:30px;
  }
}

@media screen and (max-width: 768px) {
  .charge-item__last2 {
    margin-left: 10px;
  }
}



@media screen and (max-width: 450px) {
  .charge-item__last2 {
    margin-top: 30px;
  }
}
@media screen and (max-width: 375px) {
  .charge-item__last2 {
    margin-top: 30px;
  }
  .grow-item__last2{
    margin-top: 37.5px;
  }
}


@media screen and (max-width: 550px) {
  .charge-item__top{
    margin-top: 20px;
  }
}
@media screen and (max-width: 450px) {
  .charge-item__top{
    margin-top: 10px;
  }
}

@media screen and (max-width: 550px) {
  .charge-item__left{
    margin-top: 60px;
  }
}


@media screen and (max-width: 1090px) {
  .charge-cont {
    justify-content: space-around;
  }
}
.charge-wrap__lead {
  font-size: 40px;
  font-family:'Shippori Mincho', serif;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 1090px) {
  .charge-wrap__lead {
    font-size: 30px;
  }
}
@media screen and (max-width:768px) {
  .charge-wrap__lead {
    font-size: 30px;
    margin-top: 40px;
  }
}
@media screen and (max-width:550px) {
  .charge-wrap__lead {
    font-size: 24px;
  }
}
@media screen and (max-width:450px) {
  .charge-wrap__lead {
    font-size: 22px;
  }
}
@media screen and (max-width:400px) {
  .charge-wrap__lead {
    font-size: 20px;
  }
}




@media screen and (max-width: 550px) {
  .charge-item__span {
    font-size: 15px;
  }
}
@media screen and (max-width: 450px) {
  .charge-item__span {
    font-size: 13px;
  }
}
@media screen and (max-width: 375px) {
  .charge-item__span {
    font-size: 10px;
  }
}

@media screen and (max-width: 550px) {
  .charge-item__1{
    margin-top: 50px;
  }
}
@media screen and (max-width: 450px) {
  .charge-item__1{
    margin-top: 37px;
  }
}
@media screen and (max-width: 375px) {
  .charge-item__1{
    margin-top: 32.5px;
  }
}
@media screen and (max-width: 550px) {
  .charge-item__2{
    margin-top: 50px;
  }
}
@media screen and (max-width: 450px) {
  .charge-item__2{
    margin-top: 37px;
  }
}
@media screen and (max-width: 375px) {
  .charge-item__2{
    margin-top: 32.5px;
  }
}

.charge-items__last{
  margin-left: 230px;
}
@media screen and (max-width: 1090px) {
  .charge-items__last{
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .price-item__more1{
margin-top: 60px;
  }
}

.p-last{
  margin-top: 75px;
}
@media screen and (max-width: 1090px) {
  .p-last{
    margin-top: 72px;
  }
}

@media screen and (max-width: 768px){
  .p-last{
    margin-top: 63px;
  }
}
@media screen and (max-width: 550px){
  .p-last{
    margin-top: 60px;
  }
}
@media screen and (max-width: 375px){
  .p-last{
    margin-top: 52.5px;
  }
  .p-last2{
    margin-top: 37.5px;
  }
}

.travel-link{
  text-decoration: underline;
  color: #000;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .travel-link{
    font-size: 18px;
  }
}
@media screen and (max-width: 550px) {
  .travel-link{
    font-size: 16px;
  }
}
@media screen and (max-width: 450px) {
  .travel-link{
    font-size: 14px;
  }
}


.flow {
  margin-top: 220px;
  text-align: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 1090px) {
  .flow {
    margin-top: 180px;
  }
}
@media screen and (max-width: 550px) {
  .flow {
    margin-top: 150px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 375px) {
  .flow {
    margin-top: 100px;
    margin-bottom: 40px;
  }
}
.flow-lead {
  margin-top: 50px;
  font-size: 27px;
  font-family:'Shippori Mincho', serif;
}
@media screen and (max-width: 1090px) {
  .flow-lead {
    font-size: 24px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 550px) {
  .flow-lead {
    font-size: 20px;
    margin-top: 30px;
  }
}
.flow-wrap {
  margin-top: 90px;
}
@media screen and (max-width: 1090px) {
  .flow-wrap {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .flow-wrap {
    margin-top: 30px;
  }
}

@media screen and (max-width: 450px) {
  .flow-wrap {
    margin-top: 20px;
  }
}

.flow-wrap2 {
  position: relative;
}
.flow-img {
  position: absolute;
  top: 35px;
  left: 15px;
  width: 70px;
}
.flow-Spimg{
  display: none;
  position: absolute;
  right: 25px;
  width: 70px;
}
@media screen and (max-width: 1090px) {
  .flow-img {
    top: 32px;
    left: -45px;
    width: 66px;
  }
}
@media screen and (max-width: 830px) {
  .flow-img {
    display: none;
  }
  .flow-Spimg{
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .flow-Spimg{
    right: -65px;
    width: 65px;
  }
}
@media screen and (max-width: 660px) {
  .flow-Spimg{
    right: -53px;
    width: 64px;
  }
}

@media screen and (max-width: 650px) {
  .flow-Spimg{
    right: -6px;
    width: 55px;
  }
}
@media screen and (max-width: 550px) {
  .flow-Spimg{
    right: 6%;
    width: 50px;
  }
}
@media screen and (max-width: 500px) {
  .flow-Spimg{
    right: 0%;
    width: 49px;
  }
}
@media screen and (max-width: 450px) {
  .flow-Spimg{
    right: -10px;
    width: 48px;
  }
}

@media screen and (max-width: 400px) {
  .flow-Spimg{
    top: 5px;
    right: 0%;
    width: 42px;
  }
}

@media screen and (max-width: 375px) {
  .flow-Spimg{
    top: 4px;
    right: -3%;
    width: 42px;
  }
}
@media screen and (max-width: 350px) {
  .flow-Spimg{
    top: 4px;
    right: -6%;
  }
}
@media screen and (max-width: 340px) {
  .flow-Spimg{
    right: -8%;
  }
}


.flow-cont {
  position: relative;
  display: flex;
  max-width: 860px;
  justify-content: space-around;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1090px) {
  .flow-cont {
    max-width: 700px;
  }
}
@media screen and (max-width: 550px) {
  .flow-cont {
    max-width: 400px;
  }
}
@media screen and (max-width: 400px) {
  .flow-cont {
    max-width: 340px;
  }
}
@media screen and (max-width: 380px) {
  .flow-cont {
    max-width: 300px;
  }
}
.flow-cont__step {
  font-size: 25px;
  border-bottom: 3px dashed #000;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-family:'Frank Ruhl Libre', serif;
}
@media screen and (max-width: 1090px) {
  .flow-cont__step {
    font-size: 18px;
  }
}
@media screen and (max-width: 550px) {
  .flow-cont__step {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .flow-cont__step {
    font-size: 12px;
  }
}
@media screen and (max-width: 400px) {
  .flow-cont__step {
    font-size: 10px;
  }
}
.flow-cont__step1 {
  position: absolute;
  left: 10px;
}
@media screen and (max-width: 1090px) {
  .flow-cont__step1 {
    left: 27px;
  }
}
@media screen and (max-width: 768px) {
  .flow-cont__step1 {
    left: -50px;
  }
}
@media screen and (max-width: 650px) {
  .flow-cont__step1 {
    left: 0;
  }
}
@media screen and (max-width: 450px) {
  .flow-cont__step1 {
    left: 0;
  }
}
@media screen and (max-width: 380px){
  .flow-cont__step1 {
    left: -20px;
  }
}

.flow-cont__right {
  border: 1px solid #000;
  padding:40px;
  width: 620px;
}
@media screen and (max-width: 1090px) {
  .flow-cont__right {
    width: 500px;
    padding:30px;
  }
}
@media screen and (max-width: 650px) {
  .flow-cont__right {
    width: 400px;
  }
}
@media screen and (max-width: 550px) {
  .flow-cont__right {
    width: 300px;
    padding: 20px;
  }
}
@media screen and (max-width: 450px) {
  .flow-cont__right {
    padding:20px 14px;
  }
}
@media screen and (max-width: 400px) {
  .flow-cont__right {
    width: 265px;
    padding:15px 8px;
  }
}

.flow-cont__right3 {
  border: 1px solid #000;
  padding:40px;
  width: 620px;
}
@media screen and (max-width: 1090px) {
  .flow-cont__right3 {
    width: 500px;
    padding: 30px 24px;
  }
}
@media screen and (max-width: 650px) {
  .flow-cont__right3 {
    width: 400px;
  }
}
@media screen and (max-width: 550px) {
  .flow-cont__right3 {
    width: 300px;
    padding: 20px;
  }
}
@media screen and (max-width: 400px) {
  .flow-cont__right3 {
    width: 265px;
    padding: 15px 4px;
  }
}

.flow-cont__right4 {
  border: 1px solid #000;
  padding:40px;
  width: 620px;
  height: 535px;
}
@media screen and (max-width: 1090px) {
  .flow-cont__right4 {
    width: 500px;
    height: 430px;
    padding: 30px;
  }
}
@media screen and (max-width: 650px) {
  .flow-cont__right4 {
    width: 400px;
    height: 365px;
  }
}
@media screen and (max-width: 550px) {
  .flow-cont__right4 {
    padding: 20px;
    width: 300px;
    height: 325px;
  }
}
@media screen and (max-width: 400px) {
  .flow-cont__right4 {
    width: 265px;
    height: 295px;
    padding: 15px 4px ;
  }
}

.flow-cont__right6 {
  border: 1px solid #000;
  padding:40px;
  width: 620px;
  height: 370px;
}
@media screen and (max-width: 1090px) {
  .flow-cont__right6 {
    width: 500px;
    height: 290px;
    padding: 30px;
  }
}
@media screen and (max-width: 650px) {
  .flow-cont__right6 {
    width: 400px;
    height: 250px;
  }
}
@media screen and (max-width: 550px) {
  .flow-cont__right6 {
    width: 300px;
    height: 200px;
    padding: 20px;
  }
}
@media screen and (max-width: 400px) {
  .flow-cont__right6 {
    width: 265px;
    height: 175px;
    padding: 15px 2px;
  }
}

.flow-cont__ttlwrap {
  position: relative;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 550px) {
  .flow-cont__ttlwrap {
    margin-top: 0;
  }
}
.flow-cont__ttlwrap::before {
  position: absolute;
  top: 0;
  left: -25px;
  content: "";
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  border: 1px solid #000;
  transform: rotate(45deg);
  margin-right: 5px;
  margin-top: 19px;
}
@media screen and (max-width: 1090px) {
  .flow-cont__ttlwrap::before {
    width: 18px;
    height: 18px;
    margin-top: 14px;
    top: 0;
  }
}
@media screen and (max-width: 650px) {
  .flow-cont__ttlwrap::before {
    width: 12px;
    height: 12px;
    margin-top: 10px;
    left: -15px;
  }
}
@media screen and (max-width: 550px) {
  .flow-cont__ttlwrap::before {
    width: 8px;
    height: 8px;
    margin-top: 9px;
    left: -10px;
  }
}
.flow-cont__ttl {
  font-size: 34px;
  border-bottom: 4px solid #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  font-family: 'Shippori Mincho', serif;
}
@media screen and (max-width: 1090px) {
  .flow-cont__ttl {
    font-size: 28px;
  }
}
@media screen and (max-width: 650px) {
  .flow-cont__ttl {
    font-size: 20px;
    border-bottom: 3px solid #000;
  }
}
@media screen and (max-width: 550px) {
  .flow-cont__ttl {
    font-size: 16px;
  }
}

.step2-span{
  font-size: 22px;
}
@media screen and (max-width: 1090px) {
  .step2-span{
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .step2-span{
    font-size: 12px;
  }
}
@media screen and (max-width: 450px) {
  .step2-span{
    font-size: 11px;
  }
}

.flow-cont__sub {
  font-family:'Shippori Mincho', serif;
  margin-top: 20px;
}
@media screen and (max-width: 1090px) {
  .flow-cont__sub {
    font-size: 12px;
  }
}
@media screen and (max-width: 550px) {
  .flow-cont__sub {
    font-size: 10px;
  }
}
.flow-cont__text {
  font-size: 20px;
  font-weight: 200;
  margin-top: 50px;
  font-family:'Shippori Mincho', serif;
  text-align: center;
}
@media screen and (max-width: 1090px) {
  .flow-cont__text {
    font-size: 18px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 650px) {
  .flow-cont__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 550px) {
  .flow-cont__text {
    font-size: 11px;
    margin-top: 20px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 400px) {
  .flow-cont__text {
    font-size: 10px;
  }
}

.flow-cont__next{
  margin-top: 30px;
}

@media screen and (max-width: 1090px){
  .flow-cont__next{
    margin-top: 10px;
  }
}

.flow-cont__contact {
  display: flex;
  margin-top: 30px;
  align-items: center;
  justify-content: space-between;
  width: 450px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1090px) {
  .flow-cont__contact {
    width: 300px;
  }
}

@media screen and (max-width: 550px) {
  .flow-cont__contact {
    margin-top: 10px;
    width: 200px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 400px) {
  .flow-cont__contact {
    width: 180px;
  }
}

.flow-cont__link {
  width: 300px;
  height: 40px;
  background-color: #06C755;
  border-radius: 10px;
}
@media screen and (max-width: 1090px) {
  .flow-cont__link {
    width: 200px;
  }
}
@media screen and (max-width: 550px) {
  .flow-cont__link {
    width: 120px;
    height: 25px;
  }
}
.flow-cont__form {
  color: #fff;
  font-size: 20px;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1090px) {
  .flow-cont__form {
    font-size: 14px;
  }
}
@media screen and (max-width: 550px) {
  .flow-cont__form {
    font-size: 10px;
  }
}
.flow-cont__items {
  margin-top: 60px;
  text-align: left;
  width: 312px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 550px) {
  .flow-cont__items {
    margin-top: 20px;
  }
}
.flow-cont__item {
  font-size: 20px;
  font-weight: 200;
  margin-top: 10px;
  list-style: disc;
  font-family:'Shippori Mincho', serif;
}
@media screen and (max-width: 1090px) {
  .flow-cont__item {
    font-size: 18px;
  }
}
@media screen and (max-width: 650px) {
  .flow-cont__item {
    font-size: 14px;
  }
}
@media screen and (max-width: 550px) {
  .flow-cont__item {
    font-size: 12px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 400px) {
  .flow-cont__item {
    font-size: 10px;
  }
}
.flow-cont__url {
  text-align: left;
  color: #38B6FF;
  text-decoration: underline;
  overflow-wrap: break-word;
}
@media screen and (max-width: 550px) {
  .flow-cont__url {
    display: block;
    font-size: 10px;
    line-height: 1.5;
  }
}
.flow-cont__wrap {
  text-align: left;
  margin-bottom: 40px;
}
@media screen and (max-width: 1090px) {
  .flow-cont__wrap {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 550px) {
  .flow-cont__wrap {
    margin-bottom:0;
  }
}

.arrow-wrap {
  margin-right: 20px;
}

.dli-arrow-down {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 9px;
  height: 450px;
  background: currentColor;
  margin-top: 50px;
}
@media screen and (max-width: 1090px) {
  .dli-arrow-down {
    height: 310px;
  }
}
@media screen and (max-width: 650px) {
  .dli-arrow-down {
    height: 280px;
    width: 6px;
  }
}
@media screen and (max-width: 550px) {
  .dli-arrow-down {
    height: 170px;
    width: 5px;
  }
}
.dli-arrow-down::before {
  content: "";
  width: 24px;
  height: 24px;
  border: 9px solid currentColor;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  position: absolute;
  left: 50%;
  bottom: -10px;
  box-sizing: border-box;
}
@media screen and (max-width: 650px) {
  .dli-arrow-down::before {
    border: 6px solid currentColor;
    border-top: 0;
    border-right: 0;
    bottom: -8px;
  }
}
@media screen and (max-width: 550px) {
  .dli-arrow-down::before {
    border: 5px solid currentColor;
    border-top: 0;
    border-right: 0;
    bottom: -7px;
    width: 18px;
    height: 18px;
  }
}

.dli-arrow-down2 {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 9px;
  height: 300px;
  background: currentColor;
  margin-top: 40px;
}
@media screen and (max-width: 1090px) {
  .dli-arrow-down2 {
    height: 190px;
  }
}
@media screen and (max-width: 650px) {
  .dli-arrow-down2 {
    width: 6px;
  }
}
@media screen and (max-width: 550px) {
  .dli-arrow-down2 {
    height: 90px;
    width: 5px;
  }
}
.dli-arrow-down2::before {
  content: "";
  width: 24px;
  height: 24px;
  border: 9px solid currentColor;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  position: absolute;
  left: 50%;
  bottom: -10px;
  box-sizing: border-box;
}
@media screen and (max-width: 650px) {
  .dli-arrow-down2::before {
    border: 6px solid currentColor;
    bottom: -8px;
    border-top: 0;
    border-right: 0;
  }
}
@media screen and (max-width: 550px) {
  .dli-arrow-down2::before {
    border: 5px solid currentColor;
    border-top: 0;
    border-right: 0;
    bottom: -7px;
    width: 18px;
    height: 18px;
  }
}

.line-mini__icon {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 1090px) {
  .line-mini__icon {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 550px) {
  .line-mini__icon {
    width: 30px;
    height: 30px;
  }
}

.price-text {
  font-size: 20px;
  text-align: center;
  margin-top: 30px;
  font-family:'Shippori Mincho', serif;
}
@media screen and (max-width: 1080px) {
  .price-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .price-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 400px) {
  .price-text {
    font-size: 14px;
  }
}

.price-tax{
  text-align: center;
  margin-top: 30px;
  font-size: 25px;
  font-family: 'Shippori Mincho', serif;
}

@media screen and (max-width: 768px) {
  .price-tax{
    font-size: 20px;
  }
}
@media screen and (max-width: 550px) {
  .price-tax{
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .price-tax{
    font-size: 14px;
  }
}

.lowPrice {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .lowPrice {
    margin-top: 80px;
  }
}
@media screen and (max-width: 450px) {
  .lowPrice {
    margin-top: 50px;
  }
}
.lowPrice-att {
  width: 90%;
  margin-bottom: 50px;
  font-family:'Shippori Mincho', serif;
}
@media screen and (max-width: 550px){
  .lowPrice-att {
    width: 100%;
  }
}
.lowPrice__text {
  font-size: 18px;
  margin-left: 30px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .lowPrice__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .lowPrice__text {
    font-size: 12px;
  }
}
@media screen and (max-width: 450px) {
  .lowPrice__text {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
}
.lowPrice__text2 {
  list-style: none;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .lowPrice__text2 {
    padding-left: 25px;
    text-indent: -30px;
  }
}
@media screen and (max-width: 450px) {
  .lowPrice__text2 {
    text-indent: -20px;
  }
}
.lowPrice__text2::before {
  content: "※";
  margin-right: 0.5em;
}
.lowPrice__text3 {
  margin-top: 30px;
}
@media screen and (max-width: 550px) {
  .lowPrice__text3 {
    margin-top: 10px;
  }
}
.lowPrice-wrap {
  width: 180px;
  height: 35px;
  background-color: #000;
  margin-left: auto;
}
@media screen and (max-width: 550px) {
  .lowPrice-wrap {
    width: 160px;
    height: 30px;
  }
}
.lowPrice-link {
  color: #fff;
  font-size: 14px;
  height: inherit;
  display: flex;
  font-family: "arial", "Noto Sans JP", sans-serif, serif;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
@media screen and (max-width: 550px) {
  .lowPrice-link {
    font-size: 12px;
  }
}
.lowPrice-cont {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 50px;
}
.lowPrice-cont__text {
  margin-left: 0;
  font-size: 30px;
}
@media screen and (max-width: 750px) {
  .lowPrice-cont__text {
    font-size: 28px;
  }
}
@media screen and (max-width: 550px) {
  .lowPrice-cont__text {
    margin-right: 0;
    margin-left: auto;
    margin-right: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 24px;
    margin-top: 23px;
  }
}
@media screen and (max-width: 450px) {
  .lowPrice-cont__text {
    font-size: 20px;
  }
}


.lowPrice-cont2 {
  justify-content: space-around;
}

.growth-link{
  display: block;
  color: #38B6FF;
  text-decoration: underline;
}

.growth-att{
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .growth-att{
    margin-top: 20px;
  }
}

.voice {
  position: relative;
  margin-top: 200px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1090px) {
  .voice {
    margin-top: 180px;
  }
}
@media screen and (max-width: 768px) {
  .voice {
    margin-top: 150px;
    margin-bottom: 80px;
  }
}

.voice-lead {
  margin-top: 50px;
  font-size: 20px;
  font-family:'Shippori Mincho', serif;
  margin-right: auto;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1090px) {
  .voice-lead {
    font-size: 17px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 550px) {
  .voice-lead {
    font-size: 14px;
    margin-top: 30px;
  }
}

.voice-ttl {
  margin-top: 100px;
  font-size: 34px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family:'Shippori Mincho', serif;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .voice-ttl {
    margin-top: 60px;
    font-size: 30px;
    margin-right: auto;
    margin-left: auto;
  }
}
.voice-ttl::before {
  display: block;
  content: "";
  background-color: #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  left: -35px;
  top: 13px;
}
@media screen and (max-width: 768px) {
  .voice-ttl::before {
    top: 10px;
  }
}

.voice-cont__wrap {
  display: flex;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .voice-cont__wrap {
    margin-top: 60px;
  }
}

.voice-cont__left {
  text-align: center;
  padding-right: 30px;
  border-right: 1px solid #333;
  margin-right: 30px;
}
@media screen and (max-width: 450px) {
  .voice-cont__left {
    margin-right: 20px;
    padding-right: 10px;
  }
}

.voice-img {
  max-width: 200px;
  width: 200px;
  height: 200px;
}
@media screen and (max-width: 768px) {
  .voice-img {
    width: 155px;
    height: 155px;
  }
}
@media screen and (max-width: 450px) {
  .voice-img {
    width: 130px;
    height: 130px;
  }
}

.voice-text {
  margin-top: 40px;
  font-size: 19px;
  font-family:'Shippori Mincho', serif;
}
@media screen and (max-width: 1090px) {
  .voice-text {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .voice-text {
    font-size: 16px;
    margin-top: 0;
  }
}
@media screen and (max-width: 450px) {
  .voice-text {
    font-size: 12px;
  }
}

.voice-subText {
  font-size: 16px;
  margin-top: 20px;
  letter-spacing: 0.01em;
  font-family:'Shippori Mincho', serif;
}
@media screen and (max-width: 768px) {
  .voice-subText {
    font-size: 14px;
  }
}
@media screen and (max-width: 650px) {
  .voice-subText {
    font-size: 13px;
  }
}
@media screen and (max-width: 450px) {
  .voice-subText {
    font-size: 11px;
  }
}

.contact {
  margin-top: 200px;
  font-family: 'Shippori Mincho', serif;
}
@media screen and (max-width: 768px) {
  .contact {
    margin-top: 150px;
  }
}

.contact-wrap {
  text-align: center;
}
.contact-text {
  font-size: 23px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1090px) {
  .contact-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .contact-text {
    font-size: 12px;
  }
}

.contact-text span{
  margin-left: 10px;
}

.contact-text2 {
  color: rgb(229, 64, 64);
}
.contact-line {
  width: 40px;
  height: 40px;
}

.form {
  margin-bottom: 40px;
}

.form_item {
  margin-top: 20px;
}

.form_label-text {
  font-size: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-left: 25px;
}
.form_label-text::before {
  display: block;
  content: "";
  background-color: #000;
  width: 1em;
  height: 1em;
  position: absolute;
  left: -16px;
  top: 4px;
  border-radius: 50%;
}
.form_label-text::after {
  display: block;
  content: "※";
  color: rgb(229, 64, 64);
  width: 1em;
  height: 1em;
  position: absolute;
  right: -20px;
  top: 0;
}
@media screen and (max-width: 768px) {
  .form_label-text {
    font-size: 14px;
  }
}

.form_label-text2 {
  font-size: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-left: 25px;
}
.form_label-text2::before {
  display: block;
  content: "";
  background-color: #000;
  width: 1em;
  height: 1em;
  position: absolute;
  left: -16px;
  top: 4px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .form_label-text2 {
    font-size: 14px;
  }
}

.form_input {
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .form_input {
    margin-top: 4px;
  }
}

.form_input-text,
.form_textarea {
  font-size: 15px;
  padding: 10px;
  width: 100%;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .form_input-text,
.form_textarea {
    font-size: 14px;
  }
}

.form_input-text::-moz-placeholder, .form_textarea::-moz-placeholder {
  color: #000;
  opacity: 0.5;
}

.form_input-text::placeholder,
.form_textarea::placeholder {
  color: #000;
  opacity: 0.5;
}

.form_textarea {
  height: 171px;
  resize: none;
}

.form_button {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form_button {
    margin-top: 42px;
  }
}

.button {
  font-size: 20px;
  width: 235px;
  display: inline-block;
  padding: 15px 15px;
  background-color: #dcdcdc;
  color: #000;
  letter-spacing: 0.05em;
}

.line-entry {
  font-size: 23px;
  margin-top: 30px;
  color: #fff;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  background-color: #06C755;
  padding: 10px 50px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 4px 4px 4px gray;
}
@media screen and (max-width: 1090px) {
  .line-entry {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .line-entry {
    font-size: 12px;
  }
}

.line-text {
  font-size: 23px;
  margin-top: 10px;
  color: #333;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  font-family:'Shippori Mincho', serif;
}
@media screen and (max-width: 1090px) {
  .line-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .line-text {
    font-size: 12px;
  }
}


.message{
  margin-top: 150px;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #f4f4f4;
}
@media screen and (max-width: 768px){
  .message{
    margin-top: 100px;
  }
}

@media screen and (max-width: 450px){
  .message{
    margin-top: 70px;
    padding-top: 70px;
    padding-bottom: 70px;
  }
}


.message-wrap{
  margin-top: 50px;
  position: relative;
  display: flex;
}

.message-img{
  position: absolute;
  top: 0;
  width: 340px;
  height: auto;
  z-index: 10;
}

@media screen and (max-width: 1090px) {
  .message-img{
    width: 280px;
  }
}

@media screen and (max-width: 768px) {
  .message-img{
    width: 230px;
  }
}

@media screen and (max-width: 550px) {
  .message-img{
    width: 70%;
  }
}

@media screen and (max-width: 450px) {
  .message-img{
    width: 80%;
  }
}

.message-cont{
  margin-top: 30px;
  border: 1px solid #000;
  margin-left: auto;
  padding:30px 10px 20px 10px;
  width: 780px;
}

@media screen and (max-width: 1090px) {
  .message-cont{
    width: 535px;
  }
}

@media screen and (max-width: 768px) {
  .message-cont{
    width: 375px;
  }
}

@media screen and (max-width: 550px) {
  .message-cont{
    margin-top: 180px;
    width:97%;
    padding: 70px 10px 20px 10px;
  }
}

@media screen and (max-width: 450px) {
  .message-cont{
    padding: 55px 10px 20px 10px;
  }
}

@media screen and (max-width: 400px) {
  .message-cont{
    margin-top: 140px;
  }
}

@media screen and (max-width: 360px) {
  .message-cont{
    margin-top: 120px;
  }
}

.message-title{
  font-size: 32px;
  text-align: center;
  font-weight: bold;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
}

@media screen and (max-width: 768px) {
  .message-title{
    font-size: 22px;
  }
}

.message-text{
  margin-top: 30px;
  font-size: 15px;
  letter-spacing: 0.01em;
  font-family: 'Shippori Mincho', serif;
}

@media screen and (max-width: 768px) {
  .message-text{
    font-size: 12px;
  }
}

@media screen and (max-width: 550px) {
  .message-text{
    padding-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .message-text{
    margin-top: 15px;
  }
}

.message-span{
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  .message-span{
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

.message-texts{
  text-align: center;
}

.grow-entry {
  font-size: 23px;
  margin-top: 30px;
  color: #fff;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  background-color: #5F79D8;
  padding: 10px 50px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 4px 4px 4px gray;
}
@media screen and (max-width: 1090px) {
  .grow-entry {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .grow-entry {
    font-size: 12px;
  }
}

.qa {
  position: relative;
  margin-top: 200px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1090px) {
  .qa {
    margin-top: 180px;
  }
}
@media screen and (max-width: 768px) {
  .qa {
    margin-top: 150px;
    margin-bottom: 80px;
  }
}

.qa-lead {
  margin-top: 50px;
  font-size: 20px;
  font-family:'Shippori Mincho', serif;
  margin-right: auto;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1090px) {
  .qa-lead {
    font-size: 17px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 550px) {
  .qa-lead {
    font-size: 14px;
    margin-top: 30px;
  }
}

.qa-wrap{
  margin-top: 60px;
}

.question{
  width: fit-content;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  border-bottom: 3px solid #dcdcdc;
  font-weight: bold;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .question{
    font-size: 20px;
  }
}

@media screen and (max-width: 550px) {
  .question{
    font-size: 16px;
  }
}

.answer{
  margin-top: 30px;
  font-family:'Shippori Mincho', serif;
  font-weight: 300;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .answer{
    font-size: 14px;
  }
}

.qa-att{
  margin-top: 50px;
  font-size: 16px;
  font-family:'Shippori Mincho', serif;
  text-align: center;
}

.qa-link{
  background-color:#5F79D8 ;
}

.footer {
  padding: 31px;
  background-color: #dcdcdc;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 22px;
  }
}
@media screen and (max-width: 550px) {
  .footer {
    padding: 15px;
  }
}

.footer_copyright {
  display: block;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 550px) {
  .footer_copyright {
    font-size: 10px;
  }
}

.inner {
  width: 100%;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 1090px) {
  .inner {
    max-width: 740px;
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 550px;
  }
}
@media screen and (max-width: 550px) {
  .inner {
    padding-right: 5px;
    padding-left: 5px;
    max-width: 95%;
  }
}

.mv-inner{
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.image-inner {
  border: 1px solid #000;
}

@media screen and (max-width: 1090px) {
  .image-inner {
    padding-left: 30px;
  }
}

@media screen and (max-width: 768px) {
  .image-inner {
    padding-left: 26px;
  }
}

@media screen and (max-width: 550px) {
  .image-inner {
    padding-left: 20px;
  }
}

.top-growth{
  max-width: 100%;
  margin-top: 150px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px){
  .top-growth{
    margin-top: 100px;
  }
}

@media screen and (max-width: 450px){
  .top-growth{
    padding-bottom: 70px;
  }
}

.flow-inner {
  padding-right: 10px;
  padding-left: 10px;
}
@media screen and (max-width: 420px) {
  .flow-inner {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 375px) {
  .flow-inner {
    padding-right: 3px;
    padding-left: 3px;
  }
}

.section-ttl {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  font-family: 'Frank Ruhl Libre', serif;
}

.section-ttl_uline {
  background-color: #000;
  width: 200px;
  margin-top: 0;
  height: 7px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1090px) {
  .section-ttl_uline {
    width: 100px;
    height: 5px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 550px) {
  .section-ttl_uline {
    height: 4px;
  }
}

.section-ttl_PR {
  width: 350px;
}
.section-ttl_GR {
  width: 400px;
}

@media screen and (max-width: 1090px) {
  .section-ttl_PR {
    width: 250px;
  }
  .section-ttl_GR {
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .section-ttl_PR {
    width: 150px;
  }
  .section-ttl_GR {
    width: 100px;
  }
}

.section-ttl__text {
  position: relative;
  font-size: 65px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 300;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1090px) {
  .section-ttl__text {
    font-size: 40px;
  }
}
@media screen and (max-width: 550px) {
  .section-ttl__text {
    font-size: 35px;
  }
}
@media screen and (max-width: 400px) {
  .section-ttl__text {
    font-size: 28px;
  }
}

.grow-title {
  font-size: 61px;
}
@media screen and (max-width: 1090px) {
  .grow-title {
    font-size: 39px;
  }
}

@media screen and (max-width: 768px) {
  .grow-title{
    align-items: flex-start;
  }
}

@media screen and (max-width: 550px) {
  .grow-title {
    font-size: 34px;
  }
}
@media screen and (max-width: 400px) {
  .grow-title {
    font-size: 27px;
  }
}


.section-ttl__text1 {
  margin-left: auto;
  margin-right: auto;
  padding-right: 10px;
  padding-left: 10px;
}
.section-ttl__text2 {
  margin-left: auto;
  margin-right: auto;
  padding-right: 10px;
  padding-left: 10px;
}

.section-ttl1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: -85px;
  background-color: #fff;
  padding-left: 30px;
  padding-right: 30px;
  font-family: 'Frank Ruhl Libre', serif;
}
@media screen and (max-width: 1090px) {
  .section-ttl1 {
    top: -50px;
  }
}
@media screen and (max-width: 768px){
  .section-ttl1{
    position: initial;
    transform: none;
  }
}

.reason-ttl{
  background-color: #f4f4f4;
  top: 125px;
}

@media screen and (max-width: 1090px) {
  .reason-ttl{
    top: 150px;
  }
}

.message-ttl{
  background-color: #f4f4f4;
}

.section-Subttl1 {
  top: -40px;
}
@media screen and (max-width: 1090px) {
  .section-Subttl1 {
    top: -25px;
  }
}
@media screen and (max-width: 550px) {
  .section-Subttl1 {
    top: -20px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 400px) {
  .section-Subttl1 {
    top: -17px;
  }
}


.section-Subttl__text {
  position: relative;
  font-size: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1090px) {
  .section-Subttl__text {
    font-size: 30px;
    width: 290px;
  }
}
@media screen and (max-width: 550px) {
  .section-Subttl__text {
    font-size: 25px;
    width: 225px;
  }
}
@media screen and (max-width: 400px) {
  .section-Subttl__text {
    font-size: 22px;
    width: 225px;
  }
}


.section-MBGttl__text{
  width: 700px;
}

@media screen and (max-width: 1090px){
  .section-MBGttl__text{
    width: 400px;
  }
}

@media screen and (max-width: 450px){
  .section-MBGttl__text{
    width: 360px;
  }
}

@media screen and (max-width: 400px){
  .section-MBGttl__text{
    width: 300px;
  }
}

.parenthesis-container {
  display: inline-block;
  position: relative;
}

.parenthesis {
  display: inline-block;
  position: relative;
  transform: rotate(-90deg);
  transform-origin: top center;
  padding-top: 10px;
}

.thanks {
  padding: 200px 0;
}

.thanks_text {
  text-align: center;
  font-family:'Shippori Mincho', serif ;
}

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

.button {
  font-size: 20px;
  width: 235px;
  display: inline-block;
  padding: 15px 15px;
  transition: 0.3s background-color, 0.3s box-shadow;
  background-color: #dcdcdc;
  color: #000;
  font-family:'Shippori Mincho', serif ;
  letter-spacing: 0.05em;
  box-shadow: 2px 2px 4px rgba(247, 247, 247, 0.5);
}

.fadeIn {
  opacity: 0;
  transform: translate(-50%, 40px);
  transition: all 1.0s;
}

.fadeIn.animated {
  opacity: 1;
  transform: translate(-50%, 0);
}


.fadeIn01{
  transition-delay: 0.5s;
}

@media screen and (max-width: 1090px) {
  .lg-none {
    display: none;
  }
}

.lg-show {
  display: none;
}
@media screen and (max-width: 1090px) {
  .lg-show {
    display: block;
  }
}

@media screen and (max-width: 900px) {
  .hd-none {
    display: none;
  }
}

.hd-show {
  display: none;
}
@media screen and (max-width: 900px) {
  .hd-show {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

@media screen and (max-width: 550px) {
  .sp2-none {
    display: none;
  }
}

.sp2-show {
  display: none;
}
@media screen and (max-width: 550px) {
  .sp2-show {
    display: block;
  }
}
@media screen and (max-width: 450px) {
  .sp1-none {
    display: none;
  }
}

.sp1-show {
  display: none;
}
@media screen and (max-width: 450px) {
  .sp1-show {
    display: block;
  }
}

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