@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');


html {
  font-size: 62.5%;
}

@media screen and (max-width: 330px) {
  html {
    font-size: 53.6%;
  }
}


body {
  color          : #086654;
  font-family    : 'Shippori Mincho', serif;
  background     : url(../img/bg.jpg)repeat;
  background-size: contain;
}

.wrap {
  width   : 100%;
  overflow: hidden;
}

a {
  display: block;
}

img {
  width: 100%;
}



/* ====================================================
  共通パーツ
=======================================================*/
.container {
  width    : 100%;
  max-width: 1200px;
  padding  : 0 80px;
  margin   : 0 auto;
}

/* container  レスポンシブ ------------ */
@media screen and (max-width: 1000px) {
  .container {
    padding: 0 40px;
  }
}

@media screen and (max-width: 600px) {
  .container {
    padding: 0 15px;
  }
}


/* sec_ttl ---------------------------------------*/
.sec_ttl {
  font-size     : 6.5rem;
  font-weight   : 600;
  letter-spacing: 1px;
}

.sec_ttl .ttl_en {
  font-size  : 1.8rem;
  font-weight: 500;
  display    : block;
  padding    : 10px 0;
}

.sec_ttl .fs45 {
  font-size: 4.5rem;
}

.sec_ttl.center {
  font-size : 5.5rem;
  text-align: center;
}


/* sec_ttl  レスポンシブ -------------- */
@media screen and (max-width: 1150px) {
  .sec_ttl {
    font-size: 5.5rem;
  }

  .sec_ttl .ttl_en {
    font-size: 1.6rem;
  }

  .sec_ttl .fs45 {
    font-size: 3.5rem;
  }

  .sec_ttl.center {
    font-size: 4.5rem;
  }
}


@media screen and (max-width: 600px) {
  .sec_ttl {
    font-size: 3.8rem;
  }

  .sec_ttl .ttl_en {
    font-size: 1.3rem;
  }

  .sec_ttl .fs45 {
    font-size: 2.8rem;
  }

  .sec_ttl.center {
    font-size: 3rem;
  }
}

/* End sec_ttl -----------------------------------*/



/* txt1 --- about / characteristic -------------- */
.txt {
  font-size  : 1.7rem;
  color      : #636666;
  font-weight: 600;
}


/* txt1  レスポンシブ ----------- */
@media screen and (max-width: 1150px) {
  .txt {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 600px) {
  .txt {
    font-size: 1.4rem;
  }
}

/* End txt1 -------------------------------------*/



/* ===================================================
  header
=====================================================*/
header {
  width     : 100%;
  padding   : 20px 40px;
  position  : fixed;
  top       : 0;
  left      : 0;
  z-index   : 1;
  transition: 0.5s;
}

header.scroll-nav {
  padding   : 15px 40px;
  background: #fff;
}

header .inner_top {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

header .site_ttl {
  display: flex;
  width  : 300px;
  z-index: 3;
}

header .site_ttl h1 {
  font-size  : 1.6rem;
  font-weight: 700;
  color      : #008772;
  display    : flex;
  align-items: center;
}

header .site_ttl h1 img {
  width       : 60px;
  margin-right: 20px;
}

header nav {
  width: calc(100% - 300px);
}

header nav ul {
  display        : flex;
  justify-content: flex-end;
}

header nav ul li {
  margin-right: 30px;
}

header nav ul li.nav_fb {
  display: none;
}

header nav ul li a {
  font-size  : 1.5rem;
  font-weight: 700;
  color      : #008772;
}


#toggle {
  width          : 40px;
  height         : 40px;
  display        : flex;
  align-items    : center;
  justify-content: center;
  flex-direction : column;
  transition     : 0.5s;
  cursor         : pointer;
  z-index        : 2;
  display        : none;
}

#toggle span {
  width     : 100%;
  background: #27a639;
  height    : 2px;
  display   : block;
  transition: 0.5s;
}

#toggle span:nth-child(2) {
  margin: 9px 0;
}

#toggle.active span:nth-child(1) {
  transform: translateY(11px) rotate(-225deg);
}

