@charset "UTF-8";
/* CSS Document */
/*========================================================================
         基本設定 共通
======================================================================== */
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: 'Zen Kaku Gothic New', 'sans-serif';
  font-weight: 300, 400, 500, 700, 900;
  font-style: bold;
  font-optical-sizing: auto;
}
.barlow-thin {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: normal;
}
.barlow-extralight {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: normal;
}
.barlow-bold {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.barlow-extrabold {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.barlow-semibold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: italic;
}
.barlow-bold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: italic;
}
.header-logo {
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
}
.background {
  position: fixed;
  background-image: url("imgs/common/back_ground.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 100vh;
  width: 100%;
  z-index: -1;
  content: '';
}
button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}
button.learn-more {
  width: 8rem;
  height: auto;
}
button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 2rem;
  height: 2rem;
  background-image: linear-gradient(40deg, rgba(26, 61, 72, 1), rgba(159, 47, 36, 1) 50%, rgba(247, 182, 67, 1));
  border-radius: 1.625rem;
}
button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.2rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.28rem 0;
  margin-top: 0;
  margin-right: 0;
  margin-left: 2rem;
  margin-bottom: 0;
  color: #333333;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
}
button:hover .circle {
  width: 100%;
}
button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
button:hover .button-text {
  color: #fff;
  margin-left: 3.5rem;
}
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 2s;
}
.fade.active {
  opacity: 1;
  transform: translateY(0px);
}
.header1.pc .header-logo {
  width: 100px;
}
.header1.pc .header-logo img {
  width: 100%;
}
@supports (display: grid) {
  #container {
    grid-area: main;
    align-self: center;
    justify-self: center;
  }
}
p {
  font-size: 1.1vw;
  color: #666;
  font-family: 'Zen Kaku Gothic New', 'sans-serif';
  font-weight: 300;
  line-height: 1.5;
}
h2 {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: bold;
}
dt {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
dd {
  font-size: 16px;
  font-size: 1.4rem;
  line-height: 1.6em; /* padding-top: 0.6em; 
	padding-bottom: 1.3em; */
}
img {
  width: 100%;
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
/* clearfix　ここから */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
/* clearfix　ここまで */
* {
  margin: 0;
  padding: 0;
}
/* Google Map レスポンシブ　ここまで */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
.sp-show {
  display: none;
}
.drawer {
  display: none;
}
.pinkpink { /*coloursのUピンク共通*/
  color: #F39;
}
.red_text { /*赤文字*/
  color: #C00;
}
.yellow_marker { /*黄色の蛍光マーカー線*/
  background: linear-gradient(transparent 85%, #FF3 85%);
}
@media screen and (max-width:767.98px) { /* 変更点。0.02引く。 */
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .sp-show {
    display: block;
  }
  #h1_tag {
    margin-top: 0;
  }
  .header_logo_h1 {
    width: 30%;
  }
} /*===========ここまで共通css===========*/
/*==================================
   PC用　ここから
===================================*/
body main {
  margin: 0 auto;
  width: 100%;
}
.first_main {
  margin: 0 auto;
  width: 100%;
  padding: 5% 0 0 0;
}
.first_h1 {
  background-image: linear-gradient(40deg, rgba(26, 61, 72, 1), rgba(159, 47, 36, 1) 50%, rgba(247, 182, 67, 1));
  color: #fff;
  padding: 1% 5%;
  margin: 5% auto 0 auto;
  position: relative;
}
.first_h1 p {
  width: 80%;
  margin: 0 auto;
  letter-spacing: 1px;
  font-size: 1.4vw;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', 'sans-serif';
  font-weight: 500;
  border-left: 5px solid #f0b643;
}
.first_h1 p span {
  padding-left: 20px;
  font-size: 25px;
  margin-right: 15px;
}
.what {
  width: 80%;
  margin: 0 auto;
}
.what ul {
  width: 100%;
  display: flex;
  margin: 3% auto;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.what ul li {
  margin: 0 auto;
  color: #1A3D48;
  flex-basis: 50%;
}
.what ul li h3 small {
  display: block;
  font-size: 15px;
  letter-spacing: 1px;
}
.what ul li h3 b {
  font-size: 30px;
  padding-bottom: 0px;
  display: block;
  padding-top: 0px;
  padding-left: 10px;
  border-left: 5px solid #f0b643;
  margin-top: 10px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.what ul li .what_text {
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1px;
  padding-bottom: 30px;
  font-weight: 500;
  text-align: justify;
}
.what ul li img {
  width: 80%;
  margin: auto;
  animation: fuwafuwa 2s infinite;
  display: block;
}
.brand_concept {
  width: 80%;
  margin: 0 auto;
}
.brand_concept ul {
  display: flex;
  margin: 3% auto;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.brand_concept ul li {
  margin: 0 auto;
  width: 50%;
  color: #1A3D48;
}
.brand_concept ul li h3 small {
  display: block;
  font-size: 15px;
  letter-spacing: 1px;
}
.brand_concept ul li h3 b {
  font-size: 30px;
  padding-bottom: 0px;
  display: block;
  padding-top: 0px;
  padding-left: 10px;
  border-left: 5px solid #f0b643;
  margin-top: 10px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.brand_concept ul li .brand_concept_text {
  width: 90%;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1px;
  padding-bottom: 30px;
  font-weight: 500;
  text-align: justify;
}
.brand_concept ul li img {
  width: 100%;
  margin: auto;
  animation: fuwafuwa 2s infinite;
  display: block;
}
.features {
  width: 80%;
  margin: 0 auto;
}
.features ul {
  display: flex;
  margin-top: 0px;
  margin-bottom: 100px;
}
.features ul li {
  margin-top: auto;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0px;
  width: 45vw;
  color: #1A3D48;
}
.features ul li h3 small {
  display: block;
  font-size: 15px;
  letter-spacing: 1px;
}
.features ul li h3 b {
  font-size: 30px;
  padding-bottom: 0px;
  display: block;
  padding-top: 0px;
  padding-left: 10px;
  border-left: 5px solid #f0b643;
  margin-top: 10px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.features ul li .features_text {
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1px;
  padding-bottom: 30px;
  font-weight: 500;
  text-align: justify;
}
.features ul li img {
  width: 80%;
  margin: auto;
  animation: fuwafuwa 2s infinite;
  display: block;
}
.selected {
	width: 80%;
	margin: 0 auto;
}
.selected ul {
  display: flex;
  margin-top: 0px;
  margin-bottom: 150px;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.selected ul li {
  margin-top: auto;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0px;
  width: 50%;
  color: #1A3D48;
}
.selected ul li h3 small {
  display: block;
  font-size: 15px;
  letter-spacing: 1px;
}
.selected ul li h3 b {
  font-size: 30px;
  padding-bottom: 0px;
  display: block;
  padding-top: 0px;
  padding-left: 10px;
  border-left: 5px solid #f0b643;
  margin-top: 10px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.selected ul li .selected_text {
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1px;
  padding-bottom: 30px;
  font-weight: 500;
  text-align: justify;
}
.selected ul li img {
  width: 80%;
  margin: auto;
  animation: fuwafuwa 2s infinite;
  display: block;
}
/*=======================================================
   spここから　max-width:767.98px
========================================================*/
@media screen and (max-width:767.98px) { /* 変更点。0.02引く。 */
  .fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s, transform 2s;
  }
  .fade.active {
    opacity: 1;
    transform: translateY(0px);
  }
  body main {
    margin: auto;
    width: 95%;
  }
  .first_main {
    margin: auto;
    width: 100%;
  }
  .first_h1 {
    margin: 30% 0 0 0;
    padding: 0.3em 0.5em;
  }
  .first_h1 p {
    width: 90%;
    font-size: 4vw;
  }
  .first_h1 p span {
    padding: 0 3%;
    font-size: 7vw;
    margin-right: 0;
  }
  .what {
    width: 90%;
    margin: 0 auto;
  }
  .what ul {
    width: 100%;
    margin: 5% auto;
  }
  .what ul li {
    margin: 0 auto;
    width: 100%;
    color: #1A3D48;
    flex-basis: 100%;
  }
  .what ul li h3 small {
    display: block;
    font-size: 15px;
    letter-spacing: 1px;
  }
  .what ul li h3 b {
    font-size: 30px;
    padding-bottom: 0px;
    display: block;
    padding-top: 0px;
    padding-left: 10px;
    border-left: 5px solid #f0b643;
    margin-top: 10px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    line-height: 35px;
  }
  .what ul li .what_text {
    width: 95%;
    font-size: 1rem;
    line-height: 28px;
    letter-spacing: 1px;
    padding-bottom: 30px;
    font-weight: 500;
    text-align: justify;
  }
  .what ul li img {
    width: 100%;
    margin: auto;
    animation: fuwafuwa 2s infinite;
    display: block;
  }
  .brand_concept {
    width: 90%;
    margin: 0 auto;
  }
  .brand_concept ul {
    flex-direction: row;
    margin: 0 auto;
    position: relative;
  }
  .brand_concept ul li {
    margin: 0 auto;
    width: 100%;
    color: #1A3D48;
    flex-basis: 100%;
  }
  .brand_concept ul li h3 small {
    display: block;
    font-size: 15px;
    letter-spacing: 1px;
  }
  .brand_concept ul li h3 b {
    font-size: 30px;
    padding-bottom: 0px;
    display: block;
    padding-top: 0px;
    padding-left: 10px;
    border-left: 5px solid #f0b643;
    margin-top: 10px;
    margin-bottom: 15px;
    letter-spacing: 2px;
  }
  .brand_concept ul li .brand_concept_text {
    width: 95%;
    font-size: 1rem;
    line-height: 26px;
    letter-spacing: 1px;
    padding-bottom: 20px;
    font-weight: 500;
    text-align: justify;
  }
  .brand_concept ul li img {
    width: 100%;
    margin: auto;
    animation: fuwafuwa 2s infinite;
    display: block;
  }
  .features {
    width: 90%;
    margin: 0 auto;
  }
  .features ul {
    display: block;
    margin-top: 0px;
    margin-bottom: 100px;
	flex-direction: row;
  }
  .features ul li {
    margin-top: auto;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0px;
    width: 100%;
    color: #1A3D48;
  }
  .features ul li h3 small {
    display: block;
    font-size: 15px;
    letter-spacing: 1px;
  }
  .features ul li h3 b {
    font-size: 30px;
    padding-bottom: 0px;
    display: block;
    padding-top: 0px;
    padding-left: 10px;
    border-left: 5px solid #f0b643;
    margin-top: 10px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    width: 90%;
    line-height: 40px;
  }
  .features ul li .features_text {
    width: 95%;
    font-size: 1rem;
    line-height: 26px;
    letter-spacing: 1px;
    padding-bottom: 30px;
    font-weight: 500;
    text-align: justify;
  }
  .features ul li img {
    width: 100%;
    margin: auto;
    animation: fuwafuwa 2s infinite;
    display: block;
  }
	.selected {
		width: 90%;
    margin: 0 auto;
	}
  .selected ul {
    display: block;
    margin-top: 0px;
    margin-bottom: 150px;
	flex-direction: row;
  }
  .selected ul li {
    margin-top: auto;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0px;
    width: 100%;
    color: #1A3D48;
  }
  .selected ul li h3 small {
    display: block;
    font-size: 15px;
    letter-spacing: 1px;
  }
  .selected ul li h3 b {
    font-size: 30px;
    padding-bottom: 0px;
    display: block;
    padding-top: 0px;
    padding-left: 10px;
    border-left: 5px solid #f0b643;
    margin-top: 10px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    width: 90%;
    line-height: 40px;
  }
  .selected ul li .selected_text {
    width: 95%;
    font-size: 1rem;
    line-height: 26px;
    letter-spacing: 1px;
    padding-bottom: 30px;
    font-weight: 500;
    text-align: justify;
  }
  .selected ul li img {
    width: 100%;
    margin: auto;
    animation: fuwafuwa 2s infinite;
    display: block;
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0px);
  }
}