@charset "UTF-8";
/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
/*color*/
/*background*/
/*font*/
/*link*/
a {
  -webkit-transition: 1.0s;
  transition: 1.0s;
  color: #404040;
  text-decoration: none;
}

a:hover {
  color: #2E6ABC;
  text-decoration: none;
  cursor: default;
}

/*break point*/
html {
  font-size: 16px;
  line-height: 1.4;
}

/**/
/*画面遷移アニメーション*/
.splashbg1,
.splashbg2 {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg1,
body.appear .splashbg2 {
  display: block;
}

/*右に消えるエリア*/
body.appear .splashbg1 {
  -webkit-animation-name: PageAnime;
          animation-name: PageAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  background-color: #DFEFFF;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

/*左に消えるエリア*/
body.appear .splashbg2 {
  -webkit-animation-name: PageAnime2;
          animation-name: PageAnime2;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  background-color: #DFEFFF;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes PageAnime2 {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes PageAnime2 {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0;
  /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  -webkit-animation-name: PageAnimeAppear;
          animation-name: PageAnimeAppear;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

/*header*/
.header {
  width: 100%;
  /* 幅いっぱいを指定 */
  position: fixed;
  /* ウィンドウを基準に画面に固定 */
  top: 0;
  /* 上下の固定位置を上から0pxにする */
  left: 0;
  /* 左右の固定位置を左から0pxにする */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /* 中の要素を横並びにする */
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  /* 中の要素を上下中央に並べる */
  z-index: 999;
  /*お魚のロゴ*/
  /*横並びのボタン*/
}

.header .header-logo {
  padding-left: 5px;
}

.header .header-logo h1 {
  margin-bottom: 0;
}

.header .header-logo h1 img {
  max-width: 230px;
}

.header ul {
  margin: 0 0 0 auto;
  display: block;
  list-style: none;
  /*お問い合わせボタン*/
  /* ハンバーガーメニュー */
}

.header ul .header-que {
  width: 160px;
  background-color: #2E6ABC;
  display: block;
  position: fixed;
  top: 25px;
  right: 80px;
  width: 80px;
  height: 48px;
}

.header ul .header-que a {
  display: block;
  color: #fff;
  background-color: #2E6ABC;
  text-align: center;
  color: #fff;
  height: 48px;
  padding-top: 0.8rem;
}

.header ul .header-que a:hover {
  color: #2E6ABC;
  text-align: center;
  background-color: #fff;
}

.header ul .header-button {
  /* トグルボタン */
}

.header ul .header-button nav {
  display: block;
  position: fixed;
  top: 0;
  right: -300px;
  bottom: 0;
  width: 300px;
  background: #fff;
  overflow-x: hidden;
  /* メニューを隠す*/
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all .5s;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}

.header ul .header-button .open nav {
  right: 0;
  opacity: 1;
}

.header ul .header-button nav .inner {
  padding: 25px;
}

.header ul .header-button nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header ul .header-button nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}

.header ul .header-button nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.header ul .header-button nav .inner ul li a:hover {
  background: #e4e4e4;
}

.header ul .header-button nav .inner ul li:nth-of-type(5) a {
  padding: .5rem 1rem;
}

.header ul .header-button nav .inner ul li:nth-of-type(5) ul {
  text-indent: 1rem;
}

.header ul .header-button nav .inner ul li:nth-of-type(5) ul li {
  padding: 0;
  border-bottom: 0px solid #333;
}

.header ul .header-button nav .inner-footer {
  padding: 25px;
  display: block;
}

.header ul .header-button nav .inner-footer .inner-logo img {
  max-width: 150px;
}

.header ul .header-button nav .inner-footer .inner-que {
  width: 40%;
  background-color: #2E6ABC;
  display: block;
  text-align: center;
  padding: .5rem;
}

.header ul .header-button nav .inner-footer .inner-que p {
  text-align: center;
  padding-top: 0.8rem;
  color: #fff;
}

.header ul .header-button nav .inner-footer .inner-que a {
  color: #fff;
}

.header ul .header-button nav .inner-footer .inner-que a:hover {
  color: #ffd700;
}

.header ul .header-button .toggle_btn_color {
  position: fixed;
  top: 25px;
  right: 22px;
  width: 25px;
  height: 30px;
  background-color: #fff;
  padding: 1.5rem;
}

.header ul .header-button .toggle_btn {
  display: block;
  position: fixed;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  -webkit-transition: all .5s;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}

.header ul .header-button .toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.header ul .header-button .toggle_btn span:nth-child(1) {
  top: 4px;
}

.header ul .header-button .toggle_btn span:nth-child(2) {
  top: 14px;
}

.header ul .header-button .toggle_btn span:nth-child(3) {
  bottom: 4px;
}

.header ul .header-button .toggle_btn p {
  position: fixed;
  top: 60px;
  color: #404040;
  font-size: .5rem;
}

.header ul .header-button .open .toggle_btn span {
  background-color: #333;
}

.header ul .header-button .open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}

.header ul .header-button .open .toggle_btn span:nth-child(2) {
  opacity: 0;
}

.header ul .header-button .open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

.header ul .header-button #mask {
  display: none;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.header ul .header-button .open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}