#toggle.active span:nth-child(2) {
  opacity: 0;
}

#toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(225deg);
}


/* --------------------------------------------------
  header / nav  レスポンシブ
----------------------------------------------------*/
@media screen and (max-width: 1150px) {
  #toggle {
    display: flex;
  }

  header nav {
    width     : 100%;
    height    : auto;
    position  : fixed;
    top       : 0;
    left      : 0;
    opacity   : 0;
    transition: all .7s;
    visibility: hidden;
    z-index   : 2;
    padding   : 100px 0;
  }

  header nav.active {
    position       : fixed;
    top            : 0;
    left           : 0;
    opacity        : 1;
    visibility     : visible;
    height         : 100vh;
    z-index        : 2;
    overflow-y     : scroll;
    transition     : all .7s;
    background     : url(../img/sp_menu_bg.jpg)no-repeat;
    background-size: cover;
    padding        : 100px 0;
  }

  header nav ul {
    flex-direction: column;
  }

  header nav ul li {
    margin-right : 0;
    padding      : 15px 80px;
    border-bottom: 1px solid #27a639;
  }

  header nav ul li.nav_fb {
    display: block;
  }
}


@media screen and (max-width: 1000px) {
  header {
    padding: 15px 20px;
  }

  header.scroll-nav {
    padding: 10px 20px;
  }
}


@media screen and (max-width: 600px) {
  header {
    padding: 10px 15px 15px;
  }

  header.scroll-nav {
    padding: 5px 15px 10px;
  }

  header nav ul li {
    padding: 15px 50px;
  }

  header .site_ttl h1 {
    font-size: 1.3rem;
  }

  header .site_ttl h1 img {
    width       : 46px;
    margin-right: 10px;
  }

  header nav.active {
    padding: 80px 0;
  }

  #toggle {
    width : 35px;
    height: 35px;
  }

  #toggle span:nth-child(2) {
    margin: 7px 0;
  }

  #toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(-225deg);
  }
}



/* ==================================================
  mv
====================================================*/
#mv {
  width          : 100%;
  background     : url(../img/mv_bg.jpg)no-repeat;
  background-size: cover;
  padding        : 80px 0 20px;
}

#mv img {
  width  : 90%;
  display: block;
  margin : 0 auto;
}


/* --------------------------------------------------
  mv  レスポンシブ
----------------------------------------------------*/
@media screen and (max-width: 600px) {
  #mv {
    padding: 60px 0 10px;
  }
}



/* ====================================================
  about
=======================================================*/
#about {
  padding: 80px 0;
}

#about .flex {
  display        : flex;
  flex-direction : row-reverse;
  justify-content: space-between;
  height         : 400px;
}

#about .flex .txt_area {
  width         : 60%;
  display       : flex;
  flex-direction: row-reverse;
}

#about .sec_ttl {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode    : tb-rl;
  writing-mode        : vertical-rl;
  margin-left         : 8%;
  margin-top          : -10px;
}

#about .sec_ttl .ttl_en {
  display: flex;
  padding: 10px 0 10px 20px;
}

#about .txt {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode    : tb-rl;
  writing-mode        : vertical-rl;
  line-height         : 2.8;
  background-image    : linear-gradient(90deg, #000 1px, transparent 1px);
  background-size     : 9.1% 2.5em;
  padding-bottom      : 10px;
  border-right        : 1px solid #000;
}

#about .flex .img_area {
  width : 30%;
  height: 400px;
}

#about .flex .img_area img {
  width     : 95%;
  height    : 100%;
  object-fit: cover;
}


/* -----------------------------------------------------
  about  レスポンシブ
-------------------------------------------------------*/
@media screen and (max-width: 1150px) {
  #about .txt {
    background-size: 10% 2.5em;
  }
}


