﻿
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  line-height: 1;
  font-family: "Roboto", serif;
}

a {
  text-decoration: none;
}

.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 70px;
  background-color: #f1f1f1;
}
.header .header-inner {
  position: relative;
  height: 100%;
}
.header .header-inner .header-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header .header-inner .header-logo img {
  height: auto;
  width: 100%;
}
.header .header-inner .header-info {
  position: absolute;
  top: 25px;
  right: 10px;
  display: flex;
}
.header .header-inner .header-info .header-insta {
  margin-right: 10px;
}
.header .header-inner .header-info .header-insta img {
  display: block;
  height: 30px;
  width: 30px;
}
.header .header-inner .header-info #drawer-toggle .header-menu {
  position: relative;
  width: 25px;
  height: 25px;
}
.header .header-inner .header-info #drawer-toggle .header-menu span {
  width: 25px;
  height: 1px;
  background-color: #000;
  position: absolute;
  transition: transform 0.4s ease-in-out, top 0.3s ease;
}
.header .header-inner .header-info #drawer-toggle .header-menu span:nth-of-type(1) {
  top: 5px;
}
.header .header-inner .header-info #drawer-toggle .header-menu span:nth-of-type(2) {
  top: 14px;
}
.header .header-inner .header-info #drawer-toggle .header-menu span:nth-of-type(3) {
  bottom: 0px;
}
.header .header-inner .header-info #drawer-toggle.open .header-menu span:nth-of-type(1) {
  top: 15px;
  transform: rotate(45deg);
}
.header .header-inner .header-info #drawer-toggle.open .header-menu span:nth-of-type(2) {
  display: none;
}
.header .header-inner .header-info #drawer-toggle.open .header-menu span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 15px;
}
.header #grobal {
  position: fixed;
  width: 100%;
  top: 70px;
  background: #f1f1f1;
  display: none;
  opacity: 0.95;
}
.header #grobal #grobal-nav {
  overflow: auto;
  height: 100vh;
  letter-spacing: 0.1em;
}
.header #grobal #grobal-nav .grobal-nav-li {
  width: 200px;
  margin: 30px auto;
}
.header #grobal #grobal-nav .grobal-nav-li .grobal-nav_abo {
  font-size: 24px;
  text-align: center;
}
.header #grobal #grobal-nav .grobal-nav-li .grobal-nav_abo a h2 {
  color: #000;
  font-size: 18px;
}
.header #grobal #grobal-nav .grobal-nav-li .grobal-nav_abo a h2 span {
  color: #666;
  font-size: 12px;
  margin-left: 10px;
  font-weight: normal;
}
.header #grobal #grobal-nav .grobal-nav-li .grobal-nav_abo a:hover h2 {
  color: #666;
}
.header #grobal #grobal-nav .grobal-nav-li .grobal-nav_abo a:hover h2 span {
  color: #999;
}
.header #grobal #grobal-nav .grobal-nav-li .grobal-nav_line {
  width: 200px;
  margin: 15px 0;
  height: 1px;
  position: relative;
}
.header #grobal #grobal-nav .grobal-nav-li .grobal-nav_line .global_nav_line_gray {
  position: absolute;
  height: 1px;
  width: 200px;
  background: #d2d2d2;
}
.header #grobal #grobal-nav .grobal-nav-li .grobal-nav_line .global_nav_line_black {
  position: absolute;
  height: 1px;
  width: 20px;
  background: #436D7E;
}
.header #grobal #grobal-nav .grobal-nav-li:after {
  visibility: visible;
}