/*header-mobeile*/
@media screen and (max-width: 450px) {
  .header {
    /*お魚のロゴ*/
  }
  .header .header-logo h1 img {
    max-width: 170px;
    margin-top: 10px;
  }
  .header ul {
    /* トグルボタン */
  }
  .header ul .header-que {
    top: 20px;
  }
  .header .header-button #navArea .toggle_btn_color {
    top: 20px;
  }
  .header .header-button #navArea .toggle_btn {
    top: 23px;
  }
  .header .header-button #navArea .toggle_btn p {
    top: 52px;
  }
}

/*topへ戻るボタン*/
#pagetop {
  position: fixed;
  width: 2rem;
  height: 11rem;
  color: #404040;
  bottom: 10px;
  right: 1rem;
  cursor: default;
  z-index: 999;
  margin: 0 auto;
}

#pagetop span {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  font-size: 1rem;
  letter-spacing: .2rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  margin: 0 auto;
}

#pagetop span img {
  padding-bottom: .3rem;
  margin-right: .5rem;
  max-width: 6px;
  text-align: center;
}

/*pagetop-mobeile*/
@media screen and (max-width: 450px) {
  #pagetop {
    display: none;
  }
  #pagetop span {
    display: none;
  }
}

/*フェードイン*/
.fadeIn {
  opacity: 0;
  -webkit-transform: translate3d(0, 30px, 0);
          transform: translate3d(0, 30px, 0);
}

.fadeIn.is-active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: 1s;
  transition: 1s;
}

/*モーダルウィンドウ*/
/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 20px 0;
}

html {
  font-size: 16px;
  line-height: 1.4;
}

body {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  color: #404040;
}

/*画面遷移*/
body {
  background: #DFEFFF;
  /*遷移アニメーションと同じ色を指定*/
}

body.appear {
  background: #fff;
  /*画面を開いた後の背景色を指定*/
}