@media screen and (max-width: 900px) {
  #about {
    padding: 30px 0;
  }

  #about .flex {
    flex-direction: column;
    height        : 100%;
  }

  #about .flex .txt_area {
    flex-direction: column;
    width         : 100%;
  }

  #about .sec_ttl {
    writing-mode: horizontal-tb;
    margin      : 0 auto 25px;
  }

  #about .sec_ttl .ttl_en {
    display   : block;
    text-align: center;
    padding   : 10px 0;
  }

  #about .txt {
    writing-mode    : horizontal-tb;
    background-image: linear-gradient(180deg, #000 1px, transparent 1px);
    background-size : 100% 2.5em;
    line-height     : 2.5em;
    padding-bottom  : 1px;
    border-right    : none;
  }

  #about .txt p {
    padding: 0 15px;
  }

  #about .flex .img_area {
    width : 70%;
    margin: 30px auto 0;
    height: 100%;
  }
}

@media screen and (max-width: 600px) {
  #about {
    padding: 20px 0;
  }

  #about .txt p {
    padding: 0 10px;
  }
}



/* ====================================================
  characteristics
=======================================================*/
#characteristics {
  padding : 20px 0 30px;
  position: relative;
}

#characteristics .flex {
  display     : flex;
  padding-left: 60px;
}

#characteristics .txt_area {
  width      : 45%;
  max-width  : 450px;
  margin-left: auto;
}

#characteristics .sec_ttl {
  margin-bottom: 40px;
}

#characteristics .txt {
  line-height: 1.8;
}

#characteristics .txt span {
  margin-left: -7px;
}

#characteristics .img_area {
  width      : 55%;
  max-height : 500px;
  margin-left: 30px;
}

#characteristics .img_area img {
  height    : 100%;
  object-fit: cover;
  max-width : 900px;
}


/* -----------------------------------------------------
  characteristics  レスポンシブ
-------------------------------------------------------*/
@media screen and (max-width: 1000px) {
  #characteristics .flex {
    padding-left: 30px;
  }
}


@media screen and (max-width: 900px) {
  #characteristics .flex {
    flex-direction: column;
    padding       : 0 40px;
  }

  #characteristics .txt_area {
    width        : 100%;
    max-width    : 100%;
    margin-left  : 0;
    margin-bottom: 20px;
  }

  #characteristics .sec_ttl {
    text-align   : center;
    margin-bottom: 25px;
  }

  #characteristics .img_area {
    width      : 100%;
    max-width  : 100%;
    max-height : 100%;
    margin-left: 0;
  }

  #characteristics .img_area img {
    height    : 100%;
    object-fit: cover;
  }
}


@media screen and (max-width: 600px) {
  #characteristics .flex {
    padding: 0 20px;
  }
}



/* ====================================================
  info
=======================================================*/
#info {
  padding: 50px 0;
}

#info .flex {
  display        : flex;
  justify-content: space-between;
}

#info .flex .ttl_area {
  width      : 25%;
  padding-top: 10px;
}

#info .flex .info_posts {
  width: 68%;
}

#info .flex .info_posts ul li {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  padding        : 10px 0;
  border-bottom  : 1px solid #aeafaf;
}

#info .flex .info_posts ul li:first-child {
  border-top: 1px solid #aeafaf;
}


#info .flex .info_posts ul li .thumb {
  width : 70px;
  height: 50px;
}

#info .flex .info_posts ul li .thumb img {
  height    : 100%;
  object-fit: cover;
}

#info .flex .info_posts ul li .txt_area {
  width          : 77%;
  display        : flex;
  justify-content: flex-start;
}

#info .flex .info_posts ul li .date_area {
  font-size   : 1.4rem;
  font-weight : 600;
  min-width: 6em;
  margin-right: 15px;
}

#info .flex .info_posts ul li .txt {
  width        : 100%;
  line-height: 1.6;
  font-size: 1.5rem;
/*  overflow     : hidden;
  text-overflow: ellipsis;
  white-space  : nowrap;*/
}

#info .btn_post {
  width        : 35px;
  height       : 35px;
  border       : 1px solid #000;
  display      : inline-block;
  padding-left : 20px;
  position     : relative;
  border-radius: 50%;
}

#info .btn_post::before {
  content          : '';
  width            : 8px;
  height           : 8px;
  border           : 0px;
  border-top       : solid 1px #000;
  border-right     : solid 1px #000;
  -ms-transform    : rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform        : rotate(45deg);
  position         : absolute;
  top              : 50%;
  left             : 33%;
  margin-top       : -4px;
}

