/* リセット */

* {
  box-sizing: border-box;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre,
form, fieldset, input, textarea, p, blockquote, th, td, figure {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

table {
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-weight: normal;
  font-style: normal;
}

strong {
  font-weight: bold;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

q:before, q:after {
  content: '';
}

abbr, acronym {
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/* Noto Sans JP -------------------------------------*/

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/NotoSansCJKjp-Light.woff2') format('woff2'),
    url('fonts/NotoSansCJKjp-Light.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/NotoSansCJKjp-Regular.woff2') format('woff2'),
    url('fonts/NotoSansCJKjp-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/NotoSansCJKjp-Medium.woff2') format('woff2'),
    url('fonts/NotoSansCJKjp-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/NotoSansCJKjp-Bold.woff2') format('woff2'),
    url('fonts/NotoSansCJKjp-Bold.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 900;
  src: url('fonts/NotoSansCJKjp-Black.woff2') format('woff2'),
    url('fonts/NotoSansCJKjp-Black.woff') format('woff');
}

/* Zen Kaku Gothic Antique -------------------------------------*/

@font-face {
  font-family: 'Zen Kaku Gothic Antique';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/ZenKakuGothicAntique-Light.woff2') format('woff2'),
    url('fonts/ZenKakuGothicAntique-Light.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic Antique';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/ZenKakuGothicAntique-Regular.woff2') format('woff2'),
    url('fonts/ZenKakuGothicAntique-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic Antique';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/ZenKakuGothicAntique-Medium.woff2') format('woff2'),
    url('fonts/ZenKakuGothicAntique-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic Antique';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/ZenKakuGothicAntique-Bold.woff2') format('woff2'),
    url('fonts/ZenKakuGothicAntique-Bold.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic Antique';
  font-style: normal;
  font-weight: 900;
  src: url('fonts/ZenKakuGothicAntique-Black.woff2') format('woff2'),
    url('fonts/ZenKakuGothicAntique-Black.woff') format('woff');
}

/* WebFont -------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/*-------------------------------------------------
/* 基本
--------------------------------------------------*/

:root {
  --color-main: #00a73c;
  --color-light-main: #b4c9bb;
  --color-back: #F0FBF4;
  --color-text: #1c1c1c;
  --color-white: #ffffff;
  --color-red: #DE0A0A;
  --color-blue: #00479d;
  --color-light-gray: #cccccc;
  --color-gray: #777777;
  --color-dark-gray: #626262;
  --color-visited: #585858;
  --box-shadow: 0 0 8px #777;
  --font-family: 'Noto Sans CJK JP', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'BIZ UDPGothic', sans-serif;
  --font-en: 'Poppins', Verdana, 'Noto Sans JP', sans-serif;
  --font-second: 'Zen Kaku Gothic Antique', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'BIZ UDPGothic', sans-serif;
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.6;
  background-color: var(--color-back);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-print-color-adjust: exact;
}

.btn-type1,
.foot-copy,
.en {
  font-family: var(--font-en);
}

.font-ZenKakuGothicAntique {
  font-family: var(--font-second);
}

a {
  text-decoration: none;
  color: var(--color-main);
}

a:visited {
  text-decoration: none;
  color: var(--color-gray);
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: none;
}

/* iPhoneTELリンク色変更なしにする */
a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

.wrapper {
  position: relative;
}

html {
  scroll-behavior: smooth;
}

@keyframes fadeinImg {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*****************************************
*
* ヘッダ
*
******************************************/

header {
  background: var(--color-back);
  width: 100%;
  height: 60px;
}

@media screen and (max-width: 833px) {
  header {
    text-align: left;
    padding: 10px 90px;
  }
}

@media screen and (min-width: 834px), print {
  header {
    position: relative;
    display: flex;
    align-items: center;
    height: 100px;
  }
}


/*------------------------------------------*/
/* ロゴ
/*------------------------------------------*/

h1 {
  font-size: 0;
  line-height: 1.6;
}

header .logo .mark {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: var(--color-back);
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 70px;
  position: absolute;
  left: 20px;
  top: 10px;
  z-index: 3;
}

header .logo .mark::before {
  content: '';
  display: inline-block;
  background: url('img/logo_mark.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 92/100;
  width: calc(92px / 1.8);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

header .logo .text {
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('img/logo_text.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 190/36;
  width: calc(190px / 1.2);
  z-index: 10;
}

@media screen and (min-width: 834px), print {
  header .logo .mark {
    width: calc(calc(130 / 1200) * 100vw);
    left: 60px;
    top: 20px;
  }

  header .logo .mark::before {
    width: calc(calc(92 / 1200) * 100vw);
  }

  header .logo .text {
    width: calc(calc(190 / 1200) * 100vw);
    margin-left: calc(calc(200 / 1200) * 100vw);
  }
}

@media screen and (min-width: 1200px), print {
  header .logo .mark {
    width: 130px;
  }

  header .logo .mark::before {
    width: 92px;
  }

  header .logo .text {
    width: 190px;
    margin-left: 200px;
  }
}

/*****************************************
*
* PC ナビ
*
******************************************/

@media screen and (max-width: 833px) {
  .pc-nav {
    display: none;
  }
}

@media screen and (min-width: 834px), print {
  .pc-nav {
    background: var(--color-main);
    border-radius: 10px;
    padding: calc(calc(10 / 1200) * 100vw) calc(calc(20 / 1200) * 100vw);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(calc(100 / 1200) * 100vw);
    z-index: 5;
  }

  .pc-nav li {
    position: relative;
    display: inline-block;
  }

  .pc-nav li+li {
    margin-left: calc(calc(20 / 1200) * 100vw);
  }

  .pc-nav li+li::before {
    content: '';
    display: inline-block;
    background: var(--color-light-main);
    width: 1px;
    height: calc(calc(10 / 1200) * 100vw);
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    left: -12px;
  }

  .pc-nav a {
    position: relative;
    display: inline-block;
    font-family: var(--font-second);
    color: var(--color-white);
    font-size: calc(calc(16 / 1200) * 100vw);
    font-weight: bold;
    line-height: 1.1;
  }

  .pc-nav a::before {
    content: '';
    display: inline-block;
    background: var(--color-light-main);
    width: 0;
    height: 1px;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: all .5s ease;
  }

  .pc-nav a:hover {
    text-decoration: none;
  }

  .pc-nav a:hover::before {
    width: 100%;
  }
}

@media screen and (min-width: 1200px), print {
  .pc-nav {
    padding: 10px 20px;
    right: 100px;
  }

  .pc-nav li+li {
    margin-left: 20px;
  }

  .pc-nav li+li::before {
    height: 10px;
    left: -12px;
  }

  .pc-nav a {
    font-size: 1rem;
  }
}

/*****************************************
*
* ナビ
*
******************************************/

/*!------------------------------------*\
    Base
\*!------------------------------------*/
.drawer-open {
  overflow: hidden !important;
}

.drawer-nav {
  position: fixed;
  z-index: 101;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: var(--color-back);
  text-align: center;
}

.drawer-menu {
  overflow-y: auto;
  display: inline-block;
  padding: 60px 20px;
}

.drawer-menu li+li {
  margin-top: 20px;
}

.drawer-menu li {
  width: 18em;
  max-width: 100%;
}

.drawer-menu li a {
  text-align: left;
  position: relative;
  display: block;
  border-bottom: solid 1px var(--color-light-gray);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: bold;
  padding-bottom: 10px;
  transition: all .5s ease;
}

.drawer-menu li a::before {
  content: '';
  display: inline-block;
  background: var(--color-main);
  width: 0;
  height: 1px;
  transform-origin: left;
  position: absolute;
  bottom: -1px;
  left: 0;
  transition: all .5s ease;
}

.drawer-menu li a:hover,
.drawer-menu li a:active {
  text-decoration: none;
}

.drawer-menu li a:hover::before,
.drawer-menu li a:active::before {
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .drawer-menu {
    padding: 60px 40px;
  }
}

@media screen and (min-width: 834px), print {
  .drawer-menu {
    padding: 60px;
  }

  .drawer-menu li a {
    font-size: 1.1rem;
  }
}

/* HOME ------------------------------*/
.drawer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

li.drawer-brand a {
  border: 0;
  padding: 0;
}

.drawer-brand .mark {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('img/logo_mark.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 92/100;
  width: calc(92px / 1.8);
}

.drawer-brand .text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('img/logo_text.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 190/36;
  width: calc(190px / 1.2);
  margin-left: 10px;
}

@media screen and (min-width: 834px), print {
  .drawer-brand {
    margin-bottom: 60px;
  }

  .drawer-brand .mark {
    width: 92px;
  }

  .drawer-brand .text {
    width: 190px;
    margin-left: 20px;
  }
}


/*!------------------------------------*\
    Dropdown
\*!------------------------------------*/

.drawer-dropdown-menu {
  display: none;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--color-white);
  transition: all .5s ease;
}

.drawer-dropdown-menu>li {
  width: 100%;
  list-style: none;
}

.drawer-dropdown-menu-item {}

.drawer-dropdown-menu-item:hover {}

/*! open */
.drawer-dropdown.open>.drawer-dropdown-menu {
  display: block;
}

/*! drawer-caret */
.drawer-menu li a.drawer-dropdown-button {
  position: relative;
  background: var(--color-main);
  color: var(--color-white);
  display: block;
  padding: 15px 10px;
  border-bottom: solid 1px var(--color-white);
  transition: all .5s ease;
}

/*横線*/
a.drawer-dropdown-button::before {
  content: '';
  display: block;
  position: absolute;
  top: 26px;
  right: 15px;
  width: 20px;
  height: 2px;
  background: var(--color-white);
}

/*縦線*/
a.drawer-dropdown-button::after {
  content: '';
  display: block;
  position: absolute;
  top: 17px;
  right: 24px;
  width: 2px;
  height: 20px;
  background: var(--color-white);
}

/*! open */
.drawer-dropdown.open a.drawer-dropdown-button::after {
  content: none;
}


/*  ------------------------------*/
/*! overlay */
.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
}

.drawer-open .drawer-overlay {
  display: block;
}

/*!------------------------------------*\
    Top
\*!------------------------------------*/

.drawer--top .drawer-nav {
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 100%;
  -webkit-transition: top .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: top .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.drawer--top.drawer-open .drawer-nav {
  top: 0;
}

.drawer--top .drawer-hamburger,
.drawer--top.drawer-open .drawer-hamburger {
  right: 0;
}

/*!------------------------------------*\
    Left
\*!------------------------------------*/

.drawer--left .drawer-nav {
  left: -16.25rem;
  -webkit-transition: left .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: left .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
}

.drawer--left.drawer-open .drawer-hamburger {
  left: 16.25rem;
}


/*!------------------------------------*\
    Right
\*!------------------------------------*/

.drawer--right .drawer-nav {
  right: -16.25rem;
  right: -100%;
  -webkit-transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.drawer--right.drawer-open .drawer-nav {
  right: 0;
}


/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/

.drawer-hamburger {
  mix-blend-mode: multiply;
  box-sizing: content-box;
  display: block;
  width: 40px;
  height: 30px;
  padding: 0;
  -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 104;
  background-color: transparent;
}

@media screen and (min-width: 834px), print {
  .drawer-hamburger {
    width: alc(calc(60 / 1200) * 100vw);
    height: alc(calc(40 / 1200) * 100vw);
    top: 30px;
    right: 20px;
  }
}

@media screen and (min-width: 1200px), print {
  .drawer-hamburger {
    width: 60px;
    height: 40px;
  }
}

.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
}

.drawer-hamburger-icon {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  background-color: var(--color-main);
  border-radius: 2px;
  width: 100%;
  height: 4px;
  -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  content: ' ';
  position: absolute;
  right: 0;
}

.drawer-hamburger-icon:before {
  width: 30px;
  top: 10px;
}

.drawer-hamburger-icon:after {
  width: 20px;
  top: 20px;
}

@media screen and (min-width: 834px), print {
  .drawer-hamburger-icon:before {
    width: calc(calc(40 / 1200) * 100vw);
    top: calc(calc(15 / 1200) * 100vw);
  }

  .drawer-hamburger-icon:after {
    width: calc(calc(20 / 1200) * 100vw);
    top: calc(calc(30 / 1200) * 100vw);
  }
}

@media screen and (min-width: 1200px), print {
  .drawer-hamburger-icon:before {
    width: 40px;
    top: 15px;
  }

  .drawer-hamburger-icon:after {
    width: 20px;
    top: 30px;
  }
}

.drawer-open .drawer-hamburger {
  /*開いた時のアイコンの背景*/
  width: 40px;
  height: 40px;
  background: var(--color-back);
  mix-blend-mode: normal;
}

.drawer-open .drawer-hamburger-icon,
.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  width: 40px;
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 15px;
  /*開いた時の×の色*/
  background-color: var(--color-main);
}

@media screen and (min-width: 834px), print {
  .drawer-open .drawer-hamburger {
    width: calc(calc(60 / 1200) * 100vw);
    height: calc(calc(60 / 1200) * 100vw);
  }

  .drawer-open .drawer-hamburger-icon,
  .drawer-open .drawer-hamburger-icon:before,
  .drawer-open .drawer-hamburger-icon:after {
    width: calc(calc(60 / 1200) * 100vw);
  }
}

@media screen and (min-width: 1200px), print {
  .drawer-open .drawer-hamburger {
    width: 60px;
    height: 60px;
  }

  .drawer-open .drawer-hamburger-icon,
  .drawer-open .drawer-hamburger-icon:before,
  .drawer-open .drawer-hamburger-icon:after {
    width: 60px;
  }
}

.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}


/*!------------------------------------*\
    accessibility
\*!------------------------------------*/

/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */

.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/*!------------------------------------*\
    Container
\*!------------------------------------*/

.drawer-container {
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 833px) {
  /*!------------------------------------*\
    iPhoneでメニューをスクロールするとメニューが閉じてしまうバグ対策
\*!------------------------------------*/

  .drawer--top.drawer-open .drawer-nav {
    top: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .drawer--right.drawer-open .drawer-nav,
  .drawer--right .drawer-hamburger,
  .drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/*****************************************
*
* フッタ
*
******************************************/

footer {
  background: var(--color-white);
}

.footer-inner {
  position: relative;
  width: 100%;
  padding-top: 0;
}

@media screen and (max-width: 833px) {
  .footer-inner {
    background: var(--color-back);
    padding: 20px;
  }
}

@media screen and (min-width: 834px), print {
  .footer-inner {
    padding-top: 60px;
  }

  .footer-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-cont {
    text-align: left;
    background: var(--color-back);
    padding: 40px 60px;
    margin-top: 40px;
  }
}


/* フッタロゴ --------------------------------*/
footer .logo {
  display: flex;
  align-items: center;
}

footer .logo .mark {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('img/logo_mark.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 92/100;
  width: calc(92px / 2);
}

footer .logo .text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('img/logo_text.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 190/36;
  width: calc(190px / 1.2);
  margin-left: 10px;
}

@media screen and (max-width: 833px) {
  footer .logo {
    justify-content: center;
  }
}

@media screen and (min-width: 834px), print {
  footer .logo .mark {
    width: calc(92px / 2);
  }

  footer .logo .text {
    width: 190px;
    margin-left: 20px;
  }
}

/* フッタ 住所 --------------------------------*/
.footer-prof {
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 20px;
}

/* フッタ SDGs --------------------------------*/
.footer-sdgs {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('img/footer_sdgs.png') no-repeat;
  background-size: 100%;
  aspect-ratio: 129/56;
  width: 129px;
  margin-top: 20px;
}


/* フッタ コピーライト --------------------------------*/
.footer-copy {
  font-size: 0.7rem;
  font-weight: 500;
  margin-top: 20px;
}

@media screen and (min-width: 834px), print {
  .footer-copy {
    margin-top: 40px;
  }
}

/* フッタナビ --------------------------------*/

@media screen and (max-width: 833px) {
  .footer-nav {
    display: none;
  }
}

@media screen and (min-width: 834px), print {
  .footer-nav {
    text-align: left;
    background: var(--color-main);
    border-radius: 20px 0 0 0;
    padding: 40px 60px 60px 60px;
  }

  .footer-nav li {
    width: 200px;
    border-bottom: solid 1px var(--color-white);
    padding: 10px 0;
  }

  .footer-nav li a {
    position: relative;
    text-align: left;
    color: var(--color-white);
    font-size: 0.9rem;
    padding-left: 15px;
  }

  .footer-nav li a:hover {
    text-decoration: none;
  }

  .footer-nav li a::before {
    content: '';
    display: inline-block;
    background: var(--color-white);
    width: 4px;
    height: 6px;
    transform: skewX(-45deg);
    position: absolute;
    top: 50%;
    transform: translateY(-50%) skewX(-45deg);
    left: 0;
    transition: all .5s ease;
  }

  .footer-nav li a:hover::before {
    transform: rotate(-45deg) skewX(-45deg);
  }
}

/*------------------------------------------*/
/* フッタ上へ
/*------------------------------------------*/
.totop {
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('img/totop.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 34/84;
  width: calc(calc(34 / 768) * 100vw);
  height: auto;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: all .5s ease;
  z-index: 99;
}

.totop:hover {
  transform: translateY(-10px);
}

@media screen and (min-width: 834px), print {
  .totop {
    background: url('img/totop_white.svg') no-repeat;
    background-size: 100%;
    width: 34px;
    top: 100px;
    right: 40px;
  }
}

/*****************************************
*
* 印刷用
*
******************************************/

@media print {
  body {
    width: 1200px;
    transform: scale(0.8);
    transform-origin: 0 0;
    -webkit-print-color-adjust: exact;
  }

  /* FireFoxテーブル印刷バグ回避 */
  _:-ms-lang(x)::-ms-backdrop, .wrapper {
    overflow: auto;
    display: table;
  }
}


/*****************************************
*
* フォーム
*
******************************************/

/*---------------------------------------------
* 完了画面
----------------------------------------------*/

div.mfp_thanks {
  padding: 30px;
}

div.mfp_thanks p {
  line-height: 1.7em;
}

div.mfp_thanks ul.mfp_caution {
  margin: 0px;
  padding: 0px;
}

div.mfp_thanks ul.mfp_caution li {
  display: block;
  color: var(--color-red);
  margin: 0px;
  padding: 5px 0px;
}

div#mfp_thanks {
  text-align: center;
  font-size: 18px;
  padding: 20px 0px;
}

div#mfp_thanks strong {
  color: var(--color-red);
  font-size: 24px;
}

/*------------------------------------------*/
/* フォームレイアウト
/*------------------------------------------*/

/*  --------------------------------*/
.mfp_colored {
  background-color: transparent;
}

.mfp_achroma {
  background-color: transparent;
}

.mfp_element_all {
  max-width: 100%;
}

/*  --------------------------------*/
form#mailformpro dl dt {
  text-align: left;
  font-size: 1rem;
  border: 0;
  padding-top: 5px;
}

form#mailformpro dl dd {
  margin: 0px;
  padding: 10px;
  font-size: 1rem;
  line-height: 1.5em;
  text-align: left;
}

@media screen and (max-width: 767px) {
  form#mailformpro dl dd {
    border-bottom: solid 1px var(--color-light-gray);
  }
}

@media screen and (min-width: 768px), print {
  form#mailformpro dl dt {
    border-top: solid 1px var(--color-light-gray);
    float: left;
    width: 30%;
  }

  form#mailformpro dl dd {
    border-top: solid 1px var(--color-light-gray);
    padding-left: 30%;
  }
}

dd:after {
  content: '';
  display: block;
  clear: both;
}

/*  --------------------------------*/
.mailform {
  text-align: left;
}

.mailform li {
  padding-bottom: 5px !important;
}

.mailform li:last-child {
  padding-bottom: 0px !important;
}

/* 必須 */
.must {
  display: inline;
  border: 0;
  text-shadow: none;
  float: none;
  margin: 0;
  color: var(--color-white);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  line-height: 1.1;
  background: var(--color-red);
  border-radius: 4px;
  padding: 2px 5px;
  margin-left: 10px;
  vertical-align: middle;
}

.mform-policy {
  margin-top: 20px;
}

.mform-list li {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .mform-policy {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 768px), print {
  .mform-policy {
    margin-bottom: 40px;
  }
}

/*---------------------------------------------
*  フォームパーツ
----------------------------------------------*/
.mform-def {
  width: 260px !important;
}

.mform-zip,
.mform-name {
  width: 200px !important;
}

.mform-text {
  width: 360px !important;
  height: 200px !important;
}

@media screen and (max-width: 320px) {
  .mform-def {
    width: 220px !important;
  }

  .mform-text {
    width: 300px !important;
  }
}

@media screen and (min-width: 600px), print {
  .mform-def {
    width: 400px !important;
  }

  .mform-text {
    width: 400px !important;
  }
}

/*---------------------------------------------
親から継承せず、システムデフォルトの体裁を使用してしまう事象の対策
（このタグを入れておけば、placeholderのフォントがbodyのフォントになり、
input::placeholderのフォント指定が不要になる）
----------------------------------------------*/
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

/*---------------------------------------------
プレイスホルダー文字列
※ベンダーフレックスはまとめると何故か効かなくなるので注意
----------------------------------------------*/
::placeholder {
  color: #c1c1c1;
}

::-webkit-input-placeholder {
  color: #c1c1c1;
}

:-moz-placeholder {
  color: #c1c1c1;
}

::-moz-placeholder {
  color: #c1c1c1;
}

:-ms-input-placeholder {
  color: #c1c1c1;
}

/*---------------------------------------------
* 入力エリア
----------------------------------------------*/

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  font-size: 1rem;
  padding: 0.4em;
  border: solid 1px var(--color-light-gray);
}

/* mailformproのスタイル */
.mfp_element_text,
.mfp_element_number,
.mfp_element_select-one,
.mfp_element_email,
.mfp_element_tel,
.mfp_element_textarea,
.mfp_element_date,
.mfp_element_password {
  border: solid 1px var(--color-light-gray);
  border-radius: 0px;
  box-shadow: 0px 0px 0px var(--color-light-gray) inset;
  padding: 3px 8px;
  margin: 0px;
  vertical-align: middle;
  -webkit-border-radius: 0px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*---------------------------------------------
* select
----------------------------------------------*/

select,
.mfp_element_select-one {
  /* styling */
  background-color: var(--color-white);
  display: inline-block;
  color: var(--color-text);
  font: inherit;
  padding: 0.4em 3.5em 0.4em 1em;
  border: solid 1px var(--color-light-gray);
  /* reset */
  margin: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}


/* IE reset */
select::-ms-expand {
  display: none;
}

select.minimal {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-gray) 50%),
    linear-gradient(135deg, var(--color-gray) 50%, transparent 50%),
    linear-gradient(to right, var(--color-light-gray), var(--color-light-gray));
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    0px 1.5em;
  background-repeat: no-repeat;
}

/*---------------------------------------------
* checkbox

  mailformpro.cssの一部をコメントアウト
  このフォームのシステム上、labelのforの設定は不要

  チェック後のcss適用は通常、
  input[type="radio"]:checked + label::before
  のようにするところ、フォームで.mform-checkが書き出されるため、それを使用
  （ローカルでは作動しないので注意）
----------------------------------------------*/
input[type="checkbox"] {
  display: none;
}

form#mailformpro .mform-check label {
  position: relative;
  display: inline-block;
  padding: 3px 3px 3px 22px;
  cursor: pointer;
  transition: all .2s;
}

form#mailformpro .mform-check label::before,
form#mailformpro .mform-check label::after {
  position: absolute;
  content: '';
  transition: all .2s;
}

form#mailformpro .mform-check label::before {
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 0;
}

form#mailformpro .mform-check label::after {
  opacity: 0;
  top: 50%;
  left: 3px;
  width: 8px;
  height: 4px;
  margin-top: -4px;
  border-left: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
  transform: rotate(-45deg) scale(.5);
}

form#mailformpro .mform-check label:hover::before {
  background: var(--color-white);
}

form#mailformpro .mform-check .mfp_checked::before {
  background: var(--color-white);
  border: 1px solid var(--color-main);
}

