@import url('https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&display=swap');


:root {
  --container: 1100px;
  --container-medium: 970px;
  --container-small: 900px;
  --main-color: #246d4d;
  --main-color-dark: #174c35;
  --main-light: #a6c6b3;
  --light-green: #e8eed2;
  --light-green2: #80b574;
  --light-bg: #fefbf6;
  --poppins: "Poppins", Sans-serif;
  --mincho: "Zen Old Mincho", serif;
  --noto: "Noto Sans JP", sans-serif;
  --white: #fff;
  --gray: #F2F2F2;
  --gray2: #999;
  --gray3: #4D4D4D;
  --black: #111;
  --orange: #f94b02;
  --black-trans-darkest: #000000c7;
  --black-trans-darker: #00000087;
  --black-trans-light: #0000002b;
}

*{
  margin:0;
  padding:0;
  box-sizing: border-box;
  font-family: var(--noto);
}

body{
  background:var(--white);
  color:var(--black);
  line-height:1.6;
  font-size: 18px;
}

img {
  max-width: 100%;
}


.container {
  width: var(--container);
  margin: auto;
}
.container-small {
  width: var(--container-small);
  margin: auto;
}
.container-medium {
  width: var(--container-medium);
  margin: auto;
}


header.site-header {
  /*position: absolute;
  z-index: 1;
  width: 100%;*/
  position: sticky;
  padding: 20px 0;
  background-color: var(--white);
  border: 1px solid #fbfbfb;
  z-index: 11;
}
body.menu-active:before{
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--black-trans-darkest);
  z-index: 10;
  position: fixed;
}
.site-header .navi{
  display: flex;
  color: var(--white);
  align-items: center;
  justify-content: space-between;
}
.site-header .navi .logo img {
  width: 260px;
  display: block;
}
.site-header .navi .menu-main-container,
.site-header .navi .menu-main-top-container  {
  width: calc(100% - 200px);
}
.site-header #menu-main,
.site-header #menu-main-top {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
.site-header #menu-main li,
.site-header #menu-main-top li {
  border-bottom: 1px solid transparent;
}
.site-header #menu-main li.current_page_item,
.site-header #menu-main-top li.current_page_item {
  border-bottom-color: var(--black);
}
.site-header #menu-main li:hover,
.site-header #menu-main-top li:hover {
  border-bottom-color: var(--black);
}
.site-header #menu-main li a,
.site-header #menu-main-top li a {
  color: var(--black);
  font-family: var(--poppins);
  text-decoration: none;
  font-size: 14px;
  display: block;
}
.site-header #menu-main svg,
.site-header #menu-main-top svg{
  fill: var(--black);
  width: 21px;
  display: block;
}
.site-header #menu-main li:last-child {
  border: 0 !important;
}
.site-header #menu-main li:last-child a {
  background-color: var(--orange);
  color: var(--white);
  padding: 8px 14px 8px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.32s;
  display: inline-flex;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
}
.site-header #menu-main li:last-child a:after {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath fill='%23fff' d='M247.1 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L179.2 256 41.9 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.site-header #menu-main li:last-child a:hover {
  transform: scale(1.02);
}