@media screen and (min-width: 768px) {
  html, body {
    margin: 0;
    padding: 0;
  }

  .header .header-inner .header-logo a img {
    width: 100%;
    height: 50px;
  }
  .header .header-inner .header-info {
    right: 25px;
    top: 20px;
  }
  .header .header-inner .header-info .header-insta {
    margin-right: 0;
  }
  .header .header-inner .header-info .header-insta img {
    height: 35px;
    width: 35px;
  }
  .header .header-inner .header-info #drawer-toggle .header-menu {
    position: relative;
    width: 30px;
    height: 20px;
    margin: 10px 20px;
  }
  .header .header-inner .header-info #drawer-toggle .header-menu span {
    width: 30px;
    height: 1px;
    background-color: #000;
    position: absolute;
  }
  .header .header-inner .header-info #drawer-toggle .header-menu span:nth-of-type(1) {
    top: 0;
  }
  .header .header-inner .header-info #drawer-toggle .header-menu span:nth-of-type(2) {
    top: 10px;
  }
  .header .header-inner .header-info #drawer-toggle .header-menu span:nth-of-type(3) {
    bottom: 0px;
  }
  .header .header-inner .header-info #drawer-toggle.open .header-menu span:nth-of-type(1) {
    top: 10px;
    transform: rotate(45deg);
  }
  .header .header-inner .header-info #drawer-toggle.open .header-menu span:nth-of-type(2) {
    display: none;
  }
  .header .header-inner .header-info #drawer-toggle.open .header-menu span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 10px;
  }
  .header #grobal #grobal-nav .grobal-nav-li {
    width: 250px;
    margin: 55px auto;
  }
  .header #grobal #grobal-nav .grobal-nav-li .grobal-nav_abo {
    font-size: 24px;
  }
  .header #grobal #grobal-nav .grobal-nav-li .grobal-nav_abo a h2 {
    font-size: 24px;
    font-weight: bold;
  }
  .header #grobal #grobal-nav .grobal-nav-li .grobal-nav_abo a h2 span {
    font-size: 14px;
    margin-left: 10px;
  }
  .header #grobal #grobal-nav .grobal-nav-li .grobal-nav_line {
    width: 250px;
    margin: 20px 0;
  }
  .header #grobal #grobal-nav .grobal-nav-li .grobal-nav_line .global_nav_line_gray {
    height: 1px;
    width: 250px;
  }
  .header #grobal #grobal-nav .grobal-nav-li .grobal-nav_line .global_nav_line_black {
    width: 30px;
  }
}
.wrapper {
  width: 100%;
  padding-top: 70px;
}
.wrapper .first-view {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.wrapper .first-view img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  object-fit: cover;
  vertical-align: bottom;
}
.wrapper .first-view::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
  /* 幅に対する高さの比を75%に固定 */
}
.wrapper .first-sect {
  position: absolute;
  top: 10%;
  left: 5%;
  line-height: 1.4;
}
.wrapper .first-sect h1 {
  font-size: 0.8em;
  font-weight: bold;
}
.wrapper .first-sect p {
  font-size: 0.8em;
  font-weight: normal;
  text-align: right;
}
.wrapper .second-view {
  position: relative;
  width: 100%;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 40px 0 30px;
}
.wrapper .second-view .view-front {
  position: absolute;
  color: #666;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8em;
  z-index: 2;
  font-weight: bold;
}
.wrapper .second-view .view-back {
  font-size: 1.2em;
  color: #eeeeee;
  position: absolute;
  left: 50%;
  top: 67%;
  transform: translate(-50%, -50%);
}
.wrapper .sec-box {
  width: 100%;
  margin: 0 auto;
  background-color: #f1f1f1;
}
.wrapper .sec-box .sec-photo {
  width: 100%;
}
.wrapper .sec-box .sec-photo img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.wrapper .sec-box .sec-view {
  width: 100%;
  position: relative;
  transition: 0.5s all;
  background-color: #f1f1f1;
  height: 450px;
  display: table;
  transform: skewY(-10deg);
}
.wrapper .sec-box .sec-view .sec-view_cont {
  display: table-cell;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
.wrapper .sec-box .sec-view .sec-view_cont .btn-point {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  color: #000;
}
.wrapper .sec-box .sec-view .sec-view_cont .btn-point .top-title {
  position: absolute;
  top: 45%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: key 0.8s ease infinite alternate;
}
@keyframes key {
  100% {
    transform: translate(-50%, -30%);
  }
}
.wrapper .sec-box .sec-view .sec-view_cont .btn-point .top-title .top-title_en {
  margin-bottom: 30px;
}
.wrapper .sec-box .sec-view .sec-view_cont .btn-point .top-title .top-title_en h2 {
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.wrapper .sec-box .sec-view .sec-view_cont .btn-point .top-title .top-title_en .view-back {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5em;
  color: #f7f7f7;
  z-index: -1;
  font-weight: bold;
}
.wrapper .sec-box .sec-view .sec-view_cont .btn-point .top-title .top-title_jp h3 {
  font-size: 1em;
  padding-bottom: 10px;
  border-bottom: 1px solid #d1d1d1;
}
.wrapper .sec-box .sec-view .sec-view_cont .btn-point .top-btn {
  position: absolute;
  left: 70%;
  bottom: 25px;
  display: flex;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.wrapper .sec-box .sec-view .sec-view_cont .btn-point .top-btn .top-btn_text {
  height: 12px;
}
.wrapper .sec-box .sec-view .sec-view_cont .btn-point .top-btn .top-btn_text span {
  margin-left: 5px;
}
.wrapper .sec-box .sec-view > * {
  transform: skewY(10deg);
}

@media screen and (min-width: 500px) {
  .wrapper .first-sect h1 {
    font-size: 1.2em;
  }
  .wrapper .sec-box .sec-view .sec-view_cont {
    width: 60%;
    height: 70%;
  }

  .br-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .wrapper .first-sect {
    top: 10%;
    left: 6%;
    line-height: 1.6;
  }
  .wrapper .first-sect h1 {
    font-size: 1.5em;
    font-weight: bold;
  }
  .wrapper .first-sect p {
    font-size: 1em;
    font-weight: normal;
    text-align: right;
  }
  .wrapper .second-view .view-front {
    font-size: 1em;
  }
  .wrapper .second-view .view-back {
    font-size: 1.5em;
  }
  .wrapper .sec-box {
    display: flex;
    margin: 50px auto;
    border-top: 1px outset #f1f1f1;
    border-bottom: 1px inset #f1f1f1;
  }
  .wrapper .sec-box .sec-view {
    width: 50%;
    height: auto;
  }
  .wrapper .sec-box .sec-view .sec-view_cont {
    width: 60%;
    height: 70%;
  }
  .wrapper .sec-box .sec-view .sec-view_cont .btn-point {
    overflow: hidden;
    display: inline-block;
  }
  .wrapper .sec-box .sec-view .sec-view_cont .btn-point:before {
    content: "";
    background-color: #436D7E;
    transform: translateX(-100%);
    position: absolute;
    transition: 0.5s ease-in-out;
    z-index: -1;
    width: 100%;
    height: 100%;
  }
  .wrapper .sec-box .sec-view .sec-view_cont .btn-point:after {
    transition: 0.5s ease-in-out;
    z-index: -1;
  }
  .wrapper .sec-box .sec-view .sec-view_cont .top-title {
    top: 50%;
  }
  .wrapper .sec-box .sec-view .sec-view_cont .top-title .top-title_en .view-back {
    display: none;
  }
  .wrapper .sec-box .sec-view .sec-view_cont .btn-point:hover:before {
    transform: translateX(0);
  }
  .wrapper .sec-box .sec-view .sec-view_cont .btn-point:hover .top-btn {
    color: #fff;
    transition: 0.9s;
  }
  .wrapper .sec-box .sec-view .sec-view_cont .btn-point:hover .top-btn .top-btn_text span {
    margin-left: 8px;
    transition: all 0.3s;
  }
  .wrapper .sec-box .sec-view .sec-view_cont .btn-point:hover .top-title {
    color: #fff;
    transition: 0.6s;
  }
  .wrapper .sec-box .sec-view .sec-view_cont .btn-point:hover .top-title .top-title_jp h3 {
    border-color: #fff;
    transition: 0.1s;
  }
  .wrapper .sec-box .sec-view .sec-view_cont:hover {
    border: 0;
  }
  .wrapper .sec-box .sec-photo {
    width: 50%;
  }
  .wrapper .sec-box .sec-photo img {
    width: 100%;
    height: auto;
  }
  .wrapper .sec-box:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .wrapper .first-sect h1 {
    font-size: 2em;
  }
  .wrapper .second-view .view-front {
    font-size: 1em;
  }
  .wrapper .second-view .view-back {
    font-size: 2em;
  }
  .wrapper .sec-box .sec-view .sec-view_cont {
    width: 50%;
    height: 70%;
  }
}
@media screen and (min-width: 1440px) {
  .wrapper .first-view {
    width: 100%;
    position: relative;
    height: 90vh;
  }
  .wrapper .first-view img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    object-fit: cover;
    vertical-align: bottom;
  }
  .wrapper .first-view::before {
    display: none;
  }
}
footer {
  background-color: #f7f7f7;
  padding: 30px 0 10px;
  width: 100%;
}
footer .footer-act {
  margin: 0 auto;
  width: 90%;
}
footer .footer-act .footer-btn {
  display: flex;
  text-align: center;
}
footer .footer-act .footer-btn .footer-cont {
  width: 40%;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid gray;
}
footer .footer-act .footer-btn .footer-cont a {
  color: #000;
  display: block;
  padding: 20px 0;
  text-align: center;
}
footer .footer-act .footer-btn .footer-cont a ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer-act .footer-btn .footer-cont a ul li {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
footer .footer-act .footer-btn .footer-cont a ul li img {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}
footer .footer-act .footer-btn .footer-cont:hover {
  background-color: #436D7E;
  transition: 0.6s ease-in-out;
  border: none;
}
footer .footer-act .footer-btn .footer-cont:hover a {
  color: #fff;
}
footer address {
  text-align: center;
  line-height: 1.4em;
  padding: 30px 0 20px;
  font-size: 0.8em;
}
footer .copyright {
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
  font-size: 0.7em;
}

.my_svg {
  fill: #fff;
}

@media screen and (min-width: 768px) {
  footer {
    padding: 50px 0 20px;
  }
  footer .footer-act {
    width: 80%;
  }
  footer .footer-act .footer-btn .footer-cont a {
    padding: 30px 0;
    font-size: 16px;
  }
  footer .footer-act .footer-btn .footer-cont a ul li {
    font-size: 18px;
  }
  footer .footer-act .footer-btn .footer-cont a ul li img {
    width: 25px;
    height: 25px;
  }
  footer address {
    font-size: 1em;
    padding: 35px 0 25px;
  }
}
.about {
  width: 100%;
  padding-top: 70px;
}
.about .second-view {
  width: 100%;
  height: 150px;
  align-items: center;
  border-bottom: 1px solid #d1d1d1;
  position: relative;
}
.about .second-view img {
  width: 100%;
  object-fit: cover;
  vertical-align: bottom;
  height: 100%;
  object-position: 50% 80%;
}
.about .second-view .about-title {
  position: absolute;
  bottom: 30%;
  right: 5%;
  color: #fff;
  letter-spacing: 0.1em;
}
.about .second-view .about-title h2 {
  font-size: 1.3em;
  font-weight: bold;
  padding-bottom: 8px;
}
.about .second-view .about-title p {
  font-size: 0.8em;
}
.about .second-view .about-title .title_line {
  position: relative;
  margin: 10px 0;
  width: 120px;
  height: 1px;
  display: inline-block;
}
.about .second-view .about-title .title_line .title_line_gray {
  position: absolute;
  background: #d2d2d2;
  width: 120px;
  height: 1px;
}
.about .second-view .about-title .title_line .title_line_blue {
  position: absolute;
  background: #436D7E;
  width: 20px;
  height: 1px;
}
.about .message {
  width: 90%;
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
}
.about .message .message_en {
  font-size: 1.3em;
  padding: 10px;
  letter-spacing: 0.1em;
}
.about .message .message_name {
  font-size: 1em;
  letter-spacing: 0.1em;
}
.about .message .title_line {
  position: relative;
  margin: 10px 0;
  width: 250px;
  height: 1px;
  display: inline-block;
}
.about .message .title_line .title_line_gray {
  position: absolute;
  background: #d2d2d2;
  width: 250px;
  height: 1px;
}
.about .message .title_line .title_line_blue {
  position: absolute;
  background: #436D7E;
  width: 30px;
  height: 1px;
}
.about .message .message-box .message-photo {
  display: none;
}
.about .message .message-box .message-lang {
  background-color: #f9f9f9;
  width: 100%;
  padding: 15px;
  text-align: left;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  box-shadow: 5px 5px 10px #666;
  font-size: 0.8em;
}
.about .message .message-box .message-lang .message-author {
  text-align: right;
  font-size: 0.8em;
  line-height: 1.5em;
}
.about .company {
  width: 90%;
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
}
.about .company .company_en {
  font-size: 1.3em;
  padding: 10px;
  letter-spacing: 0.1em;
}
.about .company .company_jp {
  font-size: 1em;
  letter-spacing: 0.1em;
}
.about .company .title_line {
  margin: 0 auto;
  position: relative;
  margin: 10px 0;
  width: 250px;
  height: 1px;
  display: inline-block;
}
.about .company .title_line .title_line_gray {
  position: absolute;
  background: #d2d2d2;
  width: 250px;
  height: 1px;
}
.about .company .title_line .title_line_blue {
  position: absolute;
  background: #436D7E;
  width: 30px;
  height: 1px;
}
.about .company table {
  width: 100%;
  margin-top: 30px;
}
.about .company table tbody {
  text-align: center;
  line-height: 1.5em;
}
.about .company table tbody tr {
  border-bottom: 1px solid #d1d1d1;
}
.about .company table tbody tr th {
  width: 30%;
  background-color: #f1f1f1;
  font-size: 0.8em;
  vertical-align: middle;
}
.about .company table tbody tr td {
  width: 70%;
  padding: 10px;
  font-size: 0.8em;
  text-align: left;
}
.about .company table tbody tr td a {
  text-decoration: underline;
}
.about .company table tbody tr:first-child {
  border-top: 1px solid #d1d1d1;
}
.about .history {
  width: 90%;
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
}
.about .history .history_en {
  font-size: 1.3em;
  padding: 10px;
  letter-spacing: 0.1em;
}
.about .history .history_jp {
  font-size: 1em;
  letter-spacing: 0.1em;
}
.about .history .title_line {
  margin: 0 auto;
  position: relative;
  margin: 10px 0;
  width: 250px;
  height: 1px;
  display: inline-block;
}
.about .history .title_line .title_line_gray {
  position: absolute;
  background: #d2d2d2;
  width: 250px;
  height: 1px;
}
.about .history .title_line .title_line_blue {
  position: absolute;
  background: #436D7E;
  width: 30px;
  height: 1px;
}
.about .history table {
  width: 100%;
  text-align: left;
  margin-top: 30px;
}
.about .history table tbody tr th {
  width: 18%;
  padding: 5px;
  font-size: 0.6em;
  text-align: left;
  letter-spacing: 0.1em;
  line-height: 1.5em;
}
.about .history table tbody tr td {
  width: 82%;
  padding: 5px;
  font-size: 0.6em;
  letter-spacing: 0.1em;
  line-height: 1.5em;
}
.about .history table tbody tr:nth-child(2n+1) {
  background-color: #f1f1f1;
}
.about .access {
  width: 90%;
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
}
.about .access .access_en {
  font-size: 1.3em;
  padding: 10px;
  letter-spacing: 0.1em;
}
.about .access .access_jp {
  font-size: 1em;
  letter-spacing: 0.1em;
}
.about .access .title_line {
  margin: 0 auto;
  position: relative;
  margin: 10px 0;
  width: 250px;
  height: 1px;
  display: inline-block;
}
.about .access .title_line .title_line_gray {
  position: absolute;
  background: #d2d2d2;
  width: 250px;
  height: 1px;
}
.about .access .title_line .title_line_blue {
  position: absolute;
  background: #436D7E;
  width: 30px;
  height: 1px;
}
.about .access .access-map {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .about .second-view {
    height: 350px;
  }
  .about .second-view .about-title {
    position: absolute;
    bottom: 30%;
    right: 12%;
    color: #fff;
    letter-spacing: 0.1em;
  }
  .about .second-view .about-title h2 {
    font-size: 2em;
    font-weight: bold;
    padding-bottom: 20px;
  }
  .about .second-view .about-title p {
    font-size: 1em;
  }
  .about .second-view .about-title .title_line {
    margin: 10px 0;
    width: 250px;
  }
  .about .second-view .about-title .title_line .title_line_gray {
    width: 250px;
  }
  .about .second-view .about-title .title_line .title_line_blue {
    width: 30px;
  }
  .about .message {
    width: 80%;
    margin: 50px auto;
    position: relative;
  }
  .about .message .message_en {
    font-size: 2em;
  }
  .about .message .message_name {
    font-size: 1em;
  }
  .about .message .title_line {
    margin: 10px 0;
    width: 250px;
  }
  .about .message .title_line .title_line_gray {
    width: 250px;
  }
  .about .message .title_line .title_line_blue {
    width: 30px;
  }
  .about .message .message-box {
    margin-top: 60px;
  }
  .about .message .message-box .message-photo {
    display: block;
    width: 58%;
    height: 500px;
  }
  .about .message .message-box .message-photo img {
    width: 100%;
    object-fit: cover;
    height: 100%;
  }
  .about .message .message-box .message-lang {
    position: absolute;
    width: 55%;
    bottom: 10%;
    height: auto;
    right: 0;
    letter-spacing: 0.1em;
    white-space: wrap;
    overflow: hidden;
    line-height: 2em;
    font-size: 1em;
  }
  .about .message .message-box .message-lang p {
    font-size: 10px;
  }
  .about .message .message-box .message-lang .message-author {
    font-size: 0.8em;
    line-height: 1.5em;
  }
  .about .company {
    width: 60%;
    padding: 50px 0;
  }
  .about .company .company_en {
    font-size: 2em;
  }
  .about .company table {
    margin-top: 50px;
  }
  .about .company table tbody {
    text-align: center;
    line-height: 1.5em;
  }
  .about .company table tbody tr th {
    width: 30%;
    background-color: #f1f1f1;
    padding: 20px 0 20px 20px;
    font-size: 0.8em;
    vertical-align: middle;
  }
  .about .company table tbody tr td {
    width: 70%;
    padding: 20px;
    font-size: 0.8em;
    text-align: left;
  }
  .about .company table tbody tr td a {
    text-decoration: underline;
  }
  .about .company table tbody tr:first-child {
    border-top: 1px solid #d1d1d1;
  }
  .about .history {
    width: 80%;
    padding: 50px 0;
  }
  .about .history .history_en {
    font-size: 2em;
  }
  .about .history table {
    margin-top: 50px;
  }
  .about .history table tbody tr th {
    width: 15%;
    padding: 20px 0 20px 20px;
    font-size: 0.8em;
    text-align: left;
  }
  .about .history table tbody tr td {
    width: 85%;
    padding: 20px 20px 20px 0;
    font-size: 0.8em;
  }
  .about .access {
    width: 80%;
    padding: 50px 0;
  }
  .about .access .access_en {
    font-size: 2em;
  }
  .about .access .access-map {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .about .message .message-box .message-lang p {
    font-size: 13px;
  }
}
.wrapper-contact {
  width: 100%;
  padding-top: 70px;
}
.wrapper-contact .top-cotact {
  width: 100%;
  height: 150px;
  align-items: center;
  border-bottom: 1px solid #d1d1d1;
}
.wrapper-contact .top-cotact img {
  width: 100%;
  object-fit: cover;
  vertical-align: bottom;
  height: 100%;
}
.wrapper-contact .contact-messge {
  margin: 30px auto;
  width: 100%;
  text-align: center;
}
.wrapper-contact .contact-messge .message_en {
  font-size: 1.3em;
  padding: 10px;
  letter-spacing: 0.1em;
}
.wrapper-contact .contact-messge .message_jp {
  font-size: 1em;
  letter-spacing: 0.1em;
}
.wrapper-contact .contact-messge .title_line {
  position: relative;
  margin: 10px 0;
  width: 250px;
  height: 1px;
  display: inline-block;
}
.wrapper-contact .contact-messge .title_line .title_line_gray {
  position: absolute;
  background: #d2d2d2;
  width: 250px;
  height: 1px;
}
.wrapper-contact .contact-messge .title_line .title_line_blue {
  position: absolute;
  background: #436D7E;
  width: 30px;
  height: 1px;
}
.wrapper-contact .contact-messge .message-thanks {
  width: 90%;
  margin: 0 auto;
  padding-top: 30px;
  line-height: 1.4em;
}
.wrapper-contact .policy {
  width: 90%;
  margin: 50px auto 0;
  text-align: center;
}
.wrapper-contact .policy .policy_en {
  font-size: 1.3em;
  padding: 10px;
  letter-spacing: 0.1em;
}
.wrapper-contact .policy .policy_jp {
  font-size: 1em;
  letter-spacing: 0.1em;
}
.wrapper-contact .policy .title_line {
  position: relative;
  margin: 10px 0;
  width: 250px;
  height: 1px;
  display: inline-block;
}
.wrapper-contact .policy .title_line .title_line_gray {
  position: absolute;
  background: #d2d2d2;
  width: 250px;
  height: 1px;
}
.wrapper-contact .policy .title_line .title_line_blue {
  position: absolute;
  background: #436D7E;
  width: 30px;
  height: 1px;
}
.wrapper-contact .policy .policy-cont {
  padding: 30px 0;
  text-align: left;
}
.wrapper-contact .policy .policy-cont h4 {
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 1em;
  padding: 20px 0;
}
.wrapper-contact .policy .policy-cont h4 p {
  font-weight: normal;
  font-size: 0.8em;
  margin: 10px 0;
}

#cf-tbl {
  width: 90%;
  margin: 0 auto;
}
#cf-tbl table {
  width: 100%;
  border: solid #ccc;
  border-width: 1px;
  color: #444;
}
#cf-tbl table th,
#cf-tbl table td {
  padding: 0.5em;
  text-align: left;
  border: solid #ccc;
  border-width: 1px;
  vertical-align: top;
  vertical-align: middle;
}
#cf-tbl table th {
  width: 35%;
  background: #eee;
}