form#mailformpro .mform-check .mfp_checked::after {
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}

/*---------------------------------------------
* radio

  mailformpro.cssの一部をコメントアウト
  このフォームのシステム上、labelのforの設定は不要

  チェック後のcss適用は通常、
  input[type="radio"]:checked + label::before
  のようにするところ、フォームで.mform-checkが書き出されるため、それを使用
  （ローカルでは作動しないので注意）
----------------------------------------------*/
input[type="radio"] {
  display: none;
}

form#mailformpro .mform-radio label {
  position: relative;
  display: inline-block;
  padding: 3px 3px 3px 20px;
  cursor: pointer;
}

form#mailformpro .mform-radio label::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 100%;
}

form#mailformpro .mform-radio .mfp_checked::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: var(--color-main);
  border-radius: 100%;
}

/*---------------------------------------------
* 確認チェック
----------------------------------------------*/

form#mailformpro label.mfp_not_checked {
  padding: 3px;
  padding-left: 2em;
  border: solid 0px var(--color-light-gray);
}

form#mailformpro label.mfp_checked {
  padding: 3px;
  padding-left: 2em;
  border: solid 0px var(--color-light-gray);
  background-color: transparent;
  box-shadow: 0px 0px 0px var(--color-light-gray) inset;
}

/*---------------------------------------------
* ボタン
----------------------------------------------*/

