@charset "utf-8";

/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2017/11/30
 */

/* !HTML5 elements
---------------------------------------------------------- */
header,
footer,
nav,
section,
aside,
article {
  display: block;
}

/* !Reseting
---------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

fieldset {
  border: none;
}

ul,
ol,
li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type="radio"]::-ms-check,
input[type="checkbox"]::-ms-check {
  display: none;
}

select,
input[type="radio"],
input[type="checkbox"],
input[type="text"],
input[type="date"],
input[type="time"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="reset"],
input[type="button"],
input[type="submit"],
textarea {
  appearance: none;
  border-radius: 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

input[type="text"]::-ms-clear,
input[type="date"]::-ms-clear,
input[type="time"]::-ms-clear,
input[type="tel"]::-ms-clear,
input[type="number"]::-ms-clear {
  display: none;
}

input[type="reset"],
input[type="button"],
input[type="submit"] {
  font-family: "M PLUS Rounded 1c", sans-serif;
  cursor: pointer;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #aaa;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #aaa;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #aaa;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #aaa;
}

*,
*:before,
*::after {
  box-sizing: border-box;
}
/* !Clearfix
---------------------------------------------------------- */
.clearfix {
  display: block;
  min-height: 1%;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

* html .clearfix {
  height: 1%;
}

/* !Layout
---------------------------------------------------------- */
html {
  overflow-y: auto;
  font-size: 62.5%;
}

html.unload,
html.no-move {
  overflow: hidden;
}

/*** タブレット 768x ~ 1200px***/
@media screen and (min-width: 768px) and (max-width: 1040px) {
  html {
    font-size: calc(100vw / 104);
  }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.6rem;
  -webkit-text-size-adjust: none;
  line-height: 1.5;
  font-weight: normal;
  color: #595959;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* !Base Fonts -------------------------------------------------------------- */
a {
  color: #595959;
  text-decoration: none;
}

/*** hover ***/
@media screen and (min-width: 960px) {
  a {
    transition: all 0.5s;
  }

  a:hover {
    text-decoration: none;
  }

  .op {
    transition: opacity 0.5s ease-out;
  }

  .op:hover {
    opacity: 0.7;
    text-decoration: none;
  }

  a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
  }

  a.hover-line,
  .hover-line a,
  a.hover-line,
  a .hover-line {
    background: linear-gradient(#595959, #595959) left bottom no-repeat;
    background-size: 0 0.1rem;
    transition: background-size 0.5s ease;
  }

  a.hover-line:hover,
  .hover-line a:hover,
  a:hover .hover-line {
    background-size: 100% 1px;
  }
}

.is-hide {
  display: none;
}

/*** 非スマホ 751px ~ ***/
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

/* !loading
---------------------------------------------------------- */
#loading {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease 8.5s;
  pointer-events: none;
}

.unload #loading {
  pointer-events: auto;
}

#loading.is-loading {
  opacity: 0;
}

#loading .loading-logo {
  width: 12.6rem;
}

#loading .loading-logo img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  #loading .loading-logo {
    width: 9.082rem;
  }
}

/* !wrapper
---------------------------------------------------------- */
#wrapper {
  width: 100%;
  word-break: break-all;
}

/* !header
---------------------------------------------------------- */
#header {
  width: 100%;
  padding: 2.5rem;
  transition: opacity 0.5s ease 1.9s;
}

.unload #header {
  opacity: 0;
}

.home #header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}

.header-inner {
  width: 100%;
  height: 9.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header-logo {
  position: fixed;
  left: 50%;
  top: 2.5rem;
  transform: translateX(-50%);
  z-index: 999;
  width: 6.5rem;
  line-height: 1;
}

.header-logo img {
  width: 100%;
}

.home .header-logo {
  position: absolute;
  top: 0;
}

.header-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22.5rem;
}

.header-links ul {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  min-width: 28.9rem;
}

.header-links ul:nth-child(1) {
  justify-content: flex-end;
}

.header-links a {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
  display: block;
}

.btn-menu {
  width: 7.4rem;
  height: 7.4rem;
  border-radius: 100%;
  background: #fff;
  box-shadow: 0 0.3rem 2rem rgba(89, 89, 89, 0.24);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  right: 4.8rem;
  top: 4.8rem;
  z-index: 9999;
  gap: 0.6rem;
  cursor: pointer;
  transition: opacity 0.5s, visibility 0.5s, gap 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.is-scroll .btn-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.btn-menu .line {
  width: 2rem;
  height: 0.2rem;
  border-radius: 0.4rem;
  background: #595959;
  transition: all 0.5s;
}

.btn-menu.is-active .line:nth-child(1) {
  transform: translateY(0.8rem) rotate(45deg);
}

.btn-menu.is-active .line:nth-child(2) {
  opacity: 0;
}

.btn-menu.is-active .line:nth-child(3) {
  transform: translateY(-0.8rem) rotate(-45deg);
}

/*** hover ***/
@media screen and (min-width: 960px) {
  .btn-menu:not(.is-active):hover {
    gap: 0.8rem;
  }
}

@media screen and (min-width: 768px) {
  .btn-menu.is-active {
    box-shadow: 0 0 0 rgba(89, 89, 89, 0.24);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media screen and (max-width: 767px) {
  #header {
    padding: 1.5rem;
  }

  .header-inner {
    height: 9.1rem;
  }

  .header-logo {
    top: 1.5rem;
    width: 6.3rem;
  }

  .header-links {
    display: none;
  }

  .btn-menu {
    width: 4.6rem;
    height: 4.6rem;
    box-shadow: 0 0.3rem 1rem rgba(89, 89, 89, 0.24);
    right: 1rem;
    top: 1rem;
    gap: 0.4rem;
  }

  .home .btn-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .btn-menu .line {
    width: 1.4rem;
  }

  .btn-menu.is-active .line:nth-child(1) {
    transform: translateY(0.6rem) rotate(45deg);
  }

  .btn-menu.is-active .line:nth-child(3) {
    transform: translateY(-0.6rem) rotate(-45deg);
  }
}

/* !global navigation
---------------------------------------------------------- */
#g-navi {
  position: fixed;
  width: 22.4rem;
  right: 4rem;
  top: 8.5rem;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s, visibility 0.5s;
}

.is-open #g-navi {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#g-navi .g-navi__inner {
  background: #fff;
  border-radius: 2.4rem;
  box-shadow: 0 0.3rem 2rem rgba(89, 89, 89, 0.24);
  padding: 3.2rem 3rem;
  position: relative;
  z-index: 2;
}

#g-navi:before {
  width: 7.4rem;
  height: 7.4rem;
  border-radius: 100%;
  background: #fff;
  box-shadow: 0 0.3rem 2rem rgba(89, 89, 89, 0.24);
  position: absolute;
  right: 0.8rem;
  top: -3.7rem;
  z-index: 1;
  content: "";
}

#g-navi ul li + li {
  margin-top: 2rem;
}

#g-navi ul li a {
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