/*「必須」文字デザイン*/
.required {
  font-size: 0.8em;
  padding: 3px;
  background: #436D7E;
  color: #fff;
  border-radius: 3px;
  margin-left: 5px;
}

/* 入力項目を見やすく */
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  padding: 8px 15px;
  margin-right: 10px;
  margin-top: 10px;
  border: 1px solid #d0d5d8;
  border-radius: 3px;
  background-color: #eff1f5;
}

/* 「送信する」ボタン */
.wpcf7-form-control.wpcf7-submit {
  display: block;
  padding: 15px;
  width: 400px;
  background: #1E8797;
  color: #fff;
  font-size: 18px;
  border-radius: 10px;
  margin: 15px auto 0;
  border: 1px solid #d1d1d1;
}

.wpcf7-form-control.wpcf7-submit:hover {
  color: #fff;
  border: 1px solid #436D7E;
  opacity: 0.8;
  transition: 1ms;
  cursor: pointer;
}

.wpcf7-list-item {
  line-height: 1.3em;
}

@media screen and (max-width: 768px) {
  #cf-tbl table,
#cf-tbl table tbody,
#cf-tbl table tr,
#cf-tbl table tr th,
#cf-tbl table tr td {
    display: block;
  }

  #cf-tbl table {
    width: 100%;
    margin: 0 auto;
    border-width: 0 0 1px 0;
  }

  #cf-tbl table tr th,