#info .flex .info_posts .btn_fb {
  font-size  : 1.7rem;
  color      : #000;
  font-weight: 600;
  text-align : right;
  padding    : 10px 0;
}

#info .flex .info_posts .btn_fb:hover {
  opacity   : 0.8;
  transition: 0.3s;
}


/* -----------------------------------------------------
  info  レスポンシブ
-------------------------------------------------------*/
@media screen and (max-width: 1150px) {
  #info .flex .info_posts ul li .date_area {
    font-size: 2rem;
  }

  #info .flex .info_posts .btn_fb {
    font-size: 1.6rem;
  }
}


@media screen and (max-width: 900px) {
  #info {
    padding: 10px 0 50px;
  }

  #info .flex {
    flex-direction: column;
  }

  #info .flex .ttl_area {
    width        : 100%;
    padding-top  : 0;
    margin-bottom: 30px;
  }

  #info .flex .info_posts {
    width: 100%;
  }

  #info .flex .info_posts .btn_fb {
    font-size : 1.6rem;
    text-align: center;
  }
}


@media screen and (max-width: 600px) {
  #info {
    padding: 0 0 30px;
  }

  #info .flex .ttl_area {
    margin-bottom: 20px;
  }

  #info .btn_post {
    width : 25px;
    height: 25px;
  }

  #info .flex .info_posts ul li .thumb {
    margin-right: 10px;
  }

  #info .flex .info_posts ul li .txt_area {
    width         : 75%;
    flex-direction: column;
  }

  #info .flex .info_posts ul li .txt_area .txt {
    width    : 95%;
    font-size: 13px;
  }

  #info .flex .info_posts ul li .date_area {
    font-size    : 1.5rem;
    margin-bottom: 5px;
  }

  #info .btn_post::before {
    content          : '';
    width            : 6px;
    height           : 6px;
    border           : 0px;
    border-top       : solid 1px #000;
    border-right     : solid 1px #000;
    -ms-transform    : rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform        : rotate(45deg);
    position         : absolute;
    top              : 50%;
    left             : 30%;
    margin-top       : -4px;
  }

  #info .flex .info_posts .btn_fb {
    font-size: 1.4rem;
  }
}


/* ====================================================
  howto
=======================================================*/
#howto {
  background     : url(../img/video_bg.jpg)no-repeat;
  background-size: cover;
  padding        : 5% 0 6%;
}

#howto .flex {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

#howto .flex .video {
  width      : 50%;
  padding-top: 36.5%;
  position   : relative;
}

#howto .flex .video iframe {
  position: absolute;
  top     : 0;
  right   : 0;
  width   : 100%;
  height  : 100%;
}

#howto .flex .ttl_area {
  width: 49%;
}

#howto .flex .ttl_area .sec_ttl {
  color        : #fff;
  text-align   : center;
  margin-bottom: 40px;
}

#howto .flex .ttl_area img {
  width  : 70%;
  margin : 0 auto;
  display: block;
}


/* -----------------------------------------------------
  howto  レスポンシブ
-------------------------------------------------------*/
@media screen and (max-width: 900px) {
  #howto .flex {
    flex-direction: column-reverse;
  }

  #howto .flex .ttl_area img {
    display: none;
  }

  #howto .flex .video {
    width      : 100%;
    padding-top: 67.5%;
  }

  #howto .flex .ttl_area {
    width: 100%;
  }
}


@media screen and (max-width: 600px) {
  #howto {
    padding: 5% 0 10%;
  }

  #howto .flex .ttl_area .sec_ttl {
    margin-bottom: 20px;
  }
}



/* ====================================================
  made
=======================================================*/
#made {
  padding-top: 60px;
}

#made .list {
  display        : flex;
  flex-wrap      : wrap;
  align-items    : flex-start;
  justify-content: center;
  max-width      : 1250px;
  margin         : 0 auto;
  padding        : 60px 40px 80px;
}

