@charset "UTF-8";

/*
Theme Name: さわやかの部屋リニューアル 2025
Author: 株式会社アド広研
Author URI: https://www.adkohken.co.jp/
Description: 【さわやかの部屋】のテーマです。2025年9月作成。
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: theme-textdomain
*/

/*-------------------------------------

【Outline】

- css variable
- reset / normalize css
- initialization
- parts
- animation of basic

---------------------------------------*/

/*-------------------------------------
css variable
---------------------------------------*/

:root {
  /* color */
  --color_theme01: #245472;
  --color_theme02: #8eb6c1;
  --color_font: #204a5b;
  --color_primary_bg: #f5f4ea;
  --color_primary_bg2: #edf7f7;
  --color_primary_bg3: #f0f7f0;
  --color_accent: #1fabb2;
  --color_primary_bl: #0f464c;
  --color_primary_gr: #a4adba;
  --color_primary_wh: #ffffff;
  --color_border: #a4adba;

  /* layout */
  --wideW: 1500px;
  --innerW: 1300px;
  --insideW: 1100px;
  --innerTBW: 900px;
  --innerSPW: 330px;

  /* font-style */
  --font_en: "Montserrat", sans-serif;
  --fw-thin: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;

  /* font-size */
  --fs-xs: clamp(10px, 1vw, 12px);
  --fs-s: clamp(13px, 1.4vw, 16px);
  --fs-m: clamp(16px, 2vw, 20px);
  --fs-l: clamp(20px, 2.4vw, 23px);
  --fs-xl: clamp(23px, 2.8vw, 28px);
  --fs-xxl: clamp(28px, 3.5vw, 36px);

  /* line-height */
  --lh-xs: 1.2;
  --lh-sm: 1.4;
  --lh-md: 1.6;
  --lh-lg: 1.8;
  --lh-xl: 2;

  /* Opacity on hover */
  --alpha: 0.7;
  --transition: 0.3s ease-in-out;
  --transition-slow: 1s ease-in-out;
}

/*-------------------------------------
reset / normalize css
---------------------------------------*/

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
input,
textarea,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}
a {
  color: var(--color_font);
  text-decoration: none;
  background-color: transparent;
}
strong {
  font-weight: 700;
}
em {
  font-style: normal;
  font-weight: 500;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border: 0;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  display: table;
  max-width: 100%;
  white-space: normal;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template,
[hidden] {
  display: none;
}
input,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  outline: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #999;
}
input::placeholder,
textarea::placeholder {
  color: #999;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace;
  font-size: 1em;
}
abbr[title] {
  border-bottom: 0;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}