input[type="submit"] {
  -webkit-appearance: none;
}

.mfp_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*送信*/
/* mailformproのスタイル */
.mfp_buttons .submit,
.mfp_element_submit, .mfp_element_reset, .mfp_element_button, button.mfp_next, button.mfp_prev {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 200px;
  height: 60px;
  background: var(--color-red);
  border: solid 1px var(--color-red);
  border-radius: 40px;
  color: var(--color-white);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  padding: 0;
  margin-top: 20px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/*リセット*/
/* mailformproのスタイル */
.mfp_buttons .reset,
.mfp_element_reset {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 200px;
  height: 60px;
  background: var(--color-text);
  border: solid 0px var(--color-text);
  border-radius: 40px;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--color-white);
  padding: 0;
  margin-top: 20px;
  margin-left: 20px;
  transition: all .5s ease;
}

@media screen and (max-width: 850px) {
  .mfp_buttons .reset {
    margin-left: 0;
  }
}


/*確認画面 キャンセル*/
/* mailformproのスタイル */
div.mfp_buttons button#mfp_button_cancel {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 200px;
  height: 60px;
  background: var(--color-white);
  border: solid 1px var(--color-text);
  border-radius: 40px;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--color-text);
  padding: 0;
  margin-top: 20px;
  margin-left: 40px;
  transition: all .5s ease;
}