/* =========================
BUTTONS
========================= */
.btn{
  padding: 14px 14px 14px 20px;
  background: none;
  border-width: 1px;
  border-style: solid;
  border-color: var(--main-light);
  color: var(--black);
  cursor: pointer;
  border-radius: 7px;
  font-size: 15px;
  line-height: 1;
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: 0.32s;
  background-color: var(--white);
  font-family: var(--poppins);
  font-weight: bold;
}
.btn:hover {
  transform: scale(1.02);
}
.btn:after {
  content:"";
  width:15px;
  height:15px;
  display:inline-block;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath fill='%23246d4d' d='M247.1 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L179.2 256 41.9 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-size:contain;
}
.btn.btn-green{
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: var(--white);
}
.btn.btn-green:after {
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath fill='%23fff' d='M247.1 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L179.2 256 41.9 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z'/%3E%3C/svg%3E");
}
.btn.btn-note:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23246d4d' d='M320 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l82.7 0-201.4 201.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L448 109.3 448 192c0 17.7 14.3 32 32 32s32-14.3 32-32l0-160c0-17.7-14.3-32-32-32L320 0zM80 96C35.8 96 0 131.8 0 176L0 432c0 44.2 35.8 80 80 80l256 0c44.2 0 80-35.8 80-80l0-80c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 80c0 8.8-7.2 16-16 16L80 448c-8.8 0-16-7.2-16-16l0-256c0-8.8 7.2-16 16-16l80 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L80 96z'/%3E%3C/svg%3E");
}
.btn.btn-orange {
    background-color: var(--orange);
    color: var(--white);
    padding: 8px 14px 8px 20px;
    border-radius: 30px;
    border: 0;
}
.btn.btn-orange:after {
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath fill='%23fff' d='M247.1 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L179.2 256 41.9 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}



/* =========================
   HAMBURGER BUTTON
========================= */
.menu-btn{
    width:50px;
    height:45px;
    background:var(--main-color);
    border: 1px solid var(--main-color);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    gap:6px;
    cursor:pointer;
    z-index:101;
    position:relative;
    transition:0.3s;
    padding: 0 13px;
}

.menu-btn span{
  width:24px;
  height:2px;
  background:var(--white);
  display:block;
  transition:0.3s;
}
.menu-btn span:nth-child(2) {
  width:19px;
}

/* OPEN STATE */
.menu-btn.active{
  background:var(--white);
}
.menu-btn.active span{
  background:var(--main-color);
  display: none;
}
.menu-btn.active span:first-child {
  display: block;
}

/* =========================
   TOGGLE MENU
========================= */
#toggle-menu{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    transform:translateY(-100%);
    transition:transform 0.35s ease;
    z-index:100;
    padding: 100px 22px 30px;
}

#toggle-menu .menu-main-container {
  width: 100%;
}

/* open state */
#toggle-menu.active{
    transform:translateY(0);
}

/* MENU LIST */
#toggle-menu ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content: flex-end;
}

#toggle-menu li{
  text-align: right;
  width:100%;
}
#toggle-menu a{
  text-decoration:none;
  color:var(--white);
  font-size:18px;
  border-bottom: 1px solid transparent;
}
#toggle-menu li.current_page_item a,
#toggle-menu li a:hover {
  border-bottom-color: var(--white);
}

#toggle-menu li.current_page_item a {
  border-bottom-color: var(--white);
}
#toggle-menu li svg {
  fill: var(--white);
  width: 23px;
}