#g-navi ul li a .jp {
  display: block;
  margin-top: 0.3rem;
}

#g-navi ul li a .en {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  display: inline-block;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9997;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s, visibility 0.5s;
}

.is-open .overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/*** hover ***/
@media screen and (min-width: 960px) {
}

@media screen and (max-width: 767px) {
  #g-navi {
    width: 23.7rem;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
  }

  #g-navi:before {
    display: none;
  }

  #g-navi .g-navi__inner {
    box-shadow: 0 0.3rem 1rem rgba(89, 89, 89, 0.24);
    padding: 3.2rem 4.6rem;
  }

  #g-navi ul li + li {
    margin-top: 1.6rem;
  }

  #g-navi ul li a .jp {
    margin-top: 0;
  }

  #g-navi ul li a .en {
    font-size: 1.4rem;
    line-height: 1.4285;
  }
}

/* !breadcrumb
---------------------------------------------------------- */
#breadcrumb {
}

/*** hover ***/
@media screen and (min-width: 960px) {
}

@media screen and (max-width: 767px) {
}

/* !main Visual
---------------------------------------------------------- */
#main-visual {
  width: 100%;
  position: relative;
}

#main-visual .main-image,
#main-visual .main-image img {
  width: 100%;
}

#main-visual .main-image {
  transition: opacity 0.5s ease 0.3s;
}

#main-visual .main-copy {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  top: 14.296875vw;
  font-size: 2.1875vw;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 1.428rem;
  font-weight: 300;
  text-align: center;
  transition: opacity 0.5s ease 1.1s;
}

#main-visual .main-copy p:last-child {
  letter-spacing: 2.6rem;
  padding-left: 0.78vw;
}

#main-visual .main-news {
  position: absolute;
  right: 4rem;
  bottom: 3.8rem;
  z-index: 2;
  transition: opacity 0.5s ease 2.7s, transform 0.5s ease 2.7s;
}

#main-visual .main-news .item {
  background: #fff;
  width: 40.4rem;
  border-radius: 0.4rem;
  padding: 2.8rem 2.4rem 3.6rem;
  display: block;
  position: relative;
}

#main-visual .main-news .item:before {
  content: "NEWS";
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #fff;
  background: #d19c23;
  border-radius: 0.4rem;
  padding: 0.1rem 0.6rem;
  font-weight: bold;
  position: absolute;
  left: 2.4rem;
  top: 0;
  transform: translateY(-50%);
}

#main-visual .main-news .item .date {
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 0.2rem;
  display: block;
}

#main-visual .main-news .item .title {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.5s;
}

#main-visual .main-news .links {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.4285;
  letter-spacing: 0.1em;
  padding: 0.9rem 0.7rem 1.585rem 1.4rem;
  border-radius: 0.4rem;
  transform: translateY(-1.3rem);
  background: #fff;
  transition: color 0.5s;
}

#main-visual .main-news .links:after {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url(../img/common/icon_arrow_gray.svg) center center no-repeat;
  background-size: cover;
  display: block;
  transition: background-image 0.5s;
}

.unload #main-visual .main-image,
.unload #main-visual .main-copy {
  opacity: 0;
}

.unload #main-visual .main-news {
  opacity: 0;
  transform: translateY(50%);
}

/*** hover ***/
@media screen and (min-width: 960px) {
  #main-visual .main-news .item:hover .title,
  #main-visual .main-news .links:hover {
    color: #d19c23;
  }

  #main-visual .main-news .links:hover:after {
    background-image: url(../img/common/icon_arrow_yellow.svg);
  }
}

@media screen and (max-width: 767px) {
  #main-visual {
    width: 100%;
    position: relative;
    height: 100dvh;
  }

  #main-visual .main-image,
  #main-visual .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #main-visual .main-copy {
    top: 17.8rem;
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: 0.2em;
    width: 100%;
  }

  #main-visual .main-copy p:last-child {
    letter-spacing: 0.51em;
    padding-left: 1rem;
  }

  #main-visual .main-news {
    right: 0;
    bottom: 0;
    width: 100%;
    box-shadow: 0 1rem 1rem rgba(89, 89, 89, 0.24);
  }

  #main-visual .main-news .item {
    width: 100%;
    border-radius: 0;
    padding: 4rem 2rem 1.2rem 1.4rem;
    display: flex;
    align-items: center;
  }

  #main-visual .main-news .item:before {
    left: 1.4rem;
    top: 1.1rem;
    transform: translateY(0);
  }

  #main-visual .main-news .item .date {
    margin-right: 1.4rem;
    word-break: keep-all;
    white-space: nowrap;
    margin-bottom: 0;
  }

  #main-visual .main-news .item .title {
    -webkit-line-clamp: 1;
  }

  #main-visual .main-news .links {
    right: 2rem;
    top: 1rem;
    padding: 0;
    border-radius: 0;
    transform: translateY(0);
    background: none;
  }
}

/* !teaser
---------------------------------------------------------- */
#teaser {
  width: 100%;
  position: relative;
  padding-top: 13.5rem;
}

#teaser:after {
  width: calc(100vw - 2rem);
  padding-top: 100%;
  border-radius: 100%;
  border: 0.1rem solid #d19c23;
  position: fixed;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: -1;
  content: "";
  pointer-events: none;
}

#teaser .page-title {
  text-align: center;
}

#teaser .page-title .jp {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 1.35;
  margin-bottom: 1.6rem;
}

#teaser .page-title .en {
  display: block;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 1.4;
  color: #d19c23;
}

.teaser-text {
  margin-top: 4.8rem;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  line-height: 2;
  font-weight: 300;
  text-align: center;
}

.teaser-text p + p {
  margin-top: 2em;
}

.teaser-text .notes {
  display: block;
  margin-top: 1.4rem;
  font-size: 1.2rem;
}

.teaser-links {
  text-align: center;
  margin-top: 4.8rem;
}

.teaser-notes {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: 300;
}

/*** hover ***/
@media screen and (min-width: 960px) {
}

@media screen and (max-width: 767px) {
  #teaser {
    min-height: unset;
    padding-top: 11.5rem;
  }

  #teaser:after {
    width: 100vw;
  }

  #teaser .page-title .jp {
    font-size: 1.4rem;
    line-height: 1.4285;
    margin-bottom: 0.4rem;
  }

  #teaser .page-title .en {
    font-size: 2.8rem;
  }

  .teaser-text {
    margin-top: 3.2rem;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }

  .teaser-text .notes {
    text-align: left;
    padding-left: 1.1em;
    text-indent: -1.1em;
    line-height: 1.5;
  }

  .teaser-links {
    margin-top: 4rem;
  }

  .teaser-notes {
    margin-top: 2.4rem;
    letter-spacing: 0.2em;
  }
}

/* !contents
---------------------------------------------------------- */
#contents {
}

#main {
}

#side {
}

.inner {
  width: 100%;
  max-width: 104rem;
  margin: 0 auto;
  padding: 0 2rem;
}

/*** hover ***/
@media screen and (min-width: 960px) {
}