@media screen and (max-width: 850px) {
  div.mfp_buttons button#mfp_button_cancel {
    margin-top: 20px;
    margin-left: 0;
  }
}

/* mailformproのスタイル */
.mfp_buttons .submit:hover,
.mfp_element_submit:hover,
.mfp_element_button:hover {
  background: var(--color-red);
  border: solid 1px var(--color-red);
  border-radius: 40px;
  color: var(--color-white);
  padding: 0;
  transform: scale(0.9);
}

/* mailformproのスタイル */
.mfp_buttons .reset:hover,
.mfp_element_reset:hover, button.mfp_next:hover, button.mfp_prev:hover {
  letter-spacing: 0.1em;
  border: solid 1px var(--color-text);
  border-radius: 40px;
  padding: 0;
  background: var(--color-text);
  color: var(--color-white);
  transform: scale(0.9);
}


/*****************************************
*
* 新着情報
*
******************************************/

.info-list {
  text-align: left;
  width: 100%;
}

.info-list li {
  border-bottom: dotted 1px var(--color-gray);
}

.info-list li a {
  color: var(--color-text);
  font-size: 0.9rem;
  transition: all .5s ease;
}

.info-list li a:visited {
  color: var(--color-gray);
}

.info-list li a:hover {
  background: var(--color-back);
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .info-list li {
    padding: 10px 0;
  }
}

@media screen and (min-width: 768px), print {
  .info-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1rem;
    padding: 20px 0;
  }
}

/* 日付 --------------------------------*/

@media screen and (min-width: 768px), print {
  .info-list li a .date {
    width: 8em;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

/* タイトル --------------------------------*/
.info-list .title {
  width: 100%;
}

/*------------------------------------------*/
/* ページ送り
/*------------------------------------------*/

.info-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0px;
}

.info-button li {
  width: 30%;
}

.info-button .list a,
.info-button .prev a,
.info-button .next a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: var(--color-main);
  font-size: 0.8rem;
  background: var(--color-white);
  border: solid 2px var(--color-main);
  border-radius: 40px;
  transition: all .5s ease;
}

.info-button .list a {
  padding: 3px 10px;
}

.info-button .prev a {
  padding: 3px 10px 3px 20px;
}

.info-button .next a {
  padding: 3px 20px 3px 10px;
}

.info-button .prev a::before,
.info-button .next a::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border: 2px solid;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: all .5s ease;
}

.info-button .prev a::before {
  border-color: transparent transparent var(--color-main) var(--color-main);
  left: 10px;
}

.info-button .next a::before {
  border-color: var(--color-main) var(--color-main) transparent transparent;
  right: 10px;
}

.info-button .list a:hover,
.info-button .prev a:hover,
.info-button .next a:hover {
  text-decoration: none;
  transform: scale(0.9);
}

@media screen and (min-width: 834px), print {
  .info-button {
    font-size: 1rem;
    margin-top: 60px;
  }

  .info-button li {
    width: 30%;
  }

  .info-button .list a,
  .info-button .prev a,
  .info-button .next a {
    padding: 10px 20px;
  }

  .info-button .prev a::before,
  .info-button .next a::before {
    width: 10px;
    height: 10px;
  }

  .info-button .prev a::before {
    left: 20px;
  }

  .info-button .next a::before {
    right: 20px;
  }
}