#made .list li {
  width       : 29%;
  margin-right: 4.5%;
}

#made .list li:nth-child(3),
#made .list li:nth-child(6) {
  margin-right: 0;
}

#made .list li:nth-child(1),
#made .list li:nth-child(2),
#made .list li:nth-child(3) {
  margin-bottom: 50px;
}

#made .list li .img_area {
  position: relative;
}

#made .list li .img_area .made_img {
  z-index: -2;
}

#made .list .img_area .arrow {
  width     : 6.5vw;
  height    : 6.5vw;
  max-width : 74px;
  max-height: 74px;
  position  : absolute;
  top       : 39%;
  right     : -19%;
  z-index   : 2;
}

#made .list li:nth-child(3) .img_area .arrow {
  display: none;
  z-index: 2;
}

#made .list li .ttl {
  font-size    : 2.1rem;
  color        : #fff;
  font-weight  : 500;
  background   : #16232f;
  height       : 50px;
  line-height  : 50px;
  text-align   : center;
  border-radius: 10px;
  margin       : 10px 0;
}

#made .list li .txt {
  line-height: 1.5;
}


/* -----------------------------------------------------
  made  レスポンシブ
-------------------------------------------------------*/
@media screen and (max-width: 1150px) {
  #made .list li .ttl {
    /* font-size: 1.8rem; */
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  }
}


@media screen and (max-width: 1024px) {
  #made .list {
    justify-content: space-between;
    padding        : 60px 30px 80px;
  }

  #made .list li {
    width       : 46%;
    margin-right: 4.5%;
  }

  #made .list li:nth-child(2),
  #made .list li:nth-child(4) {
    margin-right: 0;
  }

  #made .list li:nth-child(2) .img_area .arrow,
  #made .list li:nth-child(4) .img_area .arrow {
    display: none;
  }

  #made .list li:nth-child(3) {
    margin-right: 4.5%;
  }

  #made .list li:nth-child(3) .img_area .arrow {
    display: block;
  }

  #made .list .img_area .arrow {
    width     : 10vw;
    height    : 10vw;
    max-width : 100%;
    max-height: 100%;
    right     : -21%;
  }
}


@media screen and (max-width: 600px) {
  #made {
    padding-top: 20px;
  }

  #made .list {
    justify-content: space-between;
    padding        : 30px 15px 0;
  }

  #made .list li:nth-child(1),
  #made .list li:nth-child(2),
  #made .list li:nth-child(3) {
    margin-bottom: 0;
  }

  #made .list li {
    margin-bottom: 30px;
  }

  #made .list li .ttl {
    font-size    : 1.1rem;
    height       : 30px;
    line-height  : 30px;
    border-radius: 6px;
    height       : 100%;
    line-height  : 1.6;
    padding      : 6px 0;
  }

  #made .list li .txt {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 330px) {
  #made .list li:nth-child(2) .ttl {
    letter-spacing: -1px;
  }
}



/* ====================================================
  products
=======================================================*/
#products .head {
  height    : 30vw;
  max-height: 480px;
  min-height: 130px;
  margin    : 3% 0;
}

#products .head img {
  height    : 100%;
  object-fit: cover;
}

#products .flex {
  display        : flex;
  justify-content: space-between;
  padding        : 60px 0 10px;
}

#products .flex .left,
#products .flex .right {
  width     : 47%;
  background: #fff;
  padding   : 15px 15px 25px;
}

#products .flex h4 {
  font-size  : 3.4rem;
  font-weight: 600;
  padding    : 10px 0;
  text-align : center;
}

#products .flex .limited {
  display    : flex;
  align-items: center;
  height     : 38px;
  line-height: 38px;
  padding    : 0 15px;
}

#products .flex .limited span {
  width      : 40%;
  font-size  : 2.4rem;
  color      : #fff;
  background : #086654;
  font-weight: 600;
  text-align : center;
}

#products .flex .limited p {
  width      : 60%;
  font-size  : 1.7rem;
  color      : #636666;
  font-weight: 600;
  background : #eaf4f2;
  text-align : center;
}