/*box1*/
.box1 {
  background-image: url(../img/index_image.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  /* width: 100vw; */
  height: 0;
  padding-top: 60%;
  position: relative;
  z-index: 3;
  /*background-image: url(../img/index_image.jpg);
  background-size: cover;
  background-position: 10% 60%;
  width: 100vw;
  height: 0;
   /* (画像の高さ / 画像の横幅) × 100 */
  /*padding-top: 75%;
  position: relative;
  z-index: 3;*/
}

.box1 .box1-text {
  color: #fff;
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 30rem;
}

.box1 .box1-text h2 {
  font-size: 2rem;
}

.box1 .box1-text .eachTextAnime span {
  opacity: 0;
}

.box1 .box1-text .eachTextAnime.appeartext span {
  -webkit-animation: text_anime_on 6s ease-out forwards;
          animation: text_anime_on 6s ease-out forwards;
}

@-webkit-keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

.box1 .box1-text .br {
  display: block;
}

/*box1-mobeile*/
@media screen and (max-width: 450px) {
  .box1 {
    background-size: cover;
    background-position: 46%;
    height: 789px;
  }
  .box1 .box1-text {
    width: 100%;
    bottom: 20px;
    right: 0px;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .box1 .box1-text h2 {
    font-size: 1.2rem;
    /*20220408修正*/
    padding: 1rem;
  }
  .box1 .box1-text .br {
    display: block;
  }
}

/*box2*/
.box2 {
  width: 100%;
  margin: 0 auto;
}

.box2 .box2-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  width: 75%;
  padding: 2rem 0rem;
  margin: 0 auto;
}

.box2 .box2-text h2 {
  width: 100%;
  text-align: left;
}

.box2 .box2-text p {
  width: 100%;
  text-align: right;
}

/*box2-mobeile*/
@media screen and (max-width: 450px) {
  .box2 {
    width: 100%;
  }
  .box2 .box2-text {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .box2 .box2-text h2 {
    width: 100%;
  }
  .box2 .box2-text p {
    width: 100%;
  }
}

/*box3*/
.box3 {
  margin: 0 auto;
  /*width: 75%;
    height: 70vh;
  background-image: url(../img/concept_image_pc.jpg);
  background-size: contain;
  background-repeat: no-repeat;*/
  position: relative;
  text-align: center;
}

.box3 .dis img {
  width: 50%;
  max-width: 50%;
}

.box3 .box3-text {
  color : #fff;
  position: absolute;
  width: 30%;
  top: 5%;
  right: 27%;
  text-align: right;
}

.box3 .box3-text h2 {
  padding-bottom: 2rem;
}

.box3 .box3-text p {
  line-height: 2rem;
}

.box3 .box3-text .br {
  display: block;
}

/*box3-mobeile*/
@media screen and (max-width: 450px) {
  .box3 {
    background-image: url(../img/latrota202407_sp.jpg);
    background-size: cover;
    background-position: 30% 40%;
    width: 100%;
    height: 80vh;
    /*修正20220407*/
  }
  .box3 .dis {
    display: none;
  }
  .box3 .box3-text {
    position: absolute;
    width: 100%;
    top: 2%;
    right: 5%;
  }
  .box3 .box3-text h2 {
    padding-bottom: 0.5rem;
  }
  .box3 .box3-text p {
    line-height: 1rem;
  }
  .box3 .box3-text .br {
    display: block;
  }
}

/*box4*/
.box4 {
  width: 75%;
  margin: 0 auto;
  padding: 4rem 0rem;
}

.box4 .box4-text h2 {
  padding-bottom: 2rem;
}

.box4 .box4-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.box4 .box4-flex .box4-items1 {
  width: 20%;
  line-height: 2rem;
}

.box4 .box4-flex .box4-items1 .br {
  display: block;
}

.box4 .box4-flex .box4-items2 {
  width: 70%;
  text-align: center;
}

.box4 .box4-flex .box4-items2 img {
  max-width: 1284px;
  width: 80%;
}

/*box4-mobeile*/
@media screen and (max-width: 450px) {
  .box4 {
    width: 90%;
    margin: 0 auto;
    padding: 3rem 0rem;
  }
  .box4 .box4-flex {
    display: block;
  }
  .box4 .box4-flex .box4-items1 {
    width: 100%;
    line-height: 2rem;
  }
  .box4 .box4-flex .box4-items1 .br {
    display: block;
  }
  .box4 .box4-flex .box4-items2 {
    width: 100%;
    text-align: center;
  }
  .box4 .box4-flex .box4-items2 img {
    width: 100%;
  }
}

/*box5*/
.box5 {
  width: 75%;
  margin: 0 auto;
  padding: 4rem 0rem;
}

.box5 .box5-text h2 {
  padding-bottom: 2rem;
  text-align: right;
}

.box5 .box5-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.box5 .box5-flex .box5-items {
  background-color: #E5DFD0;
  width: 400px;
  padding: 1rem;
  text-align: right;
  position: relative;
}

.box5 .box5-flex .box5-items .box5-photo-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.box5 .box5-flex .box5-items .box5-photo-items img {
  max-width: 285px;
  width: 50%;
}

.box5 .box5-flex .box5-items .box5-photo-items .box5-photo-text {
  width: 50%;
  padding: 1rem;
  text-align: right;
}

.box5 .box5-flex .box5-items .box5-photo-items .box5-photo-text .br {
  display: block;
}

.box5 .box5-flex .box5-items .box5-photo-items .box5-photo-text .box5-photo-text2 {
  width: 50%;
  padding: .5rem;
  color: #fff;
  background-color: #BCAA8C;
}

.box5 .box5-flex .box5-items p {
  padding-top: .5rem;
}

.box5 .box5-flex .box5-items a {
  border: solid 0.8px #000;
  width: 50%;
  padding: .5rem;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 123, 255, 0.5)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 50%, rgba(0, 123, 255, 0.5) 50%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgba(0, 123, 255, 0.5) 50%);
  background-position: 0;
  background-size: 200.5% auto;
  -webkit-transition: .3s;
  transition: .3s;
}