/* HERO */
.hero{
  position:relative;
  overflow-x: hidden;
  display: flex;

  background-size: 60% auto;
  background-position: right center;
  background-repeat: no-repeat;
  
  padding: 20px 0 40px;
}
.hero.hero-top {
  height: 500px;
  padding: 0;
}
.hero.hero-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        white 0%,
        white 30%,
        rgba(255,255,255,0.85) 45%,
        rgba(255,255,255,0) 60%
    );
    pointer-events: none;
}
.hero .container {
  z-index: 1;
}
.hero h1 {
  font-size: 47px;
  line-height: 1.4;
}
.hero h1 span {
  color: var(--main-color);
}
.hero h2 {
  margin: 5px 0 0;
}
.hero p {
  margin-top: 20px;
}
.hero .buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero .container-overflow {
  display: flex;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.hero .container-overflow .hero-text {
  width: 860px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.hero .container-overflow .hero-img {
  width: 100%;
  margin-right: calc((100vw - var(--container)) / -2);
  display: flex;
  align-items: flex-start;
}
.hero .container-overflow .hero-img img {
  min-height: 400px;
  object-fit: cover;
  object-position: center;
  height: auto;
  display: block;
}

.sub-hero {
  height: 250px;
  background-position: center 65%;
  background-size: cover;
}
.page-cuisine .sub-hero {
  background-position: center 25%;
}
.sub-hero:after {
  display: none;
}
.sub-hero:before {
  background: var(--black-trans-darker);
}
.hero-onsen {
  height: 350px;
}
.hero-onsen:after {
  display: none;
}

.breadcrumbs  {
  padding: 10px 0;
}
.breadcrumbs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 5px;
}
.breadcrumbs ul li {
  font-size: 15px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}
.breadcrumbs ul li:after {
  content:"";
  width:15px;
  height:15px;
  display:inline-block;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath fill='%23333' d='M247.1 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L179.2 256 41.9 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-size:contain;
}
.breadcrumbs ul li:last-child:after {
  display: none;
}
.breadcrumbs ul a {
  color: var(--orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
}
.breadcrumbs ul a:hover {
  border-bottom-color: var(--orange);
}
.breadcrumbs ul span {
  border: 1px solid transparent;
}


section .container-small,
section .container-medium {
  display: flex;
  gap: 50px;
}
section .container-small .content,
section .container-medium .content {
  position: relative;
  width: 100%;
}



/* GENERAL */
.general{
  padding:60px 0;
  background-color: var(--white);
}
.general .general-inner {
  align-items: space-between;
  justify-content: center;
}
.general .__box {
  display: flex;
  border-radius: 20px;
  padding: 55px;
  background-color: var(--light-bg);
  justify-content: space-between;
  gap: 30px;
}
.general .__box h3 {
  font-size: 30px;
  margin-bottom: 10px;
}
.general .__box .icon {
  display: flex;
  align-items: center;
  gap: 20px;
}
.general .__box .icon .arrow {
  width: 30px;
}
.general .__box .icon div {
  width: 130px;
  height: 150px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--black);
  align-items: center;
  justify-content: space-between;
  border: 1px solid #f6f6f6;
}
.general .__box .icon div img {
  width: 80px;
}
.general .__box .icon div span {
  text-align: center;
  font-size: 15px;
}
.general .__box .icon div span i {
  font-size: 19px;
  font-style: normal;
}
.general .__box .icon div.green img {
  width: 50px;
  margin-top: 15px;
}
.general .__box .icon div.green span {
  color: var(--main-color);
  font-weight: bold;
}


/* Note */
.note{
  background:var(--main-color);
  color:var(--white);
  padding:100px 0;
}
.note .container {
  display: flex;
  gap: 50px;
}
.note .note-box {
  background-color: var(--white);
  color: var(--black);
  border: 1px solid var(--main-light);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 12px;
  width: 315px;
}
.note .note-box h4 {
  font-size: 30px;
  display: flex;
  gap: 15px;
  align-items: center;
  font-family: var(--poppins);
  font-weight: normal;
  letter-spacing: 3px;
  color: var(--main-color);
  margin-bottom: 5px;
}
.note .note-box h4 svg {
  width: 23px;
  transform: scaleX(-1);
}
.note .note-box h5 {
  color: var(--main-color);
  font-size: 16px;
  font-weight: bold;
  margin: 5px 0;
}
.note .note-box p {
  text-align: center;
  font-size: 15px;
}
.note .note-box a {
  margin: 15px 0 10px;
}
.note .note-text h4 {
  font-size: 30px;
  margin-bottom: 20px;
}

/* Common */
.common-section {
  padding: 100px 0;
}
.common-section h3 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-section h3:before {
  content: "• • • •";
  color: var(--main-color);
  margin-right: 15px;
  font-size: 13px;
}
.common-section h3:after {
  content: "• • • •";
  color: var(--main-color);
  margin-left: 15px;
  font-size: 13px;
}

/* Features */
.features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.features ul li {
  position: relative;
  border: 1px solid #f6f6f6;
  border-radius: 5px;
  background-color: var(--light-bg);
  padding: 15px;
  display: flex;
  align-items: flex-end;
  gap: 15px
}
.features ul li img {
  width: 100px;
}
.features ul li span {
  position: absolute;
  display: block;
  color: var(--white);
  background-color: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-family: 'Poppins';
  top: 12px;
  left: 12px;
}
.features ul li h4 {
  color: var(--main-color);
}

/* Recommended */
.recommended {
  background-color: var(--light-bg);
}
.recommended ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.recommended ul li {
  position: relative;
  border: 1px solid #f6f6f6;
  border-radius: 5px;
  background-color: var(--white);
  padding: 15px 10px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 17px;
}
.recommended ul li img {
  width: 100px;
}

/* counselors */
.consultants {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.consultants li {
  position: relative;
  border: 1px solid #f6f6f6;
  border-radius: 5px;
  background-color: var(--white);
  padding: 15px 10px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 17px;
}
.consultants li img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}
.consultants li h4 {
  font-size: 22px;
}
.consultants li .tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin: 10px 0;
}
.consultants li .tags span {
  display: block;
  font-size: 13px;
  background-color: var(--light-green);
  border-radius: 3px;
  padding: 1px 5px;
}