/*-------------------------------------
initialization
---------------------------------------*/

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  letter-spacing: 0.05em;
  line-height: 2.25;
  font-feature-settings: "palt" 1;
  box-sizing: border-box;
  background: var(--color_primary_wh);
  color: var(--color_font);
  font-size: var(--fs-s);
  position: relative;
}
h2 {
  font-size: var(--fs-xl);
}
h3 {
  font-size: var(--fs-l);
}
h4 {
  font-size: var(--fs-m);
}
p {
  font-size: var(--fs-s);
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
a,
dt,
dd {
  font-feature-settings: "palt" 1;
}
img {
  max-width: 100%;
  height: auto;
}
.en {
  font-family: var(--font_en);
}
.en2 {
  font-family: var(--font_en2);
}
.ta {
  color: var(--color_theme01);
}
.ta2 {
  color: var(--color_theme02);
}
.sp-bl,
.tablet-bl {
  display: none !important;
}
.d-flex-pc {
  display: flex;
}
.inner {
  width: 85%;
  max-width: var(--innerW);
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.inside {
  width: 100%;
  max-width: var(--insideW);
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.opa {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.opa:hover {
  opacity: 0.75;
}
@media (max-width: 1200px) {
  .tablet-bl {
    display: block;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp-bl {
    display: block !important;
  }
  .d-flex-pc {
    display: block;
  }
  .inner {
    width: 85%;
    max-width: 550px !important;
    margin-right: auto;
    margin-left: auto;
    position: relative;
  }
  .inner-w {
    max-width: 550px !important;
  }
  .inside {
    max-width: var(--insideSPW);
  }
}
@media (max-width: 400px) {
  .inner {
    max-width: var(--innerSPW);
  }
}

/*-------------------------------------
parts
---------------------------------------*/

/* header  -------  */

header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  width: 100vw;
  height: 100px;
  transition: var(--transition);
}
.menu-open header {
  background: rgba(255, 255, 255, 0);
}
.h-logo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  margin-top: auto;
  margin-bottom: auto;
  max-width: 172px;
  height: fit-content;
}
.page-menu {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  right: 215px;
  height: fit-content;
}
.page-menu ul {
  display: flex;
}
.page-menu ul li {
  line-height: 1;
}
.page-menu ul li + li {
  margin-left: 3vw;
}
.page-menu ul li a {
  transition: var(--transition);
}
.page-menu ul li a:hover {
  color: var(--color_accent);
}
.menu-open .page-menu ul li a {
  opacity: 0;
  pointer-events: none;
}
.header-btns {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 150px;
  z-index: 1001;
}
.header-btns ul {
  display: flex;
}
.header-btns ul li {
  width: 50%;
  box-sizing: border-box;
}
.header-btns ul li + li {
  border-left: 1px solid var(--color_primary_wh);
}
.header-btns ul li a {
  display: block;
  background: var(--color_theme01);
  transition: var(--transition);
  text-align: center;
  padding-top: 17px;
  padding-bottom: 17px;
  line-height: 1;
}
.header-btns ul li a:hover {
  background: var(--color_accent);
}
.header-btns ul li a i {
  font-size: 28px;
  color: var(--color_primary_wh);
}

@media (max-width: 930px) {
  .page-menu ul li:nth-child(4),
  .page-menu ul li:nth-child(5) {
    display: none;
  }
}

/* global menu  -------  */

.site-nav-toggle {
  position: fixed;
  top: 82px;
  right: 20px;
  width: 150px;
  height: 60px;
  z-index: 1000;
}
.site-nav-toggle:before {
  content: "";
  display: block;
  top: 82px;
  right: 20px;
  width: 150px;
  height: 60px;
  position: fixed;
  background: var(--color_primary_wh);
  border: 1px solid var(--color_theme01);
  transition: var(--transition);
}
.site-nav-toggle:hover::before {
  background: var(--color_primary_bg2);
}
.nav-toggle-button {
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  position: relative;
  padding: 0;
  cursor: pointer;
  z-index: 1001;
}
.nav-toggle-button img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 110px;
  height: 15px;
  margin: auto;
}
.nav-toggle-button .icon-open {
  display: block;
}
.nav-toggle-button .icon-close {
  display: none;
}
body.menu-open .nav-toggle-button .icon-open {
  display: none;
}
body.menu-open .nav-toggle-button .icon-close {
  display: block;
}
.site-nav-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color_primary_bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
  overflow: scroll;
}
.site-nav-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  overflow: hidden;
}

.site-nav-contents .slide-left-txt {
  padding-top: 80px;
}
.site-nav-contents .slide-left-txt li {
  font-size: clamp(90px, 10vw, 150px);
  color: var(--color_primary_wh);
  font-weight: var(--fw-bold);
  letter-spacing: 6px;
  line-height: 1;
}

.site-nav-modal .box {
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: fit-content;
}
.nav-wrap {
  width: 550px;
  order: 2;
  padding-top: 90px;
  z-index: 2;
  position: relative;
}
.site-nav-list {
  margin-bottom: 35px;
}
.site-nav-list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-nav-list ul li {
  width: 45%;
  margin-bottom: 8px;
}
.site-nav-list ul li a {
  transition: var(--transition);
}
.site-nav-list ul li a:hover {
  color: var(--color_accent);
}