@media screen and (max-width: 767px) {
}

/* !page Top
---------------------------------------------------------- */
.page-top {
}

/*** hover ***/
@media screen and (min-width: 960px) {
}

@media screen and (max-width: 767px) {
}

/* !footer
---------------------------------------------------------- */
#footer {
  width: 100%;
  background: #fff;
  padding: 8rem 0;
  border-top: 0.1rem solid #aaa;
}

.home #footer {
  border-top: 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  width: 19rem;
  line-height: 1;
}

.footer-logo img {
  width: 100%;
}

.footer-navi {
  display: flex;
  gap: 3.2rem;
  align-items: center;
  justify-content: flex-end;
}

.footer-navi a {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
  display: block;
}

#copyright {
  margin-top: 2.4rem;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: right;
  font-weight: 300;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2.4rem;
  margin-top: 3.5rem;
}

.footer-links a {
  text-decoration: underline;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: 300;
}

/*** hover ***/
@media screen and (min-width: 960px) {
  .footer-links a:hover {
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  #footer {
    padding: 4rem 0;
  }

  .footer-inner {
    display: block;
  }

  .footer-logo {
    margin: 0 auto 4rem;
  }

  .footer-navi {
    max-width: 27.1rem;
    margin: 0 auto;
    gap: 1.4rem 2.4rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  #copyright {
    margin-top: 4.4rem;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* !button
---------------------------------------------------------- */
.btn-links {
  position: relative;
  width: 100%;
  max-width: 19.5rem;
  border-radius: 0.4rem;
  background: #d19c23;
  display: inline-block;
  transition: all 0.5s;
}

.btn-links[disabled] {
  background: #aaa;
  pointer-events: none;
}

.btn-links span {
  position: relative;
  width: 100%;
  height: 4.8rem;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.42857;
  color: #fff;
  background: url(../img/common/icon_arrow_white.svg) right 2.8rem center
    no-repeat;
  background-size: 1.9rem auto;
  padding: 0 5.5rem 0 2.8rem;
}

.btn-links:before,
.btn-links:after,
.btn-links span:before,
.btn-links span:after {
  width: 1rem;
  height: 1rem;
  content: "";
  position: absolute;
  z-index: 2;
  background: url(../img/common/button_left01.svg) right center no-repeat;
  background-size: cover;
}

.btn-links:before,
.btn-links:after {
  top: 0.4rem;
}

.btn-links span:before,
.btn-links span:after {
  bottom: 0.4rem;
}

.btn-links:before,
.btn-links span:before {
  left: 0.4rem;
}

.btn-links:after,
.btn-links span:after {
  right: 0.4rem;
}

.btn-links:after {
  transform: scaleX(-1);
}

.btn-links span:before {
  transform: scaleY(-1);
}

.btn-links span:after {
  transform: scale(-1);
}

.btn-links.is-back span,
.btn-links.is-back font {
  transform: scaleX(-1);
  justify-content: flex-end;
}

.btn-back,
.btn-next {
  position: absolute;
  top: 40px;
  z-index: 2;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.5s;
}

.btn-back:before,
.btn-next:after {
  width: 2rem;
  height: 2rem;
  content: "";
  background: url(../img/common/icon_arrow_gray.svg) center center no-repeat;
  background-size: cover;
  transition: background-image 0.5s;
}

.btn-back {
  left: 0;
}

.btn-back:before {
  transform: scaleX(-1);
}

.btn-next {
  right: 0;
}

/*** hover ***/
@media screen and (min-width: 960px) {
  .btn-links:hover {
    box-shadow: 0 0.6rem 1.6rem rgba(89, 89, 89, 0.24);
  }

  .btn-back:hover {
    color: #d19c23;
  }

  .btn-back:hover:before {
    background: url(../img/common/icon_arrow_yellow.svg);
  }
}

@media screen and (max-width: 767px) {
  .btn-links {
    max-width: 16.7rem;
  }

  .btn-links span {
    height: 4.3rem;
    background: url(../img/common/icon_arrow_white.svg) right 2rem center
      no-repeat;
    background-size: 1.9rem auto;
    padding: 0 4.5rem 0 2rem;
  }
}

/* !home
---------------------------------------------------------- */
.top-message {
  padding: 2rem 0 14rem;
}

.top-message .top-message__wrap {
  width: 81rem;
  height: 81rem;
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.top-message .top-message__box {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.2em;
  font-weight: 300;
  position: relative;
  z-index: 2;
  text-align: center;
}

.top-message__wrap .pi-graph {
  border-radius: 100%;
  width: 81rem;
  transform: rotate(-90deg) scale(2);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.top-message__wrap .enko {
  stroke: #e60012;
  fill: none;
  stroke-width: 0.05;
  stroke-dasharray: 100;
  /* 最初は非表示状態 */
  stroke-dashoffset: 100;
}

.top-message__wrap.animated .enko {
  animation: graph 2s ease-in-out forwards;
}

@keyframes graph {
  to {
    stroke-dashoffset: 0;
  }
  from {
    stroke-dashoffset: 100;
  }
}

.top-message__wrap p {
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(100%);
}

.top-message__wrap.animated p {
  opacity: 1;
  transform: translateY(0);
}

.top-message__wrap p:nth-child(1) {
  transition-delay: 0.4s;
}

.top-message__wrap p:nth-child(2) {
  transition-delay: 0.8s;
}

.top-message__wrap p:nth-child(3) {
  transition-delay: 1.2s;
}

.top-message__wrap p:nth-child(4) {
  transition-delay: 1.6s;
}

.top-message__wrap p:nth-child(5) {
  transition-delay: 2s;
  margin-top: 2em;
}

.top-message__wrap p:nth-child(6) {
  transition-delay: 2.4s;
}

.top-message__wrap p:nth-child(7) {
  transition-delay: 2.8s;
}

.top-message__wrap p:nth-child(8) {
  transition-delay: 3.2s;
  margin-top: 2em;
}

.top-message__wrap p:nth-child(9) {
  transition-delay: 3.6s;
}

.top-message__wrap p:nth-child(10) {
  transition-delay: 4s;
}

.top-message-links {
  margin-top: 4rem;
}

@media screen and (max-width: 767px) {
  .top-message {
    padding: 10rem 0;
    overflow: hidden;
  }

  .top-message .top-message__wrap {
    width: 100%;
    height: 56rem;
    overflow: visible;
  }

  .top-message .top-message__box {
    font-size: 1.4rem;
    line-height: 2.142857;
  }

  .top-message__wrap .pi-graph {
    width: 56rem;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg) scale(2);
  }

  .top-message__wrap p:nth-child(5) {
    margin-top: 2.142857em;
  }

  .top-message__wrap p:nth-child(8) {
    margin-top: 2.142857em;
  }
}

.top-log {
  position: relative;
  width: 100%;
}

.top-log .top-log-image {
  width: 54.6875vw;
  height: 69rem;
  border-radius: 3.2rem 0 0 3.2rem;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
}

.top-log .top-log-image .image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.top-log .top-log-image .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-log .top-log__wrap {
  padding-top: 4.8rem;
  width: 50.9%;
}

.top-log .top-log-title {
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
  color: #d19c23;
  margin-bottom: 4rem;
  font-weight: 400;
}

.top-log .top-log-title:first-letter {
  color: #e60012;
}

.top-log .top-log-text {
  margin-bottom: 4.5rem;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.2em;
}

.top-log .top-log-text .top-log-text__small {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.2em;
  margin-top: 2rem;
}

.top-log .top-log-list {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(1.6rem);
  -webkit-backdrop-filter: blur(1.6rem);
}

.top-log .top-log-list li {
  border-bottom: 0.1rem solid #e3e3e3;
}

.top-log .top-log-list li:first-child {
  border-top: 0.1rem solid #e3e3e3;
}

.top-log .top-log-list li a {
  display: flex;
  padding: 2.4rem;
  align-items: flex-start;
}

.top-log .top-log-list li a .date {
  min-width: 10rem;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: 300;
}

.top-log .top-log-list li a .title {
  font-size: 1.4rem;
  line-height: 1.4285;
  letter-spacing: 0.1em;
  transition: color 0.5s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.top-log .top-log-links {
  margin-top: 5rem;
}

.top-log-gallery {
  width: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 2.4rem;
  z-index: 2;
}

.top-log-gallery .top-log-gallery__loop {
  display: flex;
  justify-content: flex-start;
}

.top-log-gallery .top-log-gallery__loop ul {
  display: flex;
  width: fit-content;
}

.top-log-gallery .top-log-gallery__loop ul li {
  word-break: keep-all;
  white-space: nowrap;
  font-size: 6.4rem;
  line-height: 1.484375;
  letter-spacing: 0.2em;
  padding-right: 6.4rem;
  color: #fff;
  font-weight: 100;
}

.top-log-gallery .top-log-gallery__loop ul:nth-child(odd) {
  animation-name: image-loop-left1;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.top-log-gallery .top-log-gallery__loop ul:nth-child(even) {
  animation-name: image-loop-left2;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes image-loop-left1 {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}
@keyframes image-loop-left2 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-200%);
  }
}

/*** hover ***/
@media screen and (min-width: 960px) {
  .top-log .top-log-list li a:hover .title {
    color: #d19c23;
  }
}

@media screen and (max-width: 767px) {
  .top-log .top-log-image {
    width: calc(100% + 4rem);
    height: 34.2rem;
    margin: 0 -2rem;
    border-radius: 0;
    position: relative;
  }

  .top-log .top-log__wrap {
    padding-top: 0;
    width: 100%;
  }

  .top-log .top-log-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3.2rem;
  }

  .top-log .top-log-text {
    margin-bottom: 4rem;
    font-size: 1.6rem;
    line-height: 1.375;
    letter-spacing: 0.2em;
    text-align: center;
  }

  .top-log .top-log-text .top-log-text__small {
    font-size: 1.2rem;
    line-height: 2;
    letter-spacing: 0.2em;
    margin-top: 1.4rem;
  }

  .top-log .top-log-list {
    margin-top: -9rem;
  }

  .top-log .top-log-list li a {
    display: block;
    padding: 2rem;
  }

  .top-log .top-log-list li a .date {
    min-width: unset;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
  }

  .top-log .top-log-list li a .title {
    font-size: 1.4rem;
    line-height: 1.4285;
    letter-spacing: 0.2em;
  }

  .top-log .top-log-links {
    margin-top: 3.6rem;
    text-align: center;
  }

  .top-log-gallery .top-log-gallery__loop ul li {
    font-size: 3.2rem;
    line-height: 1.46875;
    padding-right: 2.4rem;
  }
}

.top-gallery {
  padding: 18rem 0 8rem;
  background: url(../img/top/pc_img_gallery_bg.png) center center no-repeat;
  background-size: cover;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.2em;
  overflow: hidden;
  font-weight: 300;
}

.top-gallery .top-gallery-head {
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  line-height: 1.375;
  font-weight: 400;
  color: #d19c23;
  margin-bottom: 4rem;
}

.top-gallery .top-gallery-head span {
  display: block;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 0.8rem;
  color: #595959;
}

.top-gallery .top-gallery-links {
  margin-top: 4rem;
}

.top-gallery__loop {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-top: 4rem;
}

.top-gallery__loop ul {
  display: flex;
  width: fit-content;
}

.top-gallery__loop ul li {
  padding-right: 4rem;
}

.top-gallery__loop ul li span {
  display: block;
  border: 0.1rem solid #fff;
  mix-blend-mode: multiply;
  box-shadow: 0.8rem 0.8rem 1.6rem rgba(89, 89, 89, 0.24);
  overflow: hidden;
}

.top-gallery__loop ul li span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-gallery__loop ul:nth-child(odd) {
  animation-name: image-loop-left1;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.top-gallery__loop ul:nth-child(even) {
  animation-name: image-loop-left2;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.top-gallery__loop .circle {
  width: 24.8rem;
  height: 24.8rem;
  border-radius: 100%;
}

.top-gallery__loop .square {
  width: 20rem;
  height: 20rem;
}

.top-gallery__loop .rectangle_v {
  width: 18rem;
  height: 32rem;
}

.top-gallery__loop .rectangle_h {
  width: 33rem;
  height: 18.8rem;
}

.top-gallery__loop ul li:nth-child(5n + 1) span,
.top-gallery__loop ul li:nth-child(5n + 6) span {
  margin-top: 5rem;
}

.top-gallery__loop ul li:nth-child(5n + 2) span,
.top-gallery__loop ul li:nth-child(5n + 7) span {
  margin-top: 13.4rem;
}

.top-gallery__loop ul li:nth-child(5n + 3) span,
.top-gallery__loop ul li:nth-child(5n + 8) span {
  margin-top: 7rem;
}

.top-gallery__loop ul li:nth-child(5n + 4) span,
.top-gallery__loop ul li:nth-child(5n + 9) span {
  margin-top: 8.7rem;
}

@media screen and (max-width: 767px) {
  .top-gallery {
    padding: 8rem 0 6.4rem;
    background: url(../img/top/sp_img_gallery_bg.png) center center no-repeat;
    background-size: cover;
    font-size: 1.4rem;
  }

  .top-gallery .top-gallery-head {
    font-size: 2.8rem;
    line-height: 1.5;
    margin-bottom: 3.2rem;
  }

  .top-gallery .top-gallery-head span {
    margin-bottom: 0.4rem;
    font-weight: 300;
  }

  .top-gallery .top-gallery-links {
    margin-top: 3.2rem;
  }

  .top-gallery__loop {
    margin-top: 3.2rem;
  }

  .top-gallery__loop ul li {
    padding-right: 3rem;
  }

  .top-gallery__loop ul li span {
    border: 0.2rem solid #fff;
  }

  .top-gallery__loop .circle {
    width: 21rem;
    height: 21rem;
  }

  .top-gallery__loop .square {
    width: 15rem;
    height: 15rem;
  }

  .top-gallery__loop .rectangle_v {
    width: 13.5rem;
    height: 24rem;
  }

  .top-gallery__loop .rectangle_h {
    width: 28.875rem;
    height: 16.45rem;
  }

  .top-gallery__loop ul li:nth-child(5n + 1) span,
  .top-gallery__loop ul li:nth-child(5n + 6) span {
    margin-top: 4.375rem;
  }

  .top-gallery__loop ul li:nth-child(5n + 2) span,
  .top-gallery__loop ul li:nth-child(5n + 7) span {
    margin-top: 11.725rem;
  }

  .top-gallery__loop ul li:nth-child(5n + 3) span,
  .top-gallery__loop ul li:nth-child(5n + 8) span {
    margin-top: 6.125rem;
  }

  .top-gallery__loop ul li:nth-child(5n + 4) span,
  .top-gallery__loop ul li:nth-child(5n + 9) span {
    margin-top: 7.6125rem;
  }
}

/* !ギャラリー
---------------------------------------------------------- */
.gallery-wrap {
  padding: 12rem 0 8.2rem;
  overflow: hidden;
}

.gallery-wrap .inner {
  max-width: 1040px;
  padding: 0 20px;
}

.gallery-list {
  width: calc(100% + 48px);
  margin: 0 -24px;
}

.gallery-list li {
  padding: 0 0 24px 24px;
}

.gallery-list a {
  display: block;
  width: 100%;
  position: relative;
}

.gallery-list .large {
  width: 768px;
}

.gallery-list .middle {
  width: 512px;
}

.gallery-list .small {
  width: 256px;
}

.gallery-list .circle,
.gallery-list .square {
  padding-top: 100%;
}

.gallery-list .circle img {
  border-radius: 100%;
}

.gallery-list .rectangle_v {
  padding-top: 177.5862%;
}

.gallery-list .rectangle_h {
  padding-top: 57%;
}

.gallery-list a img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  object-fit: cover;
  box-shadow: 8px 8px 16px rgba(89, 89, 89, 0.24);
  border: 2px solid #fff;
}

.gallery-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10000;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s, visibility 0.5s;
}

.gallery-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-popup .gallery-popup__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(89, 89, 89, 0.16);
}

.gallery-popup .gallery-popup__wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: calc(100% - 4rem);
  max-width: 80rem;
}