#cf-tbl table tr td {
    width: 100%;
    padding: 3% 5%;
  }

  #cf-tbl table tr td {
    border-width: 0px 1px 0px 1px;
  }

  .wpcf7-form-control.has-spinner.wpcf7-submit {
    width: 250px;
  }
}
/* エラーメッセージを見やすく */
span.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
  color: #1E8797;
  font-weight: 600;
}

.wpcf7 form.invalid .wpcf7-response-output {
  color: #1E8797;
  border-color: #0075FF;
}

span.wpcf7-not-valid-tip {
  margin: 3px;
}

@media screen and (min-width: 768px) {
  #cf-tbl {
    border: 1px solid #ccc;
    padding: 10px 0;
    width: 80%;
  }

  #cf-tbl table {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .wrapper-contact .top-cotact {
    height: 350px;
  }
  .wrapper-contact .policy {
    width: 80%;
  }
  .wrapper-contact .policy .policy_en {
    font-size: 2em;
  }
  .wrapper-contact .policy .policy-cont {
    padding: 50px 0;
  }
  .wrapper-contact .contact-messge .message_en {
    font-size: 2em;
  }
  .wrapper-contact .contact-messge .message_jp {
    font-size: 1em;
  }
  .wrapper-contact .contact-messge .message-thanks {
    padding-top: 50px;
    line-height: 2em;
  }
}
.wrapper-service {
  width: 100%;
  padding-top: 70px;
}
.wrapper-service .top-service {
  width: 100%;
  height: 150px;
  position: relative;
  margin-bottom: 30px;
}
.wrapper-service .top-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wrapper-service .top-service .service-title {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.wrapper-service .top-service .service-title .service_en {
  font-size: 1.3em;
  padding-bottom: 8px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.wrapper-service .top-service .service-title .service_jp {
  font-size: 0.8em;
  letter-spacing: 0.1em;
}
.wrapper-service .top-service .service-title .title_line {
  position: relative;
  margin: 10px 0;
  width: 120px;
  height: 1px;
  display: inline-block;
}
.wrapper-service .top-service .service-title .title_line .title_line_gray {
  position: absolute;
  background: #d2d2d2;
  width: 120px;
  height: 1px;
}
.wrapper-service .top-service .service-title .title_line .title_line_blue {
  position: absolute;
  background: #436D7E;
  width: 20px;
  height: 1px;
}
.wrapper-service .make {
  width: 80%;
  height: 50vh;
  position: relative;
  margin: 0 auto 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
.wrapper-service .make h3 {
  letter-spacing: 0.1em;
  font-size: 1.2em;
  line-height: 1.2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wrapper-service .next-contact {
  width: 80%;
  margin: 0 auto;
  letter-spacing: 0.1em;
  padding-bottom: 30px;
}
.wrapper-service .next-contact h3 {
  text-align: center;
  font-size: 1.3em;
  padding: 10px 0;
}
.wrapper-service .next-contact p {
  text-align: center;
  padding: 10px 0;
  line-height: 1.2em;
  font-size: 0.8em;
  letter-spacing: 0.1em;
}
.wrapper-service .next-contact .contact-session ul {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8em;
}
.wrapper-service .next-contact .contact-session ul .contact-form {
  margin-left: 10px;
}
.wrapper-service .next-contact .contact-session ul .contact-form a {
  display: block;
  padding: 10px 10px;
  border: 1px solid #d7d7d7;
  color: #000;
}
.wrapper-service .next-contact .contact-session ul .contact-form a:hover {
  background: #436D7E;
  color: #fff;
  border: 1px solid #fff;
  transition: 0.5s ease-in-out;
}

@media screen and (min-width: 768px) {
  .wrapper-service .top-service {
    height: 350px;
    margin-bottom: 50px;
  }
  .wrapper-service .top-service .service-title .service_en {
    font-size: 2em;
  }
  .wrapper-service .top-service .service-title .service_jp {
    font-size: 1em;
  }
  .wrapper-service .top-service .service-title .title_line {
    margin: 10px 0;
    width: 250px;
  }
  .wrapper-service .top-service .service-title .title_line .title_line_gray {
    width: 250px;
  }
  .wrapper-service .top-service .service-title .title_line .title_line_blue {
    width: 30px;
  }
  .wrapper-service .make {
    width: 80%;
    height: 50vh;
    position: relative;
    margin: 0 auto 50px;
  }
  .wrapper-service .make h3 {
    letter-spacing: 0.1em;
    line-height: 1.2em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .wrapper-service .service-cont .service-kind ul {
    display: flex;
    justify-content: center;
  }
  .wrapper-service .service-cont .service-kind ul .service-type {
    margin-right: 2%;
    display: block;
    margin-bottom: 0;
  }
  .wrapper-service .service-cont .service-kind ul .service-type .type-photo {
    margin-bottom: 2rem;
    width: 100%;
    padding-right: 0;
  }
  .wrapper-service .service-cont .service-kind ul .service-type .type-text {
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1.5em;
    width: 100%;
    font-size: 1em;
  }
  .wrapper-service .service-cont .service-kind ul .service-type .type-text .main {
    margin-bottom: 1rem;
  }
  .wrapper-service .service-cont .service-kind ul .service-type .type-text .sub {
    margin-bottom: 3rem;
    font-size: 1em;
  }
  .wrapper-service .next-contact {
    padding: 50px 0;
  }
  .wrapper-service .next-contact h3 {
    text-align: center;
    font-size: 1.3em;
    padding: 10px 0;
  }
  .wrapper-service .next-contact p {
    line-height: 1.5em;
    font-size: 1em;
  }
  .wrapper-service .next-contact .contact-session ul {
    font-size: 1em;
  }
  .wrapper-service .next-contact .contact-session ul .tel-form {
    margin-right: 10px;
  }
  .wrapper-service .next-contact .contact-session ul .contact-form {
    margin-left: 10px;
  }
  .wrapper-service .next-contact .contact-session ul .contact-form a {
    padding: 15px 20px;
  }
  .wrapper-service .service-flow .service-flow_en {
    font-size: 2em;
  }
  .wrapper-service .service-flow .flow-draw {
    width: 70%;
  }
  .wrapper-service .service-flow .flow-draw .flow-draw_step {
    font-size: 1em;
  }
}
* {
  box-sizing: border-box;
}

.item-wrapper {
  padding-top: 70px;
}
.item-wrapper .item-view {
  width: 100%;
  height: 150px;
  position: relative;
}
.item-wrapper .item-view img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.item-wrapper .item-view .item-title {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.item-wrapper .item-view .item-title .item_en {
  font-size: 1.3em;
  padding: 10px;
  letter-spacing: 0.1em;
}
.item-wrapper .item-view .item-title .item_jp {
  font-size: 1em;
  letter-spacing: 0.1em;
}
.item-wrapper .item-view .item-title .title_line {
  position: relative;
  margin: 10px 0;
  width: 120px;
  height: 1px;
  display: inline-block;
}
.item-wrapper .item-view .item-title .title_line .title_line_gray {
  position: absolute;
  background: #d2d2d2;
  width: 120px;
  height: 1px;
}
.item-wrapper .item-view .item-title .title_line .title_line_blue {
  position: absolute;
  background: #436D7E;
  width: 20px;
  height: 1px;
}
.item-wrapper .pickup {
  padding: 30px 0;
  text-align: center;
}
.item-wrapper .pickup h3 {
  font-size: 1.3em;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.item-wrapper .archive {
  width: 100%;
}
.item-wrapper .archive ul {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.item-wrapper .archive ul .item-box {
  display: block;
  position: relative;
  border-bottom: solid 1px #d1d1d1;
}
.item-wrapper .archive ul .item-box .product {
  position: relative;
}
.item-wrapper .archive ul .item-box .product .item-photo {
  padding-top: 30px;
}
.item-wrapper .archive ul .item-box .product .item-photo .photo-area {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
  overflow: hidden;
}
.item-wrapper .archive ul .item-box .product .item-photo .photo-area img {
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  transition-duration: 0.3s;
}
.item-wrapper .archive ul .item-box .product .item-photo .photo-area:hover {
  opacity: 0.7;
  transition-duration: 0.3s;
}
.item-wrapper .archive ul .item-box .product .item-photo .modal {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
}
.item-wrapper .archive ul .item-box .product .item-photo .modal .modal-bg {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  position: relative;
}
.item-wrapper .archive ul .item-box .product .item-photo .modal .modal-bg .modal-window {
  width: 90%;
  height: 80vh;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 5px;
  z-index: 1001;
}
.item-wrapper .archive ul .item-box .product .item-photo .modal .modal-bg .modal-window .close {
  color: #666;
  font-size: 24px;
  cursor: pointer;
  text-align: right;
  margin-right: 10px;
}
.item-wrapper .archive ul .item-box .product .item-photo .modal .modal-bg .modal-window .modal-frame {
  width: 90%;
  height: 70vh;
  margin: 0 5%;
}
.item-wrapper .archive ul .item-box .product .item-info {
  padding: 0 5px 25px 5px;
  width: 100%;
}
.item-wrapper .archive ul .item-box .product .item-info .title {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 0.9em;
}
.item-wrapper .archive ul .item-box .product .item-info .color {
  margin-bottom: 5px;
  font-size: 0.8em;
}
.item-wrapper .archive ul .item-box .product .item-info .size {
  margin-bottom: 5px;
  font-size: 0.8em;
}
.item-wrapper .archive ul .item-box .product .item-info a {
  display: inline-block;
  padding: 5px 10px;
  background-color: #436D7E;
  color: #fff;
  border-radius: 5px;
  font-size: 0.9em;
}
.item-wrapper .archive ul .item-box .product .item-info .show {
  text-align: right;
}
.item-wrapper .archive ul .item-box .product .item-info p {
  letter-spacing: 0.05em;
  font-size: 0.8em;
}

.pagination a {
  display: block;
  width: auto;
  margin: 4px;
  padding: 8px;
  background-color: #fff;
  text-decoration: none;
  text-align: center;
  line-height: 16px;
  color: #666;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0 50px;
  position: relative;
  font-size: 13px;
  color: #666;
}

.pagination a:hover {
  background-color: #436D7E;
  color: #fff;
}

@media screen and (min-width: 425px) {
  .item-wrapper .archive ul {
    width: 90%;
  }
  .item-wrapper .archive ul .item-box {
    width: 80%;
  }
}
@media screen and (min-width: 568px) {
  .item-wrapper .archive ul .item-box {
    width: 45%;
  }
}
@media screen and (min-width: 768px) {
  .item-wrapper .item-view {
    height: 350px;
  }
  .item-wrapper .item-view .item-title {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .item-wrapper .item-view .item-title .item_en {
    font-size: 2em;
    padding: 10px;
    font-weight: bold;
  }
  .item-wrapper .item-view .item-title .item_jp {
    font-size: 1em;
  }
  .item-wrapper .item-view .item-title .title_line {
    margin: 10px 0;
    width: 250px;
  }
  .item-wrapper .item-view .item-title .title_line .title_line_gray {
    width: 250px;
  }
  .item-wrapper .item-view .item-title .title_line .title_line_blue {
    width: 30px;
  }
  .item-wrapper .archive ul {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .item-wrapper .archive ul .item-box {
    display: block;
    position: relative;
    margin-bottom: 30px;
    width: 45%;
  }
  .item-wrapper .archive ul .item-box .product .item-info {
    padding: 0 0 25px 0;
  }

  .pagination {
    margin: 100px 0 50px;
    font-size: 1em;
  }
}
@media screen and (min-width: 1024px) {
  .item-wrapper .archive .item .item-box {
    width: 30%;
  }
  .item-wrapper .archive .item .item-box .product .item-photo {
    padding-top: 30px;
  }
  .item-wrapper .archive .item .item-box .product .item-photo .photo-area {
    margin-bottom: 10px;
    overflow: hidden;
  }
  .item-wrapper .archive .item::after {
    display: block;
    content: "";
    width: 30%;
  }
}
@media screen and (min-width: 1440px) {
  .item-wrapper .archive ul .item-box {
    width: 30%;
  }
  .item-wrapper .archive ul .item-box .product .item-info .title {
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 1em;
  }
  .item-wrapper .archive ul .item-box .product .item-info .color {
    margin-bottom: 5px;
    font-size: 0.9em;
    line-height: 1.1em;
  }
  .item-wrapper .archive ul .item-box .product .item-info .size {
    margin-bottom: 5px;
    font-size: 0.9em;
    line-height: 1.1em;
  }
  .item-wrapper .archive ul .item-box .product .item-info a {
    display: inline-block;
    padding: 5px 10px;
    background-color: #436D7E;
    color: #fff;
    border-radius: 5px;
    font-size: 0.9em;
  }
  .item-wrapper .archive ul .item-box .product .item-info .show {
    bottom: 0;
    right: 0;
  }
  .item-wrapper .archive ul .item-box .product .item-info p {
    letter-spacing: 0.05em;
    font-size: 0.8em;
  }
}
.shop {
  width: 100%;
  padding-top: 70px;
}
.shop .shop-view {
  width: 100%;
  height: 150px;
}
.shop .shop-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  object-position: 50% 100%;
}
.shop .shop-select {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}
.shop .shop-select .shop-select_en {
  font-size: 1.3em;
  padding: 10px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.shop .shop-select .shop-select_jp {
  font-size: 1em;
  letter-spacing: 0.1em;
}
.shop .shop-select .title_line {
  position: relative;
  margin: 10px 0;
  width: 250px;
  height: 1px;
  display: inline-block;
}
.shop .shop-select .title_line .title_line_gray {
  position: absolute;
  background: #d2d2d2;
  width: 250px;
  height: 1px;
}
.shop .shop-select .title_line .title_line_blue {
  position: absolute;
  background: #436D7E;
  width: 30px;
  height: 1px;
}
.shop .shop-select .btn-next {
  color: #202020;
  background-color: rgba(32, 32, 32, 0.02);
  border-radius: 5px;
  position: relative;
  display: block;
}
.shop .shop-select .btn-next p {
  padding: 30px;
  margin: 50px 0;
  font-size: 0.8em;
}
.shop .shop-select .btn-next p:hover {
  color: #436D7E;
  transition: 0.4s;
}
.shop .shop-select .btn-next span {
  font-size: 30px;
  color: #dadbdf;
  position: absolute;
  left: 30px;
  top: -20px;
  font-style: italic;
  font-weight: bold;
}
.shop .shop-select .img-next {
  position: absolute;
  right: 20px;
  top: 30px;
  height: 15px;
  color: #436D7E;
}

@media screen and (min-width: 425px) {
  .shop .shop-view {
    height: 200px;
  }
}
@media screen and (min-width: 768px) {
  .shop .shop-view {
    height: 300px;
  }
  .shop .shop-select {
    width: 60%;
  }
  .shop .shop-select .shop-select_en {
    font-size: 2em;
  }
  .shop .shop-select .shop-select_jp {
    font-size: 1em;
  }
  .shop .shop-select .btn-next p {
    padding: 30px;
    margin: 50px 0;
    font-size: 1.3em;
  }
  .shop .shop-select .btn-next span {
    font-size: 40px;
    left: 30px;
    top: -30px;
  }
}
@media screen and (min-width: 1024px) {
  .shop .shop-view {
    height: 350px;
  }
}
* {
  box-sizing: border-box;
}

html,
body {
  line-height: 1;
  font-family: "Roboto", serif;
}

.single-wrapper {
  width: 100%;
  height: auto;
  padding-top: 70px;
}
.single-wrapper .single-cont {
  width: 95%;
  margin: 30px auto;
}
.single-wrapper .single-cont .single-box {
  width: 100%;
}
.single-wrapper .single-cont .single-box .comment {
  background: #6a6a6a;
  text-align: center;
  padding: 10px 0;
  margin: 15px 0;
  color: #fff;
  font-size: 0.8em;
}
.single-wrapper .single-cont .single-box .comment span {
  align-items: center;
}
.single-wrapper .single-cont .single-box .simple_feature {
  margin: 15px 0;
  line-height: 1.2em;
}
.single-wrapper .single-cont .single-box .single-box_area {
  width: 100%;
  margin: 30px 0;
}
.single-wrapper .single-cont .single-box .single-box_area .boxarea {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.single-wrapper .single-cont .single-box .single-box_area .boxarea .left-boxarea {
  width: 18%;
}
.single-wrapper .single-cont .single-box .single-box_area .boxarea .left-boxarea ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.single-wrapper .single-cont .single-box .single-box_area .boxarea .left-boxarea ul li {
  width: 45%;
}
.single-wrapper .single-cont .single-box .single-box_area .boxarea .left-boxarea ul li img {
  display: block;
  border: 1px solid #666;
  margin: 5px 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.single-wrapper .single-cont .single-box .single-box_area .boxarea .main-boxarea {
  width: 80%;
}
.single-wrapper .single-cont .single-box .single-box_area .boxarea .main-boxarea .img-mainwrap {
  width: 100%;
}
.single-wrapper .single-cont .single-box .single-box_area .boxarea .main-boxarea .img-mainwrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.single-wrapper .single-cont .single-box .single-box_area .boxarea .right-boxarea {
  width: 100%;
}
.single-wrapper .single-cont .single-box .single-box_area .boxarea .right-boxarea .single-color {
  line-height: 1.4;
  font-size: 0.8em;
}
.single-wrapper .single-cont .single-box .single-box_area .boxarea .right-boxarea .color-style {
  display: flex;
  flex-wrap: wrap;
}
.single-wrapper .single-cont .single-box .single-box_area .boxarea .right-boxarea .color-style img {
  width: 45px;
  height: 45px;
  display: block;
  padding: 5px;
  border: 1px solid #666;
  margin: 5px;
}
.single-wrapper .single-cont .single-box .single-box_area .boxarea .right-boxarea .single-size {
  line-height: 1.4;
  font-size: 0.8em;
}
.single-wrapper .single-cont .single-box .single-box_area .boxarea .right-boxarea .size-taxno {
  display: flex;
  flex-wrap: wrap;
}
.single-wrapper .single-cont .single-box .single-box_area .boxarea .right-boxarea .size-taxno li {
  padding: 8px 8px;
  margin: 5px;
  color: #fff;
  background-color: #666;
}
.single-wrapper .single-cont .single-box .single-box_area .boxarea .right-boxarea .item-version {
  width: 100%;
}
.single-wrapper .single-cont .single-box .single-box_area .boxarea .right-boxarea .item-version img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.single-wrapper .single-cont .single-box .single-main .single-title {
  font-size: 1.2em;
  line-height: 1.4;
}
.single-wrapper .single-cont .single-box .single-main .small-feature {
  margin: 10px 0;
  color: #000;
}
.single-wrapper .single-cont .single-box .single-main .single-box {
  width: 100%;
  height: 100%;
}
.single-wrapper .single-cont .single-box .single-main .single-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.single-wrapper .single-cont .about-item {
  width: 100%;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.single-wrapper .single-cont .about-item h3 {
  font-size: 1.2em;
}
.single-wrapper .single-cont .about-item .about-item_type {
  margin: 20px 0;
  border-bottom: 1px solid #666;
}
.single-wrapper .single-cont .about-item .about-item_type .panel {
  padding: 25px 25px 25px 10px;
  border-top: 1px solid #666;
}
.single-wrapper .single-cont .about-item .about-item_type .panel .panel-title {
  align-items: center;
  position: relative;
}
.single-wrapper .single-cont .about-item .about-item_type .panel .panel-title p .panel-icon {
  background: url("../image/icon01.png") no-repeat;
  background-size: cover;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
}
.single-wrapper .single-cont .about-item .about-item_type .panel .panel-title:hover {
  text-decoration: underline;
}
.single-wrapper .single-cont .about-item .about-item_type .panel.open p .panel-icon {
  background: url("../image/icon02.png") no-repeat;
  background-size: cover;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
}
.single-wrapper .single-cont .about-item .about-item_type .panel-cont {
  display: none;
  padding: 5px;
  font-size: 0.8em;
}

@media screen and (min-width: 768px) {
  .single-wrapper .single-cont {
    width: 90%;
    padding: 5px;
  }
  .single-wrapper .single-cont .single-box .comment {
    font-size: 1em;
  }
  .single-wrapper .single-cont .single-box .simple_feature {
    line-height: 1.4em;
  }
  .single-wrapper .single-cont .single-box .single-main .single-box_area img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .single-wrapper .single-cont .single-box .single-main .single-box_area .boxarea {
    display: flex;
    justify-content: space-between;
  }
  .single-wrapper .single-cont .single-box .single-main .single-box_area .boxarea .left-boxarea {
    width: 5%;
  }
  .single-wrapper .single-cont .single-box .single-main .single-box_area .boxarea .left-boxarea ul {
    display: block;
  }
  .single-wrapper .single-cont .single-box .single-main .single-box_area .boxarea .left-boxarea ul li {
    width: 100%;
  }
  .single-wrapper .single-cont .single-box .single-main .single-box_area .boxarea .left-boxarea ul li img {
    display: block;
    border: 1px solid #666;
    margin: 10px 0;
  }
  .single-wrapper .single-cont .single-box .single-main .single-box_area .boxarea .main-boxarea {
    width: 60%;
  }
  .single-wrapper .single-cont .single-box .single-main .single-box_area .boxarea .right-boxarea {
    width: 30%;
  }
  .single-wrapper .single-cont .single-box .single-main .single-box_area .boxarea .right-boxarea .single-color {
    line-height: 1.4;
    font-size: 1em;
  }
  .single-wrapper .single-cont .single-box .single-main .single-box_area .boxarea .right-boxarea .color-style {
    display: flex;
    flex-wrap: wrap;
    font-size: 1em;
  }
  .single-wrapper .single-cont .single-box .single-main .single-box_area .boxarea .right-boxarea .color-style img {
    width: 50px;
    height: 50px;
    display: block;
    padding: 5px;
    border: 1px solid #666;
    margin: 10px;
  }
  .single-wrapper .single-cont .single-box .single-main .single-box_area .boxarea .right-boxarea .single-size {
    line-height: 1.4;
    font-size: 1em;
  }
  .single-wrapper .single-cont .single-box .single-main .single-box_area .boxarea .right-boxarea .size-taxno {
    display: flex;
    flex-wrap: wrap;
  }
  .single-wrapper .single-cont .single-box .single-main .single-box_area .boxarea .right-boxarea .size-taxno li {
    padding: 10px 10px;
    margin: 5px;
    color: #fff;
    background-color: #666;
  }
  .single-wrapper .single-cont .single-box .single-main .about-item {
    width: 70%;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
  .single-wrapper .single-cont .single-box .single-main .about-item h3 {
    font-size: 1.4em;
  }
  .single-wrapper .single-cont .single-box .single-main .about-item .about-item_type {
    margin: 30px 0;
    border-bottom: 1px solid #666;
  }
  .single-wrapper .single-cont .single-box .single-main .about-item .about-item_type .panel {
    padding: 25px 25px 25px 10px;
    border-top: 1px solid #666;
  }
  .single-wrapper .single-cont .single-box .single-main .about-item .about-item_type .panel .panel-title {
    align-items: center;
    position: relative;
  }
  .single-wrapper .single-cont .single-box .single-main .about-item .about-item_type .panel .panel-title p .panel-icon {
    background: url("../image/icon01.png") no-repeat;
    background-size: cover;
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
  }
  .single-wrapper .single-cont .single-box .single-main .about-item .about-item_type .panel .panel-title:hover {
    text-decoration: underline;
  }
  .single-wrapper .single-cont .single-box .single-main .about-item .about-item_type .panel.open p .panel-icon {
    background: url("../image/icon02.png") no-repeat;
    background-size: cover;
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
  }
  .single-wrapper .single-cont .single-box .single-main .about-item .about-item_type .panel-cont {
    display: none;
    padding: 15px;
    font-size: 1em;
  }
}
.mv-wrapper {
  padding-top: 70px;
}
.mv-wrapper .mv-view {
  width: 100%;
  height: 150px;
  position: relative;
}
.mv-wrapper .mv-view img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.mv-wrapper .mv-view .mv-title {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.mv-wrapper .mv-view .mv-title .mv_en {
  font-size: 1.3em;
  padding: 10px;
  letter-spacing: 0.1em;
}
.mv-wrapper .mv-view .mv-title .mv_jp {
  font-size: 1em;
  letter-spacing: 0.1em;
}
.mv-wrapper .mv-view .mv-title .title_line {
  position: relative;
  margin: 10px 0;
  width: 120px;
  height: 1px;
  display: inline-block;
}
.mv-wrapper .mv-view .mv-title .title_line .title_line_gray {
  position: absolute;
  background: #d2d2d2;
  width: 120px;
  height: 1px;
}
.mv-wrapper .mv-view .mv-title .title_line .title_line_blue {
  position: absolute;
  background: #436D7E;
  width: 20px;
  height: 1px;
}
.mv-wrapper .pickup {
  padding: 30px 0;
  text-align: center;
}
.mv-wrapper .pickup h3 {
  font-size: 1.3em;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.archive-mv {
  width: 100%;
}
.archive-mv .fashion-mv {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}
.archive-mv .fashion-mv .mv-box {
  width: 100%;
  display: block;
  margin-bottom: 30px;
  border-bottom: solid 1px #d1d1d1;
  position: relative;
}
.archive-mv .fashion-mv .mv-box .mv-main {
  position: relative;
}
.archive-mv .fashion-mv .mv-box .mv-info .mv-photo {
  padding-top: 30px;
  display: flex;
}
.archive-mv .fashion-mv .mv-box .mv-info .mv-photo .photo-area {
  margin-bottom: 10px;
  border-radius: 50%;
}
.archive-mv .fashion-mv .mv-box .mv-info .mv-photo .photo-area img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.archive-mv .fashion-mv .mv-box .mv-info .mv-photo .model-right {
  margin-left: 10px;
}
.archive-mv .fashion-mv .mv-box .mv-info .title {
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 1em;
}
.archive-mv .fashion-mv .mv-box .mv-info .brand-name {
  margin-left: 10px;
  margin-bottom: 5px;
  font-size: 0.9em;
  line-height: 1.1em;
}
.archive-mv .fashion-mv .mv-box .mv-info .model-name {
  margin-left: 10px;
  margin-bottom: 5px;
  font-size: 0.9em;
  line-height: 1.1em;
}

.pagination a {
  display: block;
  width: auto;
  margin: 4px;
  padding: 8px;
  background-color: #fff;
  text-decoration: none;
  text-align: center;
  line-height: 16px;
  color: #666;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0 50px;
  position: relative;
  font-size: 13px;
  color: #666;
}

.pagination a:hover {
  background-color: #436D7E;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .mv-wrapper .mv-view {
    height: 350px;
  }
  .mv-wrapper .mv-view .mv-title {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .mv-wrapper .mv-view .mv-title .mv_en {
    font-size: 2em;
    padding: 10px;
    font-weight: bold;
  }
  .mv-wrapper .mv-view .mv-title .mv_jp {
    font-size: 1em;
  }
  .mv-wrapper .mv-view .mv-title .title_line {
    margin: 10px 0;
    width: 250px;
  }
  .mv-wrapper .mv-view .mv-title .title_line .title_line_gray {
    width: 250px;
  }
  .mv-wrapper .mv-view .mv-title .title_line .title_line_blue {
    width: 30px;
  }
  .mv-wrapper .archive-mv .fashion-mv {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .mv-wrapper .archive-mv .fashion-mv .mv-box {
    display: block;
    margin-bottom: 30px;
    width: 45%;
  }

  .pagination {
    margin: 100px 0 50px;
    font-size: 1em;
  }
}
@media screen and (min-width: 1440px) {
  .mv-wrapper .archive-mv {
    width: 100%;
  }
  .mv-wrapper .archive-mv .fashion-mv {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
  }
  .mv-wrapper .archive-mv .fashion-mv .mv-box {
    width: 30%;
    display: block;
    margin-bottom: 50px;
    border-bottom: solid 1px #d1d1d1;
    position: relative;
  }
  .mv-wrapper .archive-mv .fashion-mv .mv-box .mv-main {
    position: relative;
    overflow: hidden;
  }
  .mv-wrapper .archive-mv .fashion-mv .mv-box .mv-info .mv-photo {
    padding-top: 30px;
    display: flex;
  }
  .mv-wrapper .archive-mv .fashion-mv .mv-box .mv-info .mv-photo .photo-area {
    margin-bottom: 10px;
    border-radius: 50%;
  }
  .mv-wrapper .archive-mv .fashion-mv .mv-box .mv-info .mv-photo .photo-area img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    overflow: hidden;
  }
  .mv-wrapper .archive-mv .fashion-mv .mv-box .mv-info .mv-photo .model-right {
    margin-left: 10px;
  }
  .mv-wrapper .archive-mv .fashion-mv .mv-box .mv-info .title {
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 1em;
  }
  .mv-wrapper .archive-mv .fashion-mv .mv-box .mv-info .brand-name {
    margin-left: 10px;
    margin-bottom: 5px;
    font-size: 0.9em;
    line-height: 1.1em;
  }
  .mv-wrapper .archive-mv .fashion-mv .mv-box .mv-info .model-name {
    margin-left: 10px;
    margin-bottom: 5px;
    font-size: 0.9em;
    line-height: 1.1em;
  }
  .mv-wrapper .archive-mv .fashion-mv::after {
    display: block;
    content: "";
    width: 30%;
  }
}

/*# sourceMappingURL=style.css.map */