.site-nav-others ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-nav-others ul li {
  width: 48.3%;
  margin-bottom: 20px;
}
.site-nav-others ul li a {
  display: block;
  background: var(--color_theme01);
  color: var(--color_primary_wh);
  padding: 8px 20px;
  border-radius: 5px;
  transition: var(--transition);
  position: relative;
}
.site-nav-others ul li a:hover {
  background: var(--color_accent);
}
.site-nav-others ul li a i {
  padding-right: 10px;
}
.site-nav-others ul li a .arrow {
  display: flex;
  position: absolute;
  right: 20px;
  bottom: 24px;
}
.site-nav-others ul li a .arrow::after {
  content: "";
  width: 45px;
  height: 7px;
  border-bottom: solid 1px;
  border-right: solid 1px;
  transform: skew(45deg);
}
.site-nav-info {
  margin-top: 35px;
  padding-top: 40px;
  border-top: 1px solid var(--color_primary_gr);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-nav-info .contact-number {
  width: 62%;
}
.site-nav-info .contact-number .h-address {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 9px;
}
.site-nav-info .contact-number ul {
  display: flex;
}
.site-nav-info .contact-number ul li + li {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid var(--color_primary_gr);
}
.site-nav-info .contact-number ul li p {
  font-size: 13px;
  line-height: var(--lh-xs);
  letter-spacing: 1.5px;
}
.site-nav-info .contact-number ul li p span {
  font-weight: var(--font_bold);
  padding-right: 10px;
}
.site-nav-info .google-map {
  display: block;
  background: var(--color_theme01);
  color: var(--color_primary_wh);
  padding: 8px 20px;
  border-radius: 5px;
  transition: var(--transition);
  position: relative;
  width: 35%;
  font-size: 13px;
  transition: var(--transition);
}
.site-nav-info .google-map:hover {
  background: var(--color_accent);
}
.site-nav-info .google-map .arrow {
  display: flex;
  position: absolute;
  right: 20px;
  bottom: 21px;
}
.site-nav-info .google-map .arrow::after {
  content: "";
  width: 45px;
  height: 7px;
  border-bottom: solid 1px;
  border-right: solid 1px;
  transform: skew(45deg);
}
.nav-photo {
  width: calc(100% - 620px);
  background: url(img/common/pc/photo-site-nav.jpg) center;
  background-size: cover;
  position: relative;
  order: 1;
  border-radius: 10px;
}
.nav-photo .deco.deco-branch1 {
  position: absolute;
  left: -38px;
  bottom: -33px;
  width: 81px;
}

@media (max-width: 1140px) {
  .site-nav-modal .box {
    display: block;
  }
  .nav-wrap {
    width: 650px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 0;
  }
  .nav-photo {
    display: none;
  }
}

@media (max-height: 800px) {
  .nav-wrap {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  header {
    height: 50px;
    border-bottom: 1px solid var(--color_border);
  }
  .menu-open header {
    background: var(--color_primary_wh);
  }
  .h-logo {
    left: 12px;
    max-width: 110px;
  }
  .header-btns {
    top: 0;
    right: 50px;
    width: 100px;
  }
  .header-btns ul li a {
    padding-top: 0;
    padding-bottom: 0;
    height: 50px;
    line-height: 50px;
  }
  .header-btns ul li a i {
    font-size: 20px;
    top: 1px;
    position: relative;
  }
  .header-btns ul li a i.fa-instagram {
    font-size: 23px;
    top: 2px;
  }
  .site-nav-toggle {
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
  }
  .site-nav-toggle:before {
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: var(--color_theme01);
    border: none;
    border-left: 1px solid var(--color_primary_wh);
  }
  .site-nav-toggle:hover::before {
    background: var(--color_theme01);
  }
  .nav-toggle-button img {
    left: 2px;
    width: 24px;
    height: 18px;
  }
  .nav-wrap {
    width: 100%;
  }
  .site-nav-modal .box {
    position: inherit;
    margin-top: -50px;
  }
  .site-nav-list ul li {
    margin-bottom: 5px;
  }
  .site-nav-list {
    margin-bottom: 25px;
  }
  .site-nav-others ul li {
    margin-bottom: 14px;
  }
  .site-nav-others ul li a {
    padding: 6px 15px;
  }
  .site-nav-info {
    margin-top: 20px;
    padding-top: 25px;
    display: block;
  }
  .site-nav-info .contact-number {
    width: 100%;
    margin-bottom: 20px;
  }
  .site-nav-info .contact-number .h-address {
    margin-bottom: 6px;
  }
  .site-nav-info .google-map {
    width: 48.3%;
    padding: 6px 15px;
  }
  .site-nav-info .google-map .arrow {
    bottom: 19px;
  }
  .site-nav-info .google-map .arrow::after {
    width: 33px;
    height: 6px;
  }
}

/* main  -------  */

main {
  overflow: clip;
  width: 100%;
  position: relative;
}
section {
  position: relative;
}
.bg-wh {
  background: var(--color_primary_wh);
}
.bg-1 {
  background: var(--color_primary_bg);
}
.bg-2 {
  background: var(--color_primary_bg2);
}
.bg-3 {
  background: var(--color_primary_bg3);
}

.sec-ttl {
  position: relative;
  width: fit-content;
}
.sec-ttl h2 {
  font-size: clamp(75px, 6.5vw, 100px);
  line-height: 1;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}
.sec-ttl p {
  font-size: var(--fs-l);
  letter-spacing: 0.2em;
  line-height: 1.9;
  font-weight: var(--fw-medium);
}

.floating-box {
  position: absolute;
  border-radius: 5px;
}

.box-ttl {
  background: var(--color_primary_wh);
  width: fit-content;
  line-height: 2;
  font-weight: var(--fw-medium);
  padding: 25px 35px;
  border: 1px solid var(--color_border);
  position: relative;
  letter-spacing: 0.15em;
}
.box-ttl::before {
  content: "";
  display: block;
  width: 30%;
  height: 35%;
  max-width: 85px;
  max-height: 40px;
  position: absolute;
  border-top: 1px solid var(--color_theme01);
  border-left: 1px solid var(--color_theme01);
  position: absolute;
  top: -1px;
  left: -1px;
}
.box-ttl::after {
  content: "";
  display: block;
  width: 35%;
  height: 35%;
  max-width: 85px;
  max-height: 40px;
  position: absolute;
  border-right: 1px solid var(--color_theme01);
  border-bottom: 1px solid var(--color_theme01);
  position: absolute;
  right: -1px;
  bottom: -1px;
}

.deco {
  position: absolute;
}
.deco-flower {
  width: 53px;
}

.more {
  display: block;
  border-radius: 10px;
  background: var(--color_theme01);
  color: var(--color_primary_wh);
  position: relative;
  padding: 20px;
  width: 160px;
  height: 160px;
  font-size: 15px;
  transition: var(--transition);
}
.more.en {
  letter-spacing: 2.8px;
  line-height: 1.6;
  padding-top: 25px;
}
.more.wh {
  background: var(--color_primary_wh);
  color: var(--color_font);
}
.more:hover {
  color: var(--color_primary_wh);
  background: var(--color_accent);
}
.more i {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 23px;
}
.more span {
  display: block;
}
.more .arrow {
  display: flex;
  position: absolute;
  right: 20px;
  bottom: 24px;
}
.more .arrow::after {
  content: "";
  width: 65px;
  height: 9px;
  border-bottom: solid 1px;
  border-right: solid 1px;
  transform: skew(45deg);
}
.more.small {
  font-size: 13px;
  letter-spacing: 2px;
  height: fit-content;
  line-height: 1;
  border-radius: 5px;
  padding: 20px;
}
.more.small .arrow::after {
  width: 40px;
  height: 7px;
}
.more.only-arrow {
  height: 30px;
  line-height: 1;
  border-radius: 5px;
  padding: 0;
}
.more.only-arrow .arrow {
  bottom: 13px;
}
.more.only-arrow .arrow::after {
  width: 30px;
  height: 6px;
}

@media (max-width: 1250px) {
  .more {
    width: 130px;
    height: 130px;
    font-size: 13px;
  }
  .more .arrow::after {
    width: 50px;
  }
}
@media (max-width: 768px) {
  .sec-ttl h2 {
    font-size: clamp(39px, 9.5vw, 55px);
  }
  .sec-ttl p {
    font-size: var(--fs-s);
  }
  .box-ttl {
    font-size: var(--fs-m);
    padding: 12px 25px;
  }
  .more {
    max-width: 230px;
    width: 100%;
    height: auto;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 5px;
  }
  .more.en {
    padding-top: 15px;
    font-size: 12px;
  }
  .more i {
    position: inherit;
    left: inherit;
    bottom: inherit;
    font-size: 16px;
    padding-right: 8px;
    top: 1px;
  }
  .more span {
    display: inline;
  }
  .more span:nth-child(2) {
    margin-left: 10px;
  }
  .more.en .arrow {
    bottom: 20px;
  }
  .more .arrow::after {
    width: 40px;
    height: 7px;
  }

  .deco-flower {
    width: 35px;
  }
  #about .deco.deco-leaf {
    width: 40px;
  }
}

/* lower  -------  */

.lower-mv {
  margin-bottom: 100px;
  position: relative;
  width: calc(100% - 200px);
  margin-right: auto;
  margin-left: auto;
  margin-top: 100px;
}
.lower-mv .lower-ttl {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin-top: auto;
  margin-bottom: auto;
  height: fit-content;
  z-index: 3;
}
.lower-mv .lower-ttl h2 {
  font-size: clamp(75px, 6.5vw, 100px);
  line-height: 1;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  padding: 30px 30px 20px 30px;
  border: 1px solid var(--color_border);
  position: relative;
  background: var(--color_primary_wh);
}
.lower-mv .lower-ttl h2::before {
  content: "";
  display: block;
  width: 30%;
  height: 35%;
  max-width: 85px;
  max-height: 40px;
  position: absolute;
  border-top: 1px solid var(--color_theme01);
  border-left: 1px solid var(--color_theme01);
  position: absolute;
  top: -1px;
  left: -1px;
}
.lower-mv .lower-ttl h2::after {
  content: "";
  display: block;
  width: 35%;
  height: 35%;
  max-width: 85px;
  max-height: 40px;
  position: absolute;
  border-right: 1px solid var(--color_theme01);
  border-bottom: 1px solid var(--color_theme01);
  position: absolute;
  right: -1px;
  bottom: -1px;
}
.lower-mv .lower-ttl p {
  font-size: var(--fs-l);
  letter-spacing: 0.2em;
  line-height: 1;
  font-weight: var(--fw-medium);
  padding: 0 35px 40px 35px;
  background: var(--color_primary_wh);
  width: fit-content;
  border: 1px solid var(--color_border);
  border-top: none;
  margin-top: -1px;
  z-index: 2;
  position: relative;
}
.lower-mv .photo {
  width: calc(100% - 300px);
  margin-left: auto;
  position: relative;
  border-radius: 10px;
  height: 400px;
}
.lower-mv .photo::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color_primary_bl);
  opacity: 0.15;
  z-index: 2;
  border-radius: 10px;
}
.lower-mv .deco.deco-lower {
  width: 87px;
  right: -20px;
  bottom: -20px;
  z-index: 3;
}
.lower-tips {
  text-align: center;
  margin-bottom: 80px;
}
@media (min-width: 1500px) {
  .lower-mv .photo {
    height: 600px;
  }
}
@media (max-width: 1250px) {
  .lower-mv {
    width: calc(100% - 100px);
  }
}
@media (max-width: 1000px) {
  .lower-mv {
    margin-bottom: 80px;
  }
  .lower-mv .photo {
    width: calc(100% - 180px);
  }
  .lower-tips {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .lower-mv {
    margin-top: 70px;
    margin-bottom: 90px;
    width: calc(100% - 30px);
  }
  .lower-mv .photo {
    width: 100%;
    height: 220px;
  }
  .lower-mv .deco.deco-lower {
    width: 50px;
    right: -16px;
    bottom: -15px;
  }
  .lower-mv .lower-ttl {
    top: inherit;
    bottom: -57px;
  }
  .lower-mv .lower-ttl h2 {
    font-size: clamp(39px, 9.5vw, 55px);
    padding: 15px 20px 13px 20px;
  }
  .lower-mv .lower-ttl p {
    font-size: var(--fs-s);
    padding: 0 20px 26px 24px;
    line-height: 0;
  }
  .lower-tips {
    text-align: left;
    margin-bottom: 40px;
  }
}

/* footer  -------  */

.foot-contact {
  background: url(img/common/pc/bg-foot-contact.jpg) center;
  background-size: cover;
  border-radius: 10px;
  padding: 80px;
  color: var(--color_primary_wh);
  position: relative;
  margin-bottom: 220px;
}
.foot-contact .txt-box .sec-ttl {
  margin-bottom: 25px;
}
.foot-contact .txt-box .sec-ttl h2 {
  font-size: clamp(60px, 6.5vw, 80px);
}
.foot-contact .more {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 80px;
  margin-top: auto;
  margin-bottom: auto;
}

footer {
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
  background: var(--color_font);
}
footer .f-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: end;
}
footer .f-content .box {
  width: 64%;
  position: relative;
}
footer .f-content .box + .box {
  width: 33%;
  max-width: 310px;
  margin-right: 3%;
}