.gallery-popup .gallery-popup__wrap:after {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 100%;
  position: absolute;
  right: 0.8rem;
  top: -3.7rem;
  z-index: 1;
  box-shadow: 0 0.3rem 2rem rgba(89, 89, 89, 0.24);
  content: "";
}

.gallery-popup .gallery-popup__wrap .popup-wrap {
  width: 100%;
  background: #fff;
  padding: 4rem;
  border-radius: 3.2rem;
  box-shadow: 0 0.3rem 2rem rgba(89, 89, 89, 0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.gallery-popup .popup-close {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  right: 0.8rem;
  top: -3.7rem;
  background: #fff;
  z-index: 3;
  gap: 0.2rem;
  cursor: pointer;
}

.gallery-popup .popup-close:before,
.gallery-popup .popup-close:after {
  width: 2rem;
  height: 0.2rem;
  background: #595959;
  border-radius: 0.4rem;
  content: "";
}

.gallery-popup .popup-close:before {
  transform: translateY(0.2rem) rotate(45deg);
}

.gallery-popup .popup-close:after {
  transform: translateY(-0.2rem) rotate(-45deg);
}

.gallery-popup .gallery-popup__wrap .image-wrap,
.gallery-popup .gallery-popup__wrap .box-wrap {
  width: 47.22%;
}

.gallery-popup .gallery-popup__wrap .image-wrap .image {
  width: 100%;
  padding-top: calc(100% - 0.2rem);
  border: 0.1rem solid #e3e3e3;
  position: relative;
}

.gallery-popup .gallery-popup__wrap .image-wrap .image img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 100%;
  max-height: 100%;
}

.gallery-popup .gallery-popup__wrap .box-wrap .box-wrap__body {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.714;
}

.gallery-popup .gallery-popup__wrap .box-wrap .box-wrap__body p + p {
  margin-top: 1rem;
}

.gallery-popup .gallery-popup__wrap .box-wrap .box-wrap__foot {
  margin-top: 3rem;
  border-top: 0.1rem solid #e3e3e3;
  padding-top: 1.4rem;
}

.gallery-popup .gallery-popup__wrap .box-wrap .date {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.375;
}

.gallery-popup .gallery-popup__wrap .box-wrap .area {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.357;
  margin-top: 0.4rem;
}

@media screen and (max-width: 1019px) {
  .gallery-list {
    width: 792px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 831px) {
  .gallery-list {
    width: 536px;
    margin: 0 auto;
  }

  .gallery-list .large {
    width: 512px;
  }
}

@media screen and (max-width: 767px) {
  .gallery-wrap {
    padding: 12rem 0 14rem;
  }

  .gallery-wrap .inner {
    padding: 0 1rem;
  }

  .gallery-list a img {
    box-shadow: 0.8rem 0.8rem 1.6rem rgba(89, 89, 89, 0.24);
    border: 0.2rem solid #fff;
  }

  .gallery-popup .gallery-popup__wrap {
    width: calc(100% - 6rem);
    max-width: 314rem;
  }

  .gallery-popup .gallery-popup__wrap:after {
    display: none;
  }

  .gallery-popup .gallery-popup__wrap .popup-wrap {
    padding: 3.2rem;
    border-radius: 2.4rem;
    box-shadow: 0 0.3rem 1rem rgba(89, 89, 89, 0.24);
    display: block;
  }

  .gallery-popup .popup-close {
    width: 4.6rem;
    height: 4.6rem;
    position: fixed;
    right: 1rem;
    top: 1rem;
  }

  .gallery-popup .gallery-popup__wrap .popup-close:before,
  .gallery-popup .gallery-popup__wrap .popup-close:after {
    width: 1.4rem;
  }

  .gallery-popup .gallery-popup__wrap .image-wrap,
  .gallery-popup .gallery-popup__wrap .box-wrap {
    width: 100%;
  }

  .gallery-popup .gallery-popup__wrap .box-wrap {
    margin-top: 2.4rem;
  }
}

@media screen and (max-width: 551px) {
  .gallery-list {
    width: 35.5rem;
    margin: 0 auto;
  }

  .gallery-list li {
    padding: 0 0 1rem 1rem;
  }

  .gallery-list .large {
    width: 34.5rem;
  }

  .gallery-list .middle,
  .gallery-list .small {
    width: 17.2rem;
  }
}

/* !お問い合わせ
---------------------------------------------------------- */
.contact-wrap {
  max-width: 77.2rem;
  margin: 0 auto;
  padding: 10rem 0 20rem;
}

.contact-wrap .contact-item + .contact-item {
  margin-top: 3.2rem;
}

.contact-wrap .contact-item dt {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: flex-start;
}

.contact-wrap .contact-item dt.is-required:before {
  display: inline-flex;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.6rem;
  background: #d19c23;
  border-radius: 3.2rem;
  color: #fff;
  content: "必須";
  word-break: keep-all;
  white-space: nowrap;
  margin-right: 0.8rem;
}

.contact-wrap .contact-item dd .notes {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
  padding-left: 1.1em;
  text-indent: -1.1em;
  margin-top: -0.6rem;
}

.contact-wrap input[type="text"],
.contact-wrap input[type="date"],
.contact-wrap input[type="time"],
.contact-wrap input[type="email"],
.contact-wrap input[type="tel"],
.contact-wrap textarea {
  width: 100%;
  border: 0.1rem solid #e3e3e3;
  border-radius: 0.4rem;
  background: #fff;
  height: 5.1rem;
  padding: 0 1.6rem;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.contact-wrap textarea {
  height: 21.2rem;
  padding: 1.6rem;
}

.contact-policy {
  margin-top: 4.8rem;
  width: 100%;
  max-height: 19.6rem;
  border: 0.1rem solid #aaa;
  border-radius: 0.4rem;
  padding: 1.6rem;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  overflow-y: auto;
  background: #fff;
}

.contact-policy h2 {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1.5em;
  font-weight: normal;
}

.contact-policy p + p {
  margin-top: 1.5em;
}

.contact-agree {
  margin-top: 3.2rem;
  text-align: center;
  position: relative;
}

#gallery .contact-agree label,
#contact .contact-agree .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 2.8rem;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  cursor: pointer;
}

#gallery .contact-agree label:before,
#contact .contact-agree .wpcf7-list-item-label:before {
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid #e3e3e3;
  border-radius: 0.4rem;
  background: #fff;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

#gallery .contact-agree label:after,
#contact .contact-agree .wpcf7-list-item-label:after {
  width: 2rem;
  height: 2rem;
  background: url(../img/common/check.svg) center center no-repeat #d19c23;
  background-size: 1.2rem auto;
  border-radius: 0.4rem;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s;
}

.contact-agree input {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

#gallery .contact-agree input:checked + label:after,
#contact .contact-agree input:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}

.contact-confirm__links .wpcf7-spinner,
.contact-submit__links .wpcf7-spinner {
  right: 100%;
  position: absolute;
}

.contact-submit {
  margin-top: 4.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.contact-submit .contact-confirm__links {
  width: 16.3rem;
  display: inline-block;
  position: relative;
}

.contact-submit .contact-submit__links,
.contact-submit .contact-back__links {
  width: 13.8rem;
  display: inline-block;
  position: relative;
}

.contact-submit input {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.contact-submit input[disabled] ~ .btn-links {
  background: #aaa;
  pointer-events: none;
}

.contact-submit .contact-back__links .btn-links span,
.contact-submit .contact-back__links .btn-links font {
  transform: scaleX(-1);
  justify-content: flex-end;
}

.contact-notes {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
}

.contact-file__error {
  color: #e60012;
  margin-top: 8px;
}

.contact-file .contact-file__button {
  position: relative;
}

.contact-file .contact-file__button input {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.contact-file .contact-file__button label {
  width: 100%;
  height: 16rem;
  border: 0.1rem solid #d19c23;
  border-radius: 0.4rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.4285;
  cursor: pointer;
  text-align: center;
}

.contact-file .contact-file__image {
  margin-top: 1.4rem;
  display: flex;
  align-items: flex-end;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.4rem;
}

.contact-file .contact-file__image img {
  max-width: 26.4rem;
  max-height: 26.4rem;
}

.contact-file .contact-file__image .delete {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: underline;
}

.thanks-page {
  text-align: center;
}

.thanks-page .btn-links {
  max-width: 16.3rem;
}

/*** hover ***/
@media screen and (min-width: 960px) {
  .contact-submit .contact-confirm__links:hover .btn-links,
  .contact-submit .contact-back__links:hover .btn-links,
  .contact-submit .contact-submit__links:hover .btn-links {
    box-shadow: 0 0.6rem 1.6rem rgba(89, 89, 89, 0.24);
  }
}

@media screen and (max-width: 767px) {
  .contact-wrap {
    padding: 10rem 0;
  }

  .contact-wrap input[type="text"],
  .contact-wrap input[type="date"],
  .contact-wrap input[type="time"],
  .contact-wrap input[type="email"],
  .contact-wrap input[type="tel"],
  .contact-wrap textarea {
    height: 4.7rem;
    padding: 0 1.4rem;
  }

  .contact-wrap textarea {
    height: 26.8rem;
    padding: 1.4rem;
  }

  .contact-policy {
    height: 26.8rem;
    padding: 1.4rem;
  }

  .contact-submit .contact-confirm__links,
  .contact-submit .contact-back__links,
  .contact-submit .contact-submit__links,
  .contact-submit .btn-links {
    max-width: 13.9rem;
  }

  .contact-notes {
    font-size: 1rem;
  }

  .contact-submit {
    gap: 1rem;
  }

  .contact-file .contact-file__button label {
    height: 8.3rem;
  }

  .contact-file .contact-file__image img {
    max-width: 18rem;
    max-height: 18rem;
  }

  .thanks-page {
    padding-top: 4rem;
  }

  .thanks-page .btn-links {
    max-width: 13.9rem;
  }
}

/* !company
---------------------------------------------------------- */
.company-wrap {
  padding: 27.2rem 0 20rem;
  max-width: 77.2rem;
  margin: 0 auto;
}

.anchor-links {
  padding: 4.8rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
  flex-wrap: wrap;
}

.anchor-links a {
  display: inline-flex;
  gap: 0.8rem;
  align-items: flex-end;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.anchor-links a:before {
  width: 2rem;
  height: 2rem;
  background: url(../img/common/icon_arrow_gray.svg) center center no-repeat;
  background-size: cover;
  content: "";
  transform: rotate(90deg);
  transition: background-image 0.5s;
}

/*** hover ***/
@media screen and (min-width: 960px) {
  .anchor-links a:hover {
    color: #d19c23;
  }

  .anchor-links a:hover:before {
    background-image: url(../img/common/icon_arrow_yellow.svg);
  }
}
.company-message {
  padding-top: 12.3rem;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  line-height: 1.75;
  font-weight: 300;
}

.heading-lager {
  text-align: center;
  margin-bottom: 8rem;
}

.heading-lager .en {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 1.4rem;
}

.heading-lager .jp {
  display: block;
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
  font-weight: 400;
  color: #d19c23;
}

.company-message .company-message__image {
  max-width: 32.7rem;
  margin: 0 auto;
  margin-bottom: 6.4rem;
}

.company-message .company-message__image img {
  width: 100%;
}

.company-message .company-message__sign {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.2em;
  margin-top: 4.8rem;
  padding-top: 4.1rem;
  position: relative;
}

.company-message .company-message__sign:before {
  width: 4rem;
  height: 0.1rem;
  background: #e3e3e3;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 2;
  content: "";
}

.company-info {
  padding-top: 18rem;
}

.company-info .company-info__list {
  border-top: 0.1rem solid #e3e3e3;
}

.company-info .company-info__list .company-info__list-item {
  border-bottom: 0.1rem solid #e3e3e3;
  padding: 2.5rem 0;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
  font-weight: 300;
  display: flex;
  flex-wrap: wrap;
}

.company-info .company-info__list .company-info__list-item dt {
  width: 16rem;
}

.company-info .company-info__list .company-info__list-item dd {
  width: calc(100% - 16rem);
}

.company-info .company-info__list .company-info__list-item ol {
  padding-left: 1.8em;
}

.company-info .company-info__list .company-info__list-item ol li {
  list-style: decimal;
}

.company-info .company-info__list .company-info__list-item ol li + li {
  margin-top: 0.4rem;
}

.company-introduction {
  padding-top: 18rem;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  line-height: 1.4285;
  font-weight: 300;
}

.company-introduction .company-introduction__copy {
  margin-bottom: 3.2rem;
}

.company-introduction
  .company-introduction__item
  + .company-introduction__item {
  margin-top: 6.4rem;
}

.company-introduction .company-introduction-heading {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
  color: #d19c23;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.company-introduction-awrad {
  border-top: 0.1rem solid #e3e3e3;
  border-bottom: 0.1rem solid #e3e3e3;
}

.company-introduction-awrad .title {
  position: relative;
  padding: 2.4rem 6.7rem 2.4rem 2.4rem;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  line-height: 1.4285;
  font-weight: 400;
  cursor: pointer;
}

.company-introduction-awrad .title:before,
.company-introduction-awrad .title:after {
  position: absolute;
  width: 1.9rem;
  height: 0.1rem;
  background: #d19c23;
  right: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
  content: "";
}

.company-introduction-awrad .title:after {
  transform: translateY(-50%) rotate(-90deg);
  transition: transform 0.5s ease;
}

.company-introduction-awrad .title.is-active:after {
  transform: translateY(-50%) rotate(0);
}

.company-introduction-awrad .box {
  border-top: 0.1rem solid #e3e3e3;
  padding: 3.3rem 2.4rem;
  display: none;
}

.awrad-list .awrad-list__item p + h4,
.awrad-list .awrad-list__item ul + h4,
.awrad-list .awrad-list__item ol + h4 {
  margin-top: 4.8rem;
}

.awrad-list h1 {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
  color: #d19c23;
  font-weight: 400;
  margin-bottom: 1.4rem;
}

.awrad-list ul li {
  padding-left: 1.2rem;
  position: relative;
}

.awrad-list ul li:before {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 100%;
  background: #d19c23;
  position: absolute;
  left: 0;
  top: 0.8rem;
  z-index: 2;
  content: "";
}

.awrad-list p,
.awrad-list ul {
  margin-bottom: 1.4rem;
}

.awrad-list a {
  text-decoration: underline;
}

.awrad-list pre {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  white-space: normal;
}

@media screen and (max-width: 767px) {
  .company-wrap {
    padding: 10rem 0 14rem;
  }

  .anchor-links {
    display: none;
  }

  .company-message {
    padding-top: 0;
  }

  .heading-lager {
    margin-bottom: 4.8rem;
  }

  .heading-lager .en {
    margin-bottom: 0.4rem;
  }

  .heading-lager .jp {
    font-size: 2.4rem;
  }

  .company-message .company-message__image {
    max-width: 25.6rem;
    margin-bottom: 4.8rem;
  }

  .company-message .company-message__sign {
    margin-top: 4rem;
  }

  .company-message .company-message__sign:before {
    width: 2.4rem;
  }

  .company-info {
    padding-top: 12rem;
  }

  .company-info .company-info__list .company-info__list-item {
    font-size: 1.4rem;
    display: block;
  }

  .company-info .company-info__list .company-info__list-item dt {
    width: 100%;
    font-size: 1.2rem;
    margin-bottom: 1.4rem;
  }

  .company-info .company-info__list .company-info__list-item dd {
    width: 100%;
  }

  .company-info .company-info__list .company-info__list-item.last {
    display: grid;
    grid-template-columns: 10.2rem 10.2rem;
  }

  .company-info .company-info__list .company-info__list-item.last dd + dt {
    grid-column: 2/3;
    grid-row: 1/2;
  }

  .company-info .company-info__list .company-info__list-item ol {
    padding-left: 2em;
  }

  .company-info .company-info__list .company-info__list-item ol li + li {
    margin-top: 0.8rem;
  }

  .company-introduction {
    padding-top: 12rem;
  }

  .company-introduction .company-introduction__copy {
    margin-bottom: 2.5rem;
  }

  .company-introduction
    .company-introduction__item
    + .company-introduction__item {
    margin-top: 3.2rem;
  }

  .company-introduction-awrad .title {
    position: relative;
    padding: 2.4rem 1.9rem 2.4rem 0;
  }

  .company-introduction-awrad .title:before,
  .company-introduction-awrad .title:after {
    right: 0;
  }

  .company-introduction-awrad .box {
    padding: 2.4rem 0;
  }

  .awrad-list .awrad-list__item p + h4,
  .awrad-list .awrad-list__item ul + h4,
  .awrad-list .awrad-list__item ol + h4 {
    margin-top: 3.2rem;
  }
}

/* !news
---------------------------------------------------------- */
.news-wrap {
  width: 100%;
  max-width: 77.2rem;
  margin: 0 auto;
  padding: 20.3rem 0 20.2rem;
}

.news-list li {
  border-bottom: 0.1rem solid #e3e3e3;
}

.news-list li:first-child {
  border-top: 0.1rem solid #e3e3e3;
}

.news-list li a {
  display: flex;
  width: 100%;
  align-items: flex-start;
  padding: 3.2rem 0;
}

.news-list li a .date {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  line-height: 1.5;
  padding-top: 0.3rem;
  width: 10rem;
}

.news-list li a .title {
  width: calc(100% - 10rem);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: 400;
  transition: color 0.5s;
}

.pageNavi {
  margin-top: 8rem;
  width: 100%;
  position: relative;
  text-align: center;
  padding: 0 15rem;
}

.pageNavi .page-numbers:not(.current):not(.next):not(.prev),
.pageNavi .page-numbers.current {
  width: 2.8rem;
  height: 2.8rem;
  margin: 0.4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}

.pageNavi .page-numbers:not(.current):not(.dots):not(.next):not(.prev) {
  border: 0.1rem solid #595959;
  background: #fff;
  color: #595959;
  transition: color 0.5s;
}

.pageNavi .page-numbers.current {
  border: 0.1rem solid #d19c23;
  background: #d19c23;
  color: #fff;
}

.pageNavi .page-numbers.prev,
.pageNavi .page-numbers.next {
  position: absolute;
  top: 0;
  z-index: 2;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.5s;
}

.pageNavi .page-numbers.prev:before,
.pageNavi .page-numbers.next:after {
  width: 2rem;
  height: 2rem;
  content: "";
  background: url(../img/common/icon_arrow_gray.svg) center center no-repeat;
  background-size: cover;
  transition: background-image 0.5s;
}

.pageNavi .page-numbers.prev {
  left: 0;
}

.pageNavi .page-numbers.prev:before {
  transform: scaleX(-1);
}

.pageNavi .page-numbers.next {
  right: 0;
}

/*** hover ***/
@media screen and (min-width: 960px) {
  .pageNavi a:hover {
    color: #d19c23;
  }

  .pageNavi .page-numbers.prev:hover:before,
  .pageNavi .page-numbers.next:hover:after {
    background: url(../img/common/icon_arrow_yellow.svg);
  }
}

@media screen and (max-width: 767px) {
  .news-wrap {
    padding: 10rem 0 14.2rem;
  }

  .news-list li a {
    display: block;
    width: 100%;
    padding: 2.4rem 0;
  }

  .news-list li a .date {
    padding-top: 0;
    width: 100%;
    margin-bottom: 0.8rem;
    display: block;
  }

  .news-list li a .title {
    width: 100%;
    display: block;
  }

  .pageNavi {
    margin-top: 6.4rem;
    padding: 0 0 4.5rem;
  }

  .pageNavi .page-numbers.prev,
  .pageNavi .page-numbers.next {
    top: unset;
    bottom: 0;
    line-height: 1.5;
  }
}

.news-detail {
  padding: 9.5rem 0 20.3rem;
  width: 100%;
  max-width: 77.2rem;
  margin: 0 auto;
}

.news-head {
  border-bottom: 0.1rem solid #e3e3e3;
  padding-bottom: 4rem;
  margin-bottom: 4.8rem;
}

.news-head .date {
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 2.4rem;
}

.news-head .title {
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.news-body {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.news-body p,
.news-body figure,
.news-body ul {
  margin-bottom: 2.4rem;
}

.news-body p a {
  text-decoration: underline;
}

.news-body h1 {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: #d19c23;
  line-height: 1.5;
  margin-bottom: 2.4rem;
  font-weight: 400;
}

.news-body h2 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.667;
  margin-bottom: 2.4rem;
  font-weight: 400;
}

.news-body h3 {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 2.4rem;
  font-weight: bold;
}

.news-body h4 {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 2.4rem;
  font-weight: 400;
  padding-bottom: 1.5rem;
  border-bottom: 0.1rem solid #e3e3e3;
}

.news-body h5 {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.714;
  margin-bottom: 2.4rem;
  font-weight: bold;
}

.news-body ul li {
  padding-left: 1.2rem;
  position: relative;
}

.news-body ul li + li {
  margin-top: 1rem;
}

.news-body ul li:before {
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.4rem;
  height: 0.4rem;
  background: #d19c23;
  border-radius: 100%;
  content: "";
  z-index: 2;
}

.news-body ul ul {
  margin-bottom: 0;
}

.news-body ul ul li {
  margin-top: 1rem;
}

.news-body ul ul li:before {
  border: 0.1rem solid #aaa;
  background: #fff;
}

.page-pagination {
  margin-top: 4.8rem;
  border-top: 0.1rem solid #e3e3e3;
  width: 100%;
  position: relative;
  padding: 5rem 0;
}

.listsPage-links {
  text-align: center;
}

.listsPage-links .btn-links {
  width: 13.8rem;
}

.log-logo {
  text-align: center;
}

.log-logo img {
  width: 6rem;
}

@media screen and (max-width: 767px) {
  .news-detail {
    padding: 11.5rem 0 14.2rem;
  }

  .news-head {
    padding-bottom: 3.2rem;
    margin-bottom: 3.2rem;
  }

  .news-head .date {
    margin-bottom: 2.8rem;
  }

  .news-head .title {
    font-size: 2.4rem;
    line-height: 1.167;
  }

  .news-body {
    font-size: 1.4rem;
    line-height: 1.714;
  }

  .news-body h2 {
    font-size: 1.8rem;
    line-height: 1.667;
  }

  .news-body h3 {
    font-size: 1.6rem;
    line-height: 1.875;
  }

  .news-body h4 {
    font-size: 1.4rem;
    font-weight: bold;
  }

  .news-body h5 {
    font-size: 1.4rem;
  }

  .news-body h6 {
    font-size: 1.2rem;
  }

  .page-pagination {
    margin-top: 4.8rem;
    padding-top: 3.2rem;
  }

  .listsPage-links .btn-links {
    width: 14.7rem;
  }
}

/* !404
---------------------------------------------------------- */
#notfound #teaser .page-title .en {
  color: #595959;
}

/* !terms
---------------------------------------------------------- */
.terms-wrap {
  padding: 4.8rem 0 20rem;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 300;
}

.terms-wrap > p {
  margin-bottom: 4.8rem;
}

.terms-wrap .terms-item {
  font-size: 1.4rem;
  line-height: 1.5;
}

.terms-wrap .terms-item + .terms-item {
  margin-top: 4rem;
}

.terms-wrap .terms-item h2 {
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: 400;
  margin-bottom: 2.4rem;
}

.terms-wrap .terms-item .terms-box {
  padding-left: 1.4rem;
}

.terms-wrap .terms-item a {
  text-decoration: underline;
}

.terms-wrap .terms-item p + p,
.terms-wrap .terms-item p + ul,
.terms-wrap .terms-item ul + p {
  margin-top: 1.375em;
}

.terms-wrap .terms-item ol {
  padding-left: 1.5em;
}

.terms-wrap .terms-item ol > li {
  list-style: decimal;
}

.terms-wrap .terms-item ol > li + li {
  margin-top: 1.4rem;
}

.terms-wrap .terms-item ul > li {
  padding-left: 1.2rem;
  position: relative;
}

.terms-wrap .terms-item ul > li:before {
  position: absolute;
  left: 0;
  top: 0.8rem;
  z-index: 2;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 100%;
  background: #d19c23;
  content: "";
}

.terms-wrap .terms-item ul > li + li {
  margin-top: 0.8rem;
}

/*** hover ***/
@media screen and (min-width: 960px) {
  .terms-wrap .terms-item a:hover {
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  .terms-wrap {
    padding: 3.2rem 0 10rem;
    font-size: 1.4rem;
  }

  .terms-wrap > p {
    margin-bottom: 4rem;
  }

  .terms-wrap .terms-item h2 {
    font-size: 1.4rem;
    line-height: 1.357;
  }

  .terms-wrap .terms-item .terms-box {
    padding-left: 0;
  }

  .terms-wrap .terms-item p + p,
  .terms-wrap .terms-item p + ul,
  .terms-wrap .terms-item ul + p {
    margin-top: 1.357em;
  }

  .terms-wrap .terms-item ul > li + li {
    margin-top: 1.4rem;
  }
}

.u-font-bold {
  font-weight: bold;
}

.grecaptcha-badge {
  visibility: hidden;
}

#gallery .grecaptcha-badge,
#contact .grecaptcha-badge {
  visibility: visible;
}