#products .flex .txt {
  font-size    : 1.6rem;
  line-height  : 1.5;
  padding      : 15px;
  padding-right: 10px;
}

.chui{
	font-size:1.5rem;
	line-height:1.6;
	padding:6px 0 1.5rem;
}

.chui ul{margin-bottom:1.4em}
.chui li{list-style-type:circle;margin-left:1.3em}

/* -----------------------------------------------------
  products  レスポンシブ
-------------------------------------------------------*/
@media screen and (max-width: 1150px) {
  #products .flex h4 {
    font-size  : 3rem;
    font-weight: 600;
    padding    : 10px 0;
    text-align : center;
  }

  #products .flex .limited span {
    font-size: 2rem;
  }

  #products .flex .limited p {
    font-size: 1.7rem;
  }
}


@media screen and (max-width: 1128px) {
  #products .flex .right .txt {
    height: 102px;
  }
}


@media screen and (max-width: 900px) {
  #products .flex {
    padding       : 30px 0;
    flex-direction: column;
    align-items   : center;
  }

  #products .flex .left,
  #products .flex .right {
    width     : 70%;
    background: #fff;
    padding   : 15px 15px 25px;
  }

  #products .flex .left {
    margin-bottom: 30px;
  }
}


@media screen and (max-width: 600px) {
  #products .flex {
    padding: 20px 0;
  }

  #products .flex .left,
  #products .flex .right {
    width     : 95%;
    background: #fff;
    padding   : 15px 15px 25px;
  }

  #products .flex h4 {
    font-size: 2.5rem;
  }

  #products .flex .limited {
    height     : 32px;
    line-height: 32px;
    padding    : 0 10px;
  }

  #products .flex .limited span {
    font-size: 1.7rem;
  }

  #products .flex .limited p {
    font-size: 1.6rem;
  }

  #products .flex .txt {
    font-size: 1.4rem;
    padding  : 15px 10px;
  }

  #products .flex .right .txt {
    height: 100%;
  }
}



/* ====================================================
  order
=======================================================*/
#order,
#soryo{
  padding   : 60px 0 48px;
  text-align: center;
}

#order .sec_ttl {
  font-size    : 4.5rem;
  margin-bottom: 25px;
}

#order .txt {
  font-weight: 700;
  line-height: 1.6;
}

#order .txt .bp900_on {
  display: none;
}

#order .link {
  display        : flex;
  justify-content: center;
}

#order .link .btn {
  width        : 49%;
  max-width    : 400px;
  height       : 65px;
  line-height  : 65px;
  font-size    : 3.6rem;
  font-weight  : 600;
  color        : #fff;
  background   : #086654;
  text-align   : center;
  margin       : 30px 15px;
  border-radius: 20px;
}

#order .link .btn:hover {
  transition: .3s;
  color     : #086654;
  background: #add8d0;
}

#order h3 {
  font-size  : 3rem;
  color      : #000;
  font-weight: 600;
  display    : inline-block;
}

#order .tel {
  font-size     : 4.5rem;
  font-weight   : 600;
  letter-spacing: 1px;
  margin-top    : 20px;
}

#order .tel .bp600_on {
  display: none;
}


/* -----------------------------------------------------
  order  レスポンシブ
-------------------------------------------------------*/
@media screen and (max-width: 1150px) {
  #order .sec_ttl {
    font-size: 3.7rem;
  }

  #order .link .btn {
    font-size  : 3rem;
    height     : 55px;
    line-height: 55px;
  }

  #order span {
    font-size: 2.5rem;
  }

  #order .tel {
    font-size: 4rem;
    font-size: clamp(2rem, 4.3vw, 4rem);
  }
}


@media screen and (max-width: 900px) {
  #order .txt .bp900_on {
    display: block;
  }
}


@media screen and (max-width: 600px) {
  #order {
    padding: 10px 0 30px;
  }

  #order .sec_ttl {
    font-size    : 2.7rem;
    margin-bottom: 15px;
  }

  #order .link {
    justify-content: space-between;
  }

  #order .link .btn {
    width        : 48%;
    font-size    : 1.8rem;
    height       : 40px;
    line-height  : 40px;
    margin       : 15px 0;
    border-radius: 15px;
  }

  #order span {
    font-size: 1.4rem;
  }

  #order .tel {
    font-size  : 2rem;
    line-height: 1.5;
    margin-top : 15px;
  }

  #order .tel .bp600_on {
    display: block;
  }
}