footer .f-info {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  align-items: center;
}
footer .f-logo {
  width: 254px;
}
footer .contact-number {
  margin-left: 50px;
}

footer .f-info .contact-number {
  width: fit-content;
}
footer .f-info .contact-number .f-address {
  font-size: 16px;
  margin-bottom: 5px;
}
footer .f-info .contact-number ul {
  display: flex;
}
footer .f-info .contact-number ul li + li {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid var(--color_primary_gr);
}
footer .f-info .contact-number ul li p {
  font-size: 16px;
  line-height: var(--lh-xs);
  letter-spacing: 1.5px;
}
footer .f-info .contact-number ul li p span {
  font-weight: var(--font_bold);
  padding-right: 10px;
}

footer .f-more-link ul {
  display: flex;
  flex-wrap: wrap;
}
footer .f-more-link ul li + li {
  margin-left: 25px;
}

footer .f-catch {
  width: 68%;
}
footer .deco-flower {
  position: absolute;
  right: 0;
  bottom: 0;
}

.btn-page-top {
  position: absolute;
  top: -150px;
  right: 5vw;
  display: block;
  width: 7vw;
  max-width: 72px;
  transition: var(--transition);
}
.btn-page-top:hover {
  top: -160px;
}

.copyrights {
  text-align: right;
  font-size: 10px;
  margin-top: 50px;
}