/*------------------------------------------*/
/* ページ送り 一覧ページ
/*------------------------------------------*/

.info-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.info-pagination .list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-pagination .list .number a,
.info-pagination .list .number.current {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: solid 1px var(--color-main);
  border-radius: 50%;
  color: var(--color-text);
  transition: all .5s ease;
}

.info-pagination .list .number.current {
  background: var(--color-main);
  color: var(--color-white);
}

.info-pagination .list .number a:hover {
  text-decoration: none;
}

.info-pagination .list .number a,
.info-pagination .list .number.current,
.info-pagination li.prev a,
.info-pagination li.next a {
  width: 30px;
  height: 30px;
}

.info-pagination li.prev a,
.info-pagination li.next a {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  transition: all .5s ease;
}

.info-pagination li.prev a,
.info-pagination li.next a {
  background: url('img/arrow_next.svg') no-repeat;
  background-size: 100%;
}

.info-pagination li.prev.start a,
.info-pagination li.next.end a {
  background: url('img/arrow_next_end.svg') no-repeat;
  background-size: 100%;
}

.info-pagination li.prev a,
.info-pagination li.prev.start a {
  transform: scale(-1, 1);
}

.info-pagination li.prev a:hover,
.info-pagination li.next a:hover {
  text-decoration: none;
  background: url('img/arrow_next_on.svg') no-repeat;
  background-size: 100%;
}

.info-pagination li.prev.start a:hover,
.info-pagination li.next.end a:hover {
  text-decoration: none;
  background: url('img/arrow_next_end_on.svg') no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 834px), print {
  .info-pagination {
    margin-top: 60px;
  }

  .info-pagination .list .number a,
  .info-pagination .list .number.current,
  .info-pagination li.prev a,
  .info-pagination li.next a {
    width: 40px;
    height: 40px;
  }
}

/*------------------------------------------*/
/* ページ 見出し
/*------------------------------------------*/