@media screen and (max-width: 451px) {
  #order .txt {
    font-size: 12px;
  }

  #order .txt .bp900_on {
    display: none;
  }
}



/* ====================================================
  access
=======================================================*/
#access .flex {
  display: flex;
}

#access .flex .map {
  width     : 50%;
  height    : 35vw;
  max-height: 400px;
  min-height: 300px;
}

#access .flex .txt_area {
  width          : 50%;
  height         : 35vw;
  max-height     : 400px;
  display        : flex;
  align-items    : center;
  justify-content: center;
  flex-direction : column;
  background     : #add8d0;
}

#access .sec_ttl .ttl_en {
  padding: 0;
}

#access .flex .txt_area h3 {
  font-size  : 3.2rem;
  font-weight: 600;
  margin     : 30px 0 20px;
}

#access .flex .txt_area .txt {
  font-size  : 1.8rem;
  line-height: 1.6;
}



/* -----------------------------------------------------
  access  レスポンシブ
-------------------------------------------------------*/
@media screen and (max-width: 1150px) {
  #access .flex .txt_area h3 {
    font-size: 2.8rem;
    margin   : 30px 0 20px;
  }

  #access .flex .txt_area .txt {
    font-size: 1.7rem;
  }
}


@media screen and (max-width: 900px) {
  #access .flex {
    flex-direction: column-reverse;
  }

  #access .flex .map {
    width: 100%;
  }

  #access .flex .txt_area {
    width  : 100%;
    height : 100%;
    padding: 30px 20px;
  }
}


@media screen and (max-width: 600px) {
  #access .flex .txt_area {
    padding: 25px 15px;
  }

  #access .flex .txt_area h3 {
    font-size  : 2.3rem;
    font-weight: 600;
    margin     : 15px 0 10px;
  }

  #access .flex .txt_area .txt {
    font-size: 1.4rem;
  }
}


/* ====================================================
  btn_top
=======================================================*/
.btn_top {
  font-size    : 40px;
  width        : 45px;
  height       : 45px;
  background   : #fff;
  border       : 1px solid #086654;
  text-align   : center;
  padding-top  : 9px;
  border-radius: 50%;
  position     : fixed;
  bottom       : 4%;
  right        : 3%;
}


/* btn_top  レスポンシブ ------------------ */
@media screen and (max-width: 600px) {
  .btn_top {
    font-size  : 30px;
    width      : 40px;
    height     : 40px;
    padding-top: 10px;
    bottom     : 2%;
  }
}



/* ====================================================
  footer
=======================================================*/
footer {
  width     : 100%;
  padding   : 20px 15px;
  text-align: center;
  background: #086654;
  font-size : 1.6rem;
  color     : #fff;
}

footer br {
  display: none;
}


/* -----------------------------------------------------
  footer  レスポンシブ
-------------------------------------------------------*/
@media screen and (max-width: 900px) {
  footer {
    width     : 100%;
    padding   : 15px;
    text-align: center;
    background: #086654;
    font-size : 1.3rem;
    color     : #fff;
  }
}


@media screen and (max-width: 600px) {
  footer {
    padding  : 12px;
    font-size: clamp(10px, 2vw, 1.3rem);
  }
}


@media screen and (max-width: 330px) {
  footer {
    line-height: 1.4;
  }

  footer br {
    display: block;
  }
}



/* ====================================================
  animation fadein
=======================================================*/
.fadein1 {
  transform : translateY(50px);
  opacity   : 0;
  transition: 1.2s;
}

.fadein1.is-show {
  transform: translateY(0);
  opacity  : 1;
}

.fadein2 {
  transform : translateY(80px);
  opacity   : 0;
  transition: 1.5s;
}

.fadein2.is-show {
  transform: translateY(0);
  opacity  : 1;
}