.counselors .button_con {
  margin-top: 40px;
}


/* Usage */
.usage {
  padding:0 0 100px;
}
.usage .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.usage .container > div {
  border-radius: 5px;
  background-color: var(--light-bg);
  padding: 15px;
}
.usage h3 {
  font-size: 22px;
  margin-bottom: 25px;
}
.usage .boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.usage .boxes ._box{
  border: 1px solid #f6f6f6;
  border-radius: 5px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  font-size: 15px;
}
.usage .boxes ._box h5 {
  font-size: 15px;
}
.usage .boxes ._box h4 {
  font-size: 28px;
  margin: 5px 0;
}
.usage .boxes ._box h4 b {
  font-size: 12px;
  margin-left: 5px;
}
.usage .boxes ._box h4 span {
  font-size: 12px;
  font-weight: normal;
  margin-left: 5px;
}
.usage .fee > p {
  text-align: center;
  margin-top: 20px;
}
.usage .process {
  width: 615px;
}
.usage ._process {
  display: flex;
  gap: 15px;
}
.usage ._process > div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(33.33333% - 30px);
}
.usage ._process > div span {
  position: absolute;
  display: block;
  color: var(--white);
  background-color: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  width: 25px;
  height: 25px;
  font-family: 'Poppins';
  top: 0;
  left: 0;
}
.usage ._process > div img {
  width: 65px;
}
.usage ._process > div .text {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 15px;
  text-align: center;
}
.usage ._process svg {
  fill: var(--light-green2);
  width: 15px;
}
.usage .process .button_con {
  margin-top: 20px;
}