.box5 .box5-flex .box5-items a:hover {
  background-position: -99.5% 0;
  color: #fff;
}

.box5 .box5-flex .box5-items .border-radius {
  position: absolute;
  top: 10px;
  right: 3%;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  background-color: #fff;
  border-radius: 50%;
  color: #404040;
  text-align: center;
}

/*box5-mobeile*/
@media screen and (max-width: 450px) {
  .box5 {
    width: 90%;
    padding: 0rem 0rem 4rem 0rem;
    /*20220408*/
  }
  .box5 .box5-flex .box5-items .border-radius {
    position: absolute;
    top: 5px;
    right: 2%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #fff;
    border-radius: 50%;
    color: #404040;
    text-align: center;
  }
}

/*box6*/
.box6 {
  width: 100%;
  background-color: #DFEFFF;
  position: relative;
}

.box6 .box6-inner {
  width: 75%;
  margin: 0 auto;
  padding: 4rem 0 8rem 0;
}

.box6 .box6-inner .box6-text h2 {
  padding-bottom: 2rem;
  text-align: right;
}

.box6 .box6-inner .box6-flex {
  max-width: 1450px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5rem;
}

.box6 .box6-inner .box6-flex .box6-items:nth-of-type(1) {
  width: 10px;
  border-left: thick solid #77683D;
  padding-left: 1px;
}

.box6 .box6-inner .box6-flex .box6-items:nth-of-type(2) {
  max-width: 600px;
}

.box6 .box6-inner .box6-flex .box6-items:nth-of-type(2) .box6-items-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.box6 .box6-inner .box6-flex .box6-items:nth-of-type(2) .box6-items-icon img {
  max-width: 110px;
  margin: .5rem 1rem;
}

.box6 .box6-inner .box6-flex .box6-items:last-of-type p {
  width: 454px;
  line-height: 2rem;
}

.box6 .bike {
  position: absolute;
  bottom: 0%;
  right: 10%;
  margin-bottom: 30px;
}

/*box6-mobeile*/
@media screen and (max-width: 450px) {
  .box6 .box6-inner {
    width: 90%;
  }
  .box6 .box6-inner .box6-flex {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
  }
  .box6 .box6-inner .box6-flex .box6-items:nth-of-type(1) {
    display: none;
  }
  .box6 .box6-inner .box6-flex .box6-items:nth-of-type(2) .box6-items-icon {
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    min-width: 330px;
    /*修正20220407*/
    /*修正20220407*/
  }
  .box6 .box6-inner .box6-flex .box6-items:nth-of-type(2) .box6-items-icon img {
    max-width: 72px;
    margin: .3rem;
  }
  .box6 .box6-inner .box6-flex .box6-items:last-of-type p {
    width: 100%;
  }
  .box6 .bike {
    position: absolute;
    bottom: 0%;
    right: 0%;
  }
  .box6 .bike img {
    max-width: 120px;
  }
}

/*box7*/
.box7 {
  width: 75%;
  margin: 0 auto;
  padding: 4rem 0rem;
}

.box7 .box7-text h2 {
  padding-bottom: 2rem;
  text-align: left;
}

.box7 .box7-text2 {
  text-align: right;
  line-height: 2rem;
}

.box7 .box7-text2 .br {
  display: block;
}

.box7 .box7-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.box7 .box7-flex a {
  width: 50%;
  display: inline-block;
  text-align: center;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
          box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
  -webkit-transition: .3s;
  transition: .3s;
}