@media (max-width: 1260px) {
  footer .f-info {
    display: block;
    margin-bottom: 40px;
  }
  footer .contact-number {
    margin-top: 25px;
    margin-left: 0;
  }
  footer .f-info .contact-number .f-address {
    font-size: 14px;
  }
  footer .f-info .contact-number ul li p {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  footer .f-content {
    display: block;
  }
  footer .f-content .box {
    width: 100%;
  }
  footer .f-content .box + .box {
    width: fit-content;
    max-width: inherit;
    margin-left: auto;
    margin-top: -22px;
  }
  footer .f-catch {
    display: none;
  }
  footer .deco-flower {
    position: inherit;
    margin-left: auto;
  }
  .copyrights {
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  .foot-contact {
    margin-bottom: 110px;
    padding: 45px 35px;
  }
  .foot-contact .txt-box .sec-ttl h2 {
    font-size: 35px;
    letter-spacing: 3px;
    margin-left: -2px;
  }
  .foot-contact .more {
    height: fit-content;
    max-width: 67px;
    height: 30px;
    top: inherit;
    bottom: 27px;
    right: 27px;
    left: inherit;
  }
  .foot-contact .more .arrow {
    bottom: 13px;
  }
  .foot-contact .more .arrow::after {
    width: 30px;
    height: 6px;
  }

  footer .f-logo {
    width: 183px;
    margin-right: auto;
    margin-left: auto;
  }
  footer .f-info .contact-number {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }
  footer .f-info .contact-number .f-address {
    font-size: 13px;
    text-align: center;
  }
  footer .f-info .contact-number ul li p {
    font-size: 13px;
  }
  footer .f-more-link ul {
    display: block;
  }
  footer .f-more-link ul li {
    max-width: 230px;
    margin-right: auto;
    margin-left: auto;
  }
  footer .f-more-link ul li + li {
    margin-left: auto;
    margin-top: 15px;
  }
  footer .f-content .box + .box {
    margin-top: 40px;
    margin-right: auto;
  }

  .btn-page-top {
    position: absolute;
    top: -75px;
    right: 8vw;
    display: block;
    width: 40px;
  }
  .copyrights {
    text-align: center;
  }
}

/*-------------------------------------
animation of basic
---------------------------------------*/

/* fade in */

.sfi {
  visibility: hidden;
}

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

.simple_fade_in {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: simple_fade_in;
  animation-name: simple_fade_in;
  visibility: visible !important;
  opacity: 0;
}

/* fade in up */

.sfiu {
  visibility: hidden;
}

@-webkit-keyframes simple_fade_in_up {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes simple_fade_in_up {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.simple_fade_in_up {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: simple_fade_in_up;
  animation-name: simple_fade_in_up;
  visibility: visible !important;
  opacity: 0;
}