.info-pages-heading {
  position: relative;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.info-pages-heading::before {
  content: '';
  display: inline-block;
  background-image: -webkit-repeating-linear-gradient(135deg, var(--color-main), var(--color-main) 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, var(--color-main), var(--color-main) 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -10px;
  left: 0;
}

@media screen and (min-width: 834px), print {
  .info-pages-heading {
    font-size: 1.6rem;
    margin-bottom: 60px;
  }
}

/*------------------------------------------*/
/* Lightbox
/*------------------------------------------*/


.lb-nav a.lb-prev,
.lb-nav a.lb-next,
.lb-data .lb-close {
  width: 50%;
  height: 100%;
  float: none;
  opacity: 1;
  display: inline-block;
  position: absolute;
  top: 0;
}

.lb-nav a.lb-prev {
  left: -80px;
}

.lb-nav a.lb-next {
  right: -80px;
}

.lb-data .lb-close {
  top: -40px;
  right: 10px;
}

.lb-data .lb-number {
  opacity: 0;
}

@media screen and (min-width: 1000px), print {
  .lb-data .lb-close {
    top: -10px;
    right: 40px;
  }
}


/*****************************************
*
* ページレイアウト
*
******************************************/

.submain {
  z-index: 2;
  animation-name: fadeinImg;
  animation-duration: 5s;
}

/* 画像 --------------------------------*/
.submain figure {
  position: relative;
  width: 100% height: 200px;
  overflow: hidden;
}

.submain figure::after {
  content: '';
  display: inline-block;
  background: url('img/submain_half_circle.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 140/8;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
}

.submain figure::before {
  content: '';
  display: inline-block;
  background: rgb(0, 167, 60);
  background: linear-gradient(0deg, rgba(0, 167, 60, 0.3) 0%, rgba(0, 71, 157, 0.3) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all .5s ease;
}

.submain figure img {
  width: 100%;
}

@media screen and (min-width: 834px), print {
  .submain figure {
    height: 200px;
  }
}

@media screen and (min-width: 1200px), print {
  .submain figure {
    height: 400px;
  }
}

/* キャッチコピー --------------------------------*/
.submain-heading {
  background: var(--color-back);
}

.submain-heading .en {
  color: var(--color-main);
  font-size: 0.9rem;
  font-weight: bold;
}

.submain-heading .jp {
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  margin-top: 20px;
}

@media screen and (min-width: 834px), print {
  .submain-heading .en {
    font-size: 1rem;
  }

  .submain-heading .jp {
    font-size: 2rem;
    margin-top: 40px;
  }
}

/* パンくず --------------------------------*/
.breadcrumb {
  text-align: left;
  background: var(--color-back);
  color: var(--color-dark-gray);
  font-size: 0.8rem;
  font-weight: bold;
  padding: 20px;
}

.breadcrumb li {
  display: inline-block;
  position: relative;
}

.breadcrumb li+li {
  margin-left: 20px;
}

.breadcrumb li:not(:last-child)::after {
  content: '';
  display: inline-block;
  background: var(--color-light-main);
  width: 1px;
  height: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  right: -12px;
}

.breadcrumb li a {
  color: var(--color-dark-gray);
  transition: all .5s ease;
}

@media screen and (min-width: 834px), print {
  .breadcrumb {
    padding: 20px 60px;
  }
}


/*------------------------------------------*/
/* section
/*------------------------------------------*/

.section-back {
  background: var(--color-white);
}

.section {
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-top: 80px;
  padding-bottom: 80px;
}

.section-back>.section {
  margin-top: 0;
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (min-width: 834px), print {

  .section {
    width: calc(100% - 120px);
    margin-top: 160px;
    padding-bottom: 160px;
  }

  .section-back>.section {
    margin-top: 0;
    padding-top: 160px;
    padding-bottom: 160px;
  }
}

@media screen and (min-width: 1200px), print {
  .section {
    width: 1100px;
  }
}



/*****************************************
*
* 共通パーツ
*
******************************************/

/*------------------------------------------*/
/* 外部リンク
/*------------------------------------------*/

.link-blank {
  color: var(--color-main);
}

.link-blank::after {
  content: '';
  display: inline-block;
  background: url('../img/link_blank.svg') no-repeat;
  background-size: 100%;
  width: 15px;
  height: 15px;
  margin-left: 3px;
}

.link-blank-black::after {
  content: '';
  display: inline-block;
  background: url('../img/link_blank_black.svg') no-repeat;
  background-size: 100%;
  width: 15px;
  height: 15px;
  margin-left: 3px;
}

.link-blank-white::after {
  content: '';
  display: inline-block;
  background: url('../img/link_blank_white.svg') no-repeat;
  background-size: 100%;
  width: 15px;
  height: 15px;
  margin-left: 3px;
}

/*------------------------------------------*/
/* PDFリンク
/*------------------------------------------*/

.link-pdf {
  color: var(--color-main);
}

.link-pdf::before {
  content: '';
  display: inline-block;
  background: url('../img/icon_pdf.svg') no-repeat;
  background-size: 100%;
  width: calc(17px / 1);
  height: calc(20px / 1);
  margin-right: 3px;
}

.link-pdf::after {
  content: '';
  display: inline-block;
  background: url('../img/link_blank.svg') no-repeat;
  background-size: 100%;
  width: 15px;
  height: 15px;
  margin-left: 3px;
}

/*------------------------------------------*/
/* テキスト
/*------------------------------------------*/
.text-def {
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8rem;
}

/*------------------------------------------*/
/* 注意書き
/*------------------------------------------*/
.notes {
  padding-left: 1em;
  text-indent: -1em;
}

/*------------------------------------------*/
/* 文字色
/*------------------------------------------*/
.text-red {
  color: var(--color-red);
}

/*------------------------------------------*/
/* margin
/*------------------------------------------*/
.margin-p {
  margin-top: 2rem;
}

/*------------------------------------------*/
/* H3
/*------------------------------------------*/

.heading-tertiary {
  position: relative;
  text-align: left;
  height: 40px;
  color: var(--color-main);
  font-size: 1rem;
  font-weight: bold;
  padding: 0 21px;
  margin-bottom: 40px;
}

.heading-tertiary p {
  display: flex;
  align-items: center;
  border-color: var(--color-main);
  border-width: 1px 0 1px 0;
  border-style: solid;
  height: 100%;
  padding: 0 10px;
}

.heading-tertiary::before,
.heading-tertiary::after {
  content: '';
  display: inline-block;
  aspect-ratio: 32/60;
  width: auto;
  height: 40px;
  position: absolute;
  top: 0;
}

.heading-tertiary::before {
  background: url('img/heading-tertiary_l.svg') no-repeat;
  background-size: 100%;
  left: 0;
}

.heading-tertiary::after {
  background: url('img/heading-tertiary_r.svg') no-repeat;
  background-size: 100%;
  right: 0;
}

@media screen and (min-width: 834px), print {
  .heading-tertiary {
    height: 60px;
    font-size: 1.6rem;
    padding: 0 32px;
    margin-bottom: 80px;
  }

  .heading-tertiary p {
    padding: 0 20px;
  }

  .heading-tertiary::before,
  .heading-tertiary::after {
    height: 60px;
  }
}

/*------------------------------------------*/
/* H4
/*------------------------------------------*/
.heading-quaternary {
  position: relative;
  color: var(--color-main);
  font-size: 1.1rem;
  font-weight: bold;
}

.heading-quaternary:before {
  content: '';
  display: inline-block;
  background-image: -webkit-repeating-linear-gradient(135deg, var(--color-main), var(--color-main) 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, var(--color-main), var(--color-main) 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -10px;
  left: 0;
}

@media screen and (min-width: 834px), print {
  .heading-quaternary {
    text-align: left;
    font-size: 1.6rem;
  }
}

/*------------------------------------------*/
/* ボタン
/*------------------------------------------*/

.pages-btn {
  margin-top: 40px;
}

@media screen and (min-width: 834px), print {
  .pages-btn {
    margin-top: 80px;
  }
}

/* ボタン --------------------------------*/
.btn-type1 {
  position: relative;
  display: inline-block;
  border: solid 1px var(--color-white);
  border-radius: 60px;
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: bold;
  padding: 10px 30px;
  transition: all .5s ease;
}

a.btn-type1 {
  color: var(--color-white);
}

.btn-type1.green {
  border: solid 1px var(--color-main);
  color: var(--color-main);
}

.btn-type1.green-back {
  background: var(--color-main);
  border: solid 1px var(--color-main);
}

.btn-type1::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-color: transparent transparent transparent var(--color-white);
  border-width: 4px 0 4px 7px;
  border-style: solid;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}

.btn-type1.green::before {
  border-color: transparent transparent transparent var(--color-main);
}

.btn-type1:hover {
  text-decoration: none;
  background: var(--color-main);
  border-color: var(--color-main);
}

.btn-type1.green:hover {
  color: var(--color-white);
}

.btn-type1.green-back:hover {
  background: transparent;
  color: var(--color-main);
}

.btn-type1.green:hover::before {
  border-color: transparent transparent transparent var(--color-white);
}

.btn-type1.green-back:hover::before {
  border-color: transparent transparent transparent var(--color-main);
}

@media screen and (min-width: 834px), print {
  .btn-type1 {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 40px;
  }
}


/*------------------------------------------*/
/* 表
/*------------------------------------------*/
.table-type1 {
  border-collapse: collapse;
  width: 100%;
}

.table-type1 th,
.table-type1 td {
  text-align: left;
  border-bottom: 1px dashed var(--color-light-gray);
  padding: 20px 0;
}

.table-type1 th {
  font-weight: bold;
}

.table-type1 td {
  text-align: justify;
  text-justify: inter-ideograph;
}

@media screen and (max-width: 767px) {

  .table-type1 tr,
  .table-type1 th,
  .table-type1 td {
    display: block;
    width: auto;
  }

  .table-type1 th,
  .table-type1 td {
    border-bottom: 1px solid var(--color-light-gray);
    padding: 10px 0;
  }

  .table-type1 th {
    border-bottom: 1px dotted var(--color-light-gray);
  }
}

@media screen and (min-width: 768px), print {
  .table-type1 th {
    width: 10em;
  }

  .table-type1.w4 th {
    width: 4em;
  }

  .table-type1.w6 th {
    width: 6em;
  }

  .table-type1.w8 th {
    width: 8em;
  }

  .table-type1.w12 th {
    width: 12em;
  }

  .table-type1.w14 th {
    width: 14em;
  }

  .table-type1.w16 th {
    width: 16em;
  }

  .table-type1.w18 th {
    width: 18em;
  }

  .table-type1.w20 th {
    width: 20em;
  }
}


/*------------------------------------------*/
/* キャッチコピー
/*------------------------------------------*/

.catchcopy {
  font-size: 1rem;
  font-weight: bold;
  line-height: 2.2;
  margin-top: 60px;
}

@media screen and (min-width: 834px), print {
  .catchcopy {
    font-size: 1.4rem;
    margin-top: 100px;
  }
}

/*------------------------------------------*/
/* テキスト
/*------------------------------------------*/

.introtext {
  line-height: 2.2;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .introtext br {
    display: none;
  }
}

@media screen and (min-width: 834px), print {
  .introtext {
    margin-top: 100px;
  }
}

/*****************************************
*
* HOME
*
******************************************/

.top-back-wrap {
  position: relative;
  background: var(--color-white);
}

/*------------------------------------------*/
/* メイン
/*------------------------------------------*/

.topmain {
  position: relative;
  display: flex;
  z-index: 2;
  animation-name: fadeinImg;
  animation-duration: 5s;
}

/* キャッチコピー --------------------------------*/
.topmain-copy {
  text-align: left;
}

.topmain-copy .en {
  color: var(--color-main);
  font-size: calc(calc(24 / 768) * 100vw);
  font-weight: bold;
  padding: 0 20px;
}

.topmain-copy .jp {
  position: relative;
  color: var(--color-white);
  font-size: calc(calc(54 / 768) * 100vw);
  font-weight: bold;
  letter-spacing: 0.15em;
  padding: 0 20px;
}

.topmain-copy .jp span {
  color: var(--color-text);
}

.topmain-copy .jp::before {
  content: '';
  display: inline-block;
  background: var(--color-main);
  border-radius: 0 10px 10px 0;
  width: 100%;
  height: calc(calc(180 / 768) * 100vw);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .topmain-copy {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 6;
  }
}

@media screen and (min-width: 768px), print {
  .topmain-copy {
    display: inline-block;
    width: 37%;
    margin-top: calc(calc(120 / 1200) * 100vw);
    margin-left: 60px;
  }

  .topmain-copy .en {
    font-size: calc(calc(24 / 1200) * 100vw);
    line-height: 1;
    padding-left: calc(calc(60 / 1200) * 100vw);
  }

  .topmain-copy .jp {
    font-size: calc(calc(44 / 1200) * 100vw);
    padding-top: calc(calc(20 / 1200) * 100vw);
    padding-left: calc(calc(60 / 1200) * 100vw);
  }

  .topmain-copy .jp::before {
    border-radius: 20px 0 0 20px;
    width: 140%;
    height: calc(calc(160 / 1200) * 100vw);
  }
}


/* スライダー --------------------------------*/
.topmain-slider {
  position: relative;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .topmain-slider {
    margin-top: -45px;
    margin-left: calc(100vw / 6);
  }
}

@media screen and (min-width: 768px), print {
  .topmain-slider {
    width: 62%;
    margin-top: calc(calc(-150 / 1200) * 100vw);
    margin-right: calc(calc(-40 / 1200) * 100vw);
  }
}

.swiper-container {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.swiper-slide img {
  width: 100%;
}

/* スライダー ナビ --------------------------------*/
.topmain-slider .swiper-button-prev:after,
.topmain-slider .swiper-button-next:after {
  content: none;
}

.topmain-slider .swiper-button-prev,
.topmain-slider .swiper-button-next {
  display: block;
  align-items: start;
  justify-content: start;
  background: url('img/arrow.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 83/34;
  width: calc(calc(90 / 768) * 100vw);
  height: auto;
  position: absolute;
  top: auto;
  bottom: 0;
  transition: all .5s ease;
}

.topmain-slider .swiper-button-prev {
  transform: scale(-1, 1);
  left: calc(calc(60 / 768) * 100vw);
}

.topmain-slider .swiper-button-next {
  right: calc(calc(140 / 768) * 100vw);
}

.topmain-slider .swiper-button-prev:hover {
  transform: translateX(-10px) scale(-1, 1);
}

.topmain-slider .swiper-button-next:hover {
  transform: translateX(10px);
}

@media screen and (min-width: 768px), print {

  .topmain-slider .swiper-button-prev,
  .topmain-slider .swiper-button-next {
    width: calc(calc(90 / 1200) * 100vw);
    bottom: calc(calc(120 / 1200) * 100vw);
    width: calc(calc(90 / 1200) * 100vw);
  }

  .topmain-slider .swiper-button-prev {
    left: calc(calc(50 / 1200) * 100vw);
  }

  .topmain-slider .swiper-button-next {
    right: calc(calc(50 / 1200) * 100vw);
  }
}

/*------------------------------------------*/
/* HOME 共通
/*------------------------------------------*/

/* 見出し --------------------------------*/
.top-heading {
  padding: 20px;
}

.top-heading .en {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: bold;
}

.top-heading .jp {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: bold;
}

@media screen and (min-width: 768px), print {
  .top-heading {
    text-align: left;
    padding: 40px 60px;
  }

  .top-heading .en {
    font-size: calc(calc(56 / 1200) * 100vw);
    font-weight: 600;
  }

  .top-heading .jp {
    font-size: 1.1rem;
    font-weight: 600;
  }
}

@media screen and (min-width: 1200px), print {
  .top-heading {
    width: 1100px;
    padding: 0 0 60px 0;
    margin: 0 auto;
  }

  .top-heading .en {
    font-size: 3.5rem;
  }
}


/*------------------------------------------*/
/* HOME about
/*------------------------------------------*/

.top-about {
  position: relative;
  background: var(--color-main);
}

.top-about::after {
  content: '';
  display: inline-block;
  background: var(--color-main);
  width: 100%;
  height: calc(calc(60 / 768) * 100vw);
  position: absolute;
  top: calc(calc(-60 / 768) * 100vw);
  left: 0;
}

@media screen and (min-width: 768px), print {
  .top-about::after {
    height: calc(calc(100 / 1200) * 100vw);
    top: calc(calc(-100 / 1200) * 100vw);
  }
}

/* 画像 --------------------------------*/
.top-about .box {
  position: relative;
}

.top-about .box .cont {
  width: 100%;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top-about .box .text {
  text-align: left;
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 2;
}

.top-about .box .btn {
  margin-top: 40px;
}

.top-about figure img {
  aspect-ratio: 280/72;
  width: 100%;
  height: 260px;
}

@media screen and (min-width: 768px), print {
  .top-about .box .cont {
    padding: 60px;
  }

  .top-about .box .text {
    font-size: 1rem;
  }

  .top-about .box .btn {
    text-align: right;
  }

  .top-about figure img {
    height: auto;
  }
}

@media screen and (min-width: 1200px), print {
  .top-about .box .cont {
    width: 1100px;
    padding: 60px 0;
  }

  .top-about .box .btn {
    margin-top: 60px;
  }
}

/*------------------------------------------*/
/* 事業内容
/*------------------------------------------*/

.top-service {
  position: relative;
  z-index: 2;
}

.top-service .heading-wrap {
  background: var(--color-main);
  padding-top: 60px;
}

@media screen and (min-width: 768px), print {
  .top-service .heading-wrap {
    padding-top: 100px;
  }

  .top-service .top-heading {
    padding-top: 0;
  }
}


/* list --------------------------------*/
.top-service__list {
  position: relative;
}

.top-service__list::before {
  content: '';
  display: inline-block;
  background: var(--color-main);
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .top-service__list {
    padding: 0 20px 40px 20px;
  }

  .top-service__list li+li {
    margin-top: 10px;
  }

  .top-service__list::after {
    content: '';
    display: inline-block;
    background: var(--color-main);
    width: 100%;
    height: 10%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

@media screen and (min-width: 768px), print {
  .top-service__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0 4px;
  }

  .top-service__list::before {
    width: 100%;
    height: 50%;
  }
}

/* list a --------------------------------*/
.top-service__list li {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (min-width: 768px), print {
  .top-service__list li:nth-of-type(1) {
    border-radius: 0 10px 10px 0;
  }

  .top-service__list li:nth-of-type(3) {
    border-radius: 10px 0 0 10px;
  }
}

.top-service__list li a::before {
  content: '';
  display: inline-block;
  background: rgb(0, 167, 60);
  background: linear-gradient(0deg, rgba(0, 167, 60, 0.7) 0%, rgba(0, 71, 157, 0.7) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all .5s ease;
}

.top-service__list li a:hover figure img {
  transform: scale(1.1);
}

.top-service__list li a:hover::before {
  background: rgba(0, 0, 0, 0.5);
}

/* cont --------------------------------*/
.top-service__list .cont {
  display: inline-block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* 小見出し --------------------------------*/
.top-service__list .heading {
  color: var(--color-white);
}

.top-service__list .heading .en {
  font-size: 0.8rem;
  font-weight: bold;
}

.top-service__list .heading .jp {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px), print {
  .top-service__list .heading .en {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
  }

  .top-service__list .heading .jp {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1200px), print {
  .top-service__list .heading .en {
    margin-top: 20px;
  }

  .top-service__list .heading .jp {
    margin-bottom: 40px;
  }
}


/* 画像 --------------------------------*/
.top-service__list figure img {
  width: 100%;
  transition: all .5s ease;
}

/*------------------------------------------*/
/* HOME 採用情報
/*------------------------------------------*/

.top-recruit {
  position: relative;
}

@media screen and (min-width: 768px), print {
  .top-recruit::before {
    content: '';
    display: inline-block;
    background: #CBE0F7;
    width: 100%;
    height: calc(calc(360 / 2792) * 100vw);
    position: absolute;
    top: calc(calc(-360 / 2792) * 100vw);
    left: 0;
    z-index: -2;
  }

  .top-recruit .box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    padding: 40px 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (min-width: 1200px), print {
  .top-recruit .box {
    width: 1100px;
  }
}

/* 画像 --------------------------------*/
.top-recruit figure img {
  width: 100%;
}

/* 見出し --------------------------------*/
.top-recruit .top-heading {
  padding: 0;
}

.top-recruit .top-heading .en {
  color: var(--color-main);
}

.top-recruit .top-heading .jp {
  color: var(--color-text);
}

@media screen and (max-width: 767px) {
  .top-recruit .top-heading {
    display: inline-block;
    text-align: left;
    width: 100%;
    padding: 20px;
    position: absolute;
    top: 20px;
    left: 0px;
  }
}

@media screen and (min-width: 1200px), print {
  .top-recruit .top-heading {
    width: 100%;
  }
}

/* キャッチコピー --------------------------------*/
.top-recruit .copy {
  text-align: left;
  color: var(--color-main);
  font-size: 1rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .top-recruit .copy {
    padding: 20px;
    position: absolute;
    top: 100px;
    left: 0px;
  }
}

@media screen and (min-width: 768px), print {
  .top-recruit .copy {
    font-size: calc(calc(42 / 1200) * 100vw);
    margin-top: 40px;
  }
}

@media screen and (min-width: 1200px), print {
  .top-recruit .copy {
    font-size: 2.6rem;
    margin-top: 60px;
  }
}

/* テキスト --------------------------------*/
.top-recruit .text-def {
  font-weight: 600;
  padding: 20px;
}

@media screen and (min-width: 768px), print {
  .top-recruit .text-def {
    padding: 0;
    margin-top: 20px;
  }
}

@media screen and (min-width: 1200px), print {
  .top-recruit .text-def {
    margin-top: 40px;
  }
}

/*------------------------------------------*/
/* HOME 不動産情報
/*------------------------------------------*/

/* 見出し --------------------------------*/
.top-estate .top-heading {
  padding: 0;
  margin-bottom: 20px;
}

.top-estate .top-heading .en {
  color: var(--color-main);
  font-size: 1.2rem;
}

.top-estate .top-heading .jp {
  color: var(--color-text);
}

@media screen and (min-width: 768px), print {
  .top-estate .top-heading {
    margin-bottom: 60px;
  }

  .top-estate .top-heading .en {
    font-size: calc(calc(48 / 1200) * 100vw);
  }
}

@media screen and (min-width: 1200px), print {
  .top-estate .top-heading .en {
    font-size: 3rem;
  }
}

/* ボタン --------------------------------*/
.top-estate .btn {
  margin-top: 40px;
}

@media screen and (min-width: 768px), print {
  .top-estate .btn {
    text-align: right;
    margin-top: 60px;
  }
}


/*****************************************
*
* 事業内容
*
******************************************/

/*------------------------------------------*/
/* 項目
/*------------------------------------------*/

.pages-service__contents {
  position: relative;
  background: var(--color-white);
}

.pages-service__contents+.pages-service__contents {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .pages-service__contents .cont-wrap {
    padding-bottom: 80px;
  }

  .pages-service__contents .cont {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px), print {
  .pages-service__contents {
    display: flex;
  }

  .pages-service__contents.reverse {
    flex-direction: row-reverse;
  }

  .pages-service__contents .cont-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 20px;
    margin-right: 20px;
  }

  .pages-service__contents.reverse .cont-wrap {
    margin-left: 20px;
    margin-right: 20px;
  }

  .pages-service__contents .cont {
    text-align: left;
  }
}

@media screen and (min-width: 834px), print {
  .pages-service__contents .cont-wrap {
    margin-left: 60px;
    margin-right: 60px;
  }

  .pages-service__contents.reverse .cont-wrap {
    margin-left: 60px;
    margin-right: 60px;
  }
}

@media screen and (min-width: 1200px), print {
  .pages-service__contents .cont-wrap {
    width: 550px;
    margin-left: 100px;
    margin-right: 0;
  }

  .pages-service__contents.reverse .cont-wrap {
    margin-left: calc(50% - 550px);
    margin-right: 100px;
  }
}

/* 見出し --------------------------------*/
.pages-service__contents .heading-quaternary {
  display: inline-block;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .pages-service__contents .heading-quaternary::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (min-width: 768px), print {
  .pages-service__contents .heading-quaternary {
    margin-top: 0;
  }

  .pages-service__contents .heading-quaternary::before {
    left: 0;
  }
}

@media screen and (min-width: 834px), print {
  .pages-service__contents .heading-quaternary {
    font-size: 1.6rem;
  }
}

/* テキスト --------------------------------*/
.pages-service__contents .text-def {
  margin-top: 40px;
}

@media screen and (min-width: 834px), print {
  .pages-service__contents .text-def {
    margin-top: 60px;
  }
}

/* 画像 --------------------------------*/
.pages-service__contents figure img {
  width: 100%;
}

.pages-service__contents figure {
  overflow: hidden;
  height: 200px;
}

@media screen and (min-width: 768px), print {
  .pages-service__contents figure {
    flex-shrink: 0;
    border-radius: 0 10px 10px 0;
    width: 50%;
    height: 300px;
  }

  .pages-service__contents.reverse figure {
    border-radius: 10px 0 0 10px;
  }
}

@media screen and (min-width: 1200px), print {
  .pages-service__contents figure {
    height: 400px;
  }
}


/*****************************************
*
* エクステクノについて
*
******************************************/

/*------------------------------------------*/
/* 代表挨拶
/*------------------------------------------*/

.pages-about .message-box .en {
  color: var(--color-light-main);
  font-size: 2rem;
}

@media screen and (min-width: 768px), print {
  .pages-about .message-box {
    display: flex;
  }

  .pages-about .message-box .en {
    font-size: 3rem;
    margin-right: 40px;
  }
}

@media screen and (min-width: 834px), print {
  .pages-about .message-box .en {
    font-size: 4rem;
    margin-right: 60px;
  }
}

/* name --------------------------------*/
.pages-about .message-box .name {
  text-align: right;
  margin-top: 1em;
}


/*****************************************
*
* プライバシーポリシー
*
******************************************/

.pages-policy .heading {
  text-align: left;
  font-size: 1rem;
  font-weight: bold;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 2em;
}

.pages-policy .heading+.text-def {
  margin-left: 1.5em;
}

.pages-policy .list li {
  padding-left: 1em;
  text-indent: -1em;
}

/*****************************************
*
* 施工実績
*
******************************************/

/*------------------------------------------*/
/* 一覧
/*------------------------------------------*/

.achievements-box {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 40px 0;
}

@media screen and (min-width: 600px), print {
  .achievements-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 40px;
  }
}

@media screen and (min-width: 834px), print {
  .achievements-box {
    grid-gap: 80px 80px;
  }
}

/* 見出し --------------------------------*/
.achievements-box .heading-quaternary {
  text-align: left;
  font-size: 1rem;
  margin-bottom: 30px;
}

@media screen and (min-width: 834px), print {
  .achievements-box .heading-quaternary {
    font-size: 1.1rem;
  }
}

/* 画像 --------------------------------*/
.achievements-box .image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.achievements-box .image {
  overflow: hidden;
  aspect-ratio: 3/2;
}


/*****************************************
*
* 不動産情報
*
******************************************/

/*------------------------------------------*/
/* 記事
/*------------------------------------------*/

/* 日付 --------------------------------*/
.pages-estate-date {
  text-align: right;
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 15px;
}

/* 本文 --------------------------------*/
.pages-estate-contents {
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8rem;
  margin-top: 20px;
}

/* 画像 --------------------------------*/
.pages-estate-gallery {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px 20px;
  margin-top: 40px;
}

.pages-estate-gallery img {
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .pages-estate-gallery {
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px 40px;
    margin-top: 40px;
  }
}