.box7 .box7-flex a:hover {
  -webkit-box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.box7 .box7-flex .box7-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 688px;
  margin: 4rem 0rem;
  text-align: center;
  background-color: #EBEBEB;
}

.box7 .box7-flex .box7-items img {
  width: 100%;
  max-width: 200px;
}

.box7 .box7-flex .box7-items .box7-linkname {
  font-size: 3rem;
  font-family: 'Zen Kurenaido', sans-serif;
  font-weight: bold;
}

.box7 .box7-flex .box7-items .box7-link {
  display: block;
  text-align: right;
}

/*box7-mobeile*/
@media screen and (max-width: 450px) {
  .box7 {
    width: 90%;
  }
  .box7 .box7-text2 {
    text-align: left;
  }
  .box7 .box7-flex {
    gap: 2rem;
  }
  .box7 .box7-flex .box7-items {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0rem;
    padding: 1rem;
  }
  .box7 .box7-flex .box7-items img {
    width: 100%;
    max-width: 120px;
  }
  .box7 .box7-flex .box7-items h3 {
    text-align: right;
    width: 200px;
  }
  .box7 .box7-flex .box7-items h3 .box7-linkname {
    font-size: 1.5rem;
  }
  .box7 .box7-flex .box7-items h3 .box7-link {
    font-size: 1rem;
    display: block;
  }
}

/*box8*/
.box8 {
  width: 100%;
  background-color: #EBE7DB;
  position: relative;
}

.box8 .box8-inner {
  width: 75%;
  margin: 0 auto;
  padding: 4rem 0rem;
}

.box8 .box8-inner .box8-text h2 {
  padding-bottom: 2rem;
  text-align: right;
}

.box8 .box8-inner .box8-flex1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.box8 .box8-inner .box8-flex1 .box8-items:nth-of-type(1) {
  width: 200px;
  font-size: 1.3rem;
}

.box8 .box8-inner .box8-flex1 .box8-items:nth-of-type(1) p {
  width: 100%;
  background-color: #fff;
  padding: .5rem;
  text-align: center;
}

.box8 .box8-inner .box8-flex1 .box8-items:nth-of-type(1) .br {
  display: block;
}

.box8 .box8-inner .box8-flex1 .box8-items:nth-of-type(2) {
  max-width: 700px;
  text-align: right;
}

.box8 .box8-inner .box8-flex1 .box8-items:nth-of-type(2) .br {
  display: block;
}

.box8 .box8-inner img {
  width: 100%;
  max-width: 1660px;
}

/*box8-mobeile*/
@media screen and (max-width: 450px) {
  .box8 .box8-inner {
    width: 90%;
  }
  .box8 .box8-inner .box8-flex1 .box8-items:nth-of-type(2) {
    text-align: left;
  }
}

/*box9*/
.box9 {
  width: 50%;
  margin: 0 auto;
  padding: 4rem 0rem;
  line-height: 2rem;
}

.box9 .box9-text h2 {
  padding-bottom: 2rem;
  text-align: left;
}

.box9 ul {
  list-style-type: none;
  padding: 0;
}

/*box9-mobeile*/
@media screen and (max-width: 450px) {
  .box9 {
    width: 90%;
  }
  .box9 .box9-text2 {
    text-align: left;
  }
}

/*box10*/
.box10 {
  background-color: #DFEFFF;
}

.box10 .box10-inner {
  width: 50%;
  margin: 0 auto;
  padding: 4rem 0rem;
  line-height: 2rem;
}

.box10 .box10-inner .box10-text h2 {
  padding-bottom: 2rem;
  text-align: left;
}

.box10 .box10-inner ul {
  list-style-type: none;
  padding: 0;
}

/*box10-mobeile*/
@media screen and (max-width: 450px) {
  .box10 .box10-inner {
    width: 90%;
  }
}

/*footer*/
.footer {
  margin: 0 auto;
  background-color: #a3a3a3;
  color: #fff;
  padding: 1rem 0rem;
  line-height: 2rem;
}

.footer .footer-inner {
  width: 90%;
  margin: 0 auto;
}

.footer .footer-inner .footer-logo img {
  max-width: 250px;
  width: 100%;
}