.button_con {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner {
  padding-bottom: 50px;
}
.banner .banner-inner {
  border-radius: 5px;
  background-color: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 40px;
}
.banner .banner-inner img {
  width: 180px;
  position: relative;
  margin-top: -53px;
}
.banner .banner-inner .banner_text {
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.banner .banner-inner h4 {
  font-size: 22px;
}
.banner .banner-inner .btn {
  width: 100%;
  max-width: 400px;
  min-width: 300px;
  height: 45px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  position: relative;
}
.banner .banner-inner .btn:after{
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}



footer {
  min-height:auto;
  background:var(--main-color-dark);
  color: var(--white);
  position:relative;
  padding:50px 0 0;
}
footer .container {
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray3);
}
footer .site_info img {
  width: 300px;
}
footer .site_info {
  font-size: 17px;
}
footer .site_info p {
  margin-top: 10px;
  font-size: 16px;
}
footer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
footer nav ul li {
  position: relative;
  display: flex;
  gap: 15px;
  align-items: center;
}
footer nav ul li:after {
  content:"|";
  margin-top: -5px;
}
footer nav ul li:last-child:after {
  display: none;
}
footer nav ul a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
footer nav ul a:hover{
  border-bottom-color: var(--orange);
}
footer .copyright{
  font-size: 14px;
  padding: 10px;
  text-align: center;
}



.element-from-bottom {
    opacity: 0;
}
.element-from-bottom.animate {
    -webkit-animation: element-from-bottom .7s 1 ease-in-out;
    -moz-animation: element-from-bottom .7s 1 ease-in-out;
    animation: element-from-bottom .7s 1 ease-in-out;
    opacity: 1;
    -webkit-backface-visibility: hidden;
}





/* moveInBotom Animation */ 
@keyframes element-from-bottom {
    0% {
        opacity: 0;
        transform: translate(0,30%)
    }

    100% {
        opacity: 1;
        transform: translate(0,0)
    }
}


@media screen and (max-width: 1140px) {
  .container {
    width: calc(100% - 40px);
  }
  .hero {
    background-size: 100%;
  }
  .hero::before {
    background: linear-gradient(
        to right,
        white 0%,
        white 30%,
        rgba(255,255,255,0.85) 45%,
        rgba(255,255,255,0) 80%
    );
  }
  .general .__box {
    padding: 40px;
  }
  .general .__box .icon {
    gap: 5px;
  }
  .general .__box h3 br {
    display: none;
  }

  .consultants {
    grid-template-columns: repeat(1, 1fr);
  }

  .usage .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .usage .process {
    width: 100%;
    margin: auto;
  }
  .usage ._process {
    max-width: 585px;
    margin: auto;
  }
}
@media screen and (max-width: 950px) {
  .container-medium,
  .container-small {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
  }

  .general .__box {
    flex-direction: column;
    justify-content: center;
  }
  .general .__box .text {
    text-align: center;
  }
  .general .__box .icon {
    justify-content: center;
  }

  .features ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .features ul li {
    align-items: flex-start;
  }

  .recommended ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 840px) {
  .container-small {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 782px) {
  .general .container-small .content {
    width: 100%;
  }

  .btn {
    font-size: 15px;
    min-width: 180px;
  }
}


.site-header .navi > .special_navi {
  display: none;
}

.pc-felx-view{ display: flex; }
.pc-view{ display: block; }
.sp-view{ display: none; }
@media screen and (max-width: 767px) {
  .pc-felx-view{ display: none !important; }
  .pc-view{ display: none !important; }
  .sp-view{ display: block !important; }


  .site-header .navi > .menu-main-container {
    display: none;
  }
  .site-header .navi > .special_navi {
    display: block;
  }
  
  .site-header .navi .logo,
  footer .site_info img{
    width: 207px;
  }
  .hero {
    height: auto;
    padding: 30px 0;
    background-size: cover;
  }
  .note {
    padding: 50px 0;
  }
  .note .container {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .note .note-text { 
    text-align: center;
  }
  .note .note-box {
    margin: auto;
    width: 100%;
  }

  .common-section {
    padding: 50px 0;
  }


  .banner .banner-inner {
    padding: 0 40px;
  }
  .banner .banner-inner .banner_text {
    width: calc(100% - 180px - 40px);
  }

  footer .container {
    flex-direction: column;
    gap: 30px;
  }
  footer nav ul {
    justify-content: flex-start;
  }
}

.pc-view-md{ display: block; }
.sp-view-md{ display: none; }
@media screen and (max-width: 600px) {
  .pc-view-md{ display: none; }
  .sp-view-md{ display: block; }

  body{
    font-size: 16px; 
  }

  .hero h1 {
    font-size: 37px;
  }
  .hero h2 {
    font-size: 1.3em;
  }

  .note .note-text h4,
  .general .__box h3,
  .common-section h3 {
    font-size: 25px;
  }
  .common-section h3:before,
  .common-section h3:after {
    display: none;
  }
  .usage h3 {
    font-size: 20px;
  }

  .general .__box {
    padding: 15px;
  }
  .general .__box .icon {
    gap: 0;
  }
  .general .__box .icon .arrow {
    width: 20px;
  }
  .general .__box .icon div {
    padding: 10px 5px;
  }
  .general .__box .icon div span {
    font-size: 14px;
  }
  .general .__box .icon div span i {
    font-size: 15px;
  }

  .consultants li h4{
    font-size: 18px;
  }

  .recommended ul {
    grid-template-columns: repeat(1, 1fr);
  }

  .banner .banner-inner {
    padding: 20px;
  }
  .banner .banner-inner img {
    width: 100px;
  }
  .banner .banner-inner .banner_text {
    width: 100%;
    height: auto;
  }
  .banner .banner-inner {
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 470px) {
  .usage .boxes {
    grid-template-columns: repeat(1, 1fr);
  }

  .usage ._process {
    flex-direction: column;
  }
  .usage ._process svg {
    display: none;
  }
  .usage ._process > div {
    width: 230px;
    margin: auto;
  }
}

.pc-view-sm{ display: block; }
.sp-view-sm{ display: none; }
@media screen and (max-width: 400px) {
  .pc-view-sm{ display: none; }
  .sp-view-sm{ display: block; }
}