.footer .footer-inner .footer-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  /*矢印が右に移動する*/
  /*矢印と下線の形状*/
  /*hoverした際の移動*/
}

.footer .footer-inner .footer-flex .footer-tel {
  font-size: 2rem;
}

.footer .footer-inner .footer-flex .footer-time {
  font-size: 1rem;
  padding-left: 1rem;
}

.footer .footer-inner .footer-flex .footer-url {
  font-size: 1.5rem;
  padding-right: 1rem;
}

.footer .footer-inner .footer-flex .footer-hp {
  width: 100%;
  max-width: 220px;
  background-color: #fff;
  color: #555555;
  text-align: left;
}

.footer .footer-inner .footer-flex .footer-hp img {
  max-width: 50px;
  padding-right: .5rem;
}

.footer .footer-inner .footer-flex .btnarrow4 {
  /*矢印と下線の基点とするためrelativeを指定*/
  position: relative;
  /*形状*/
  display: inline-block;
  padding: 0 30px;
  color: #333;
  text-decoration: none;
  outline: none;
}

.footer .footer-inner .footer-flex .btnarrow4::before {
  content: '';
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  top: 17px;
  right: 15%;
  /*下線の形状*/
  width: 13%;
  height: 1px;
  background: #333;
  /*アニメーションの指定*/
  -webkit-transition: all .3s;
  transition: all .3s;
}

.footer .footer-inner .footer-flex .btnarrow4::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 13px;
  right: 28px;
  /*矢印の形状*/
  width: 13px;
  height: 1px;
  background: #333;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  /*アニメーションの指定*/
  -webkit-transition: all .3s;
  transition: all .3s;
}

.footer .footer-inner .footer-flex .btnarrow4:hover::before {
  right: 20px;
}

.footer .footer-inner .footer-flex .btnarrow4:hover::after {
  right: 20px;
}

.footer .footer-inner .footer-licence {
  font-size: .8rem;
  text-align: right;
}

/*footer-mobeile*/
@media screen and (max-width: 450px) {
  .footer {
    padding: 0;
    color: #fff;
  }
  .footer .footer-inner {
    width: 90%;
  }
  .footer .footer-inner .footer-logo img {
    max-width: 550px;
    width: 100%;
  }
  .footer .footer-inner .footer-flex {
    text-align: center;
    /*矢印が右に移動する*/
    /*矢印と下線の形状*/
    /*hoverした際の移動*/
  }
  .footer .footer-inner .footer-flex .footer-tel {
    font-size: 2rem;
  }
  .footer .footer-inner .footer-flex .footer-time {
    padding-left: 0rem;
  }
  .footer .footer-inner .footer-flex .footer-url {
    padding-right: 0rem;
  }
  .footer .footer-inner .footer-flex .footer-hp {
    width: 100%;
    background-color: #fff;
    color: #555555;
    text-align: center;
    max-width: 450px;
  }
  .footer .footer-inner .footer-flex .footer-hp img {
    max-width: 20px;
    padding-right: .5rem;
  }
  .footer .footer-inner .footer-flex .btnarrow4 {
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0 30px;
    color: #333;
    text-decoration: none;
    outline: none;
  }
  .footer .footer-inner .footer-flex .btnarrow4::before {
    content: '';
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    top: 17px;
    right: 15%;
    /*下線の形状*/
    width: 0%;
    height: 1px;
    background: #333;
    /*アニメーションの指定*/
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .footer .footer-inner .footer-flex .btnarrow4::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 13px;
    right: 28px;
    /*矢印の形状*/
    width: 0px;
    height: 1px;
    background: #333;
    -webkit-transform: rotate(35deg);
            transform: rotate(35deg);
    /*アニメーションの指定*/
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .footer .footer-inner .footer-flex .btnarrow4:hover::before {
    right: 20px;
  }
  .footer .footer-inner .footer-flex .btnarrow4:hover::after {
    right: 20px;
  }
  .footer .footer-inner .footer-licence {
    font-size: .5rem;
    padding-top: .5rem;
  }
  .footer .footer-inner .footer-licence p {
    margin: 0;
  }
}
/*# sourceMappingURL=style.css.map */