@charset "UTF-8";
/******************************************
    リセットcss
******************************************/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
button,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

caption,
th,
td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

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

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

/******************************************
    全体に共通するスタイル
******************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #000000;
}

html {
  font-size: 62.5%;
}

body {
  background: #fff;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.448;
  font-family: "Noto Sans JP", sans-serif;
}

.container {
  max-width: 1120px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.color-white {
  color: #fff;
}

.main-color {
  color: #FC9700;
}

.section {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .section {
    padding-bottom: 40px;
  }
}

.section-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 601px) {
  .section-title {
    font-size: 2.4rem;
  }
}

.section-lead {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-top: -6px;
}
@media (max-width: 767px) {
  .section-lead {
    margin-top: 0;
  }
}

.is-md {
  display: block;
}
@media (max-width: 767px) {
  .is-md {
    display: none;
  }
}

.is-sm {
  display: block;
}
@media (min-width: 768px) {
  .is-sm {
    display: none;
  }
}

.is-sm-not {
  display: block;
}
@media (max-width: 767px) {
  .is-sm-not {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media (max-width: 601px) {
  .is-sp {
    display: block;
  }
}

.is-sp-not {
  display: block;
}
@media (max-width: 601px) {
  .is-sp-not {
    display: none;
  }
}

/******************************************
  ヘッダー
******************************************/
.header {
  height: 100px;
  width: 100%;
}
@media (max-width: 767px) {
  .header {
    height: 64px;
  }
}

.header__inner {
  max-width: 1400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: inherit;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  position: relative;
}

.header-logo {
  position: relative;
}

.header-logo-img {
  width: 302px;
  position: relative;
}
.header-logo-img:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .header-logo-img {
    width: 228px;
  }
}

.header-lead {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .header-lead {
    margin-left: 12px;
  }
}

@media (min-width: 768px) {
  .header-lead.is-sp-not {
    display: none;
  }
}
@media (max-width: 601px) {
  .header-lead.is-sp-not {
    display: none;
  }
}

.header-nav {
  margin-left: auto;
}

@media (max-width: 1180px) {
  .header-nav {
    display: none;
  }
}
.header-list {
  display: flex;
}

.header-list__item {
  margin-right: 40px;
}
.header-list__item:last-child {
  margin-right: 0;
}

.header-list__item a {
  color: #FC9700;
  position: relative;
  cursor: pointer;
}
.header-list__item a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5em;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s ease-in-out;
}
.header-list__item a:hover:before {
  transform: scale(1, 1);
}

.header-btn {
  display: block;
  margin-left: 20px;
  width: 178px;
  background: #FC9700;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 26px;
  border: 2px solid transparent;
  transition: 0.3s ease-in-out;
}
.header-btn:focus, .header-btn:hover {
  background: #fff;
  color: #FC9700;
  border-color: #FC9700;
}

@media (max-width: 1180px) {
  .header-btn {
    display: none;
  }
}
/******************************************
  ハンバーガーメニュー
******************************************/
.hamburger-btn {
  display: none;
  position: absolute;
  z-index: 9999;
  top: 50px;
  right: 20px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  margin-left: auto;
  background: transparent;
  box-shadow: 0 0 2rem transparent;
  outline: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.hamburger-btn:hover, .hamburger-btn:focus {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .hamburger-btn {
    top: 32px;
    width: 25px;
    height: 25px;
    right: 20px;
  }
}
@media (max-width: 601px) {
  .hamburger-btn {
    right: 6px;
  }
}

@media (max-width: 1180px) {
  .hamburger-btn {
    display: block;
  }
}
.hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  margin: auto;
  width: 28px;
  height: 2px;
  background: #FC9700;
  transition: 0.3s;
}
.hamburger__line::before, .hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: "";
  transition: inherit;
}
@media (max-width: 767px) {
  .hamburger__line {
    width: 20px;
  }
}

.hamburger__line::before {
  top: -8px;
}
@media (max-width: 767px) {
  .hamburger__line::before {
    top: -6px;
  }
}

.hamburger__line::after {
  top: 8px;
}
@media (max-width: 767px) {
  .hamburger__line::after {
    top: 6px;
  }
}

.hamburger-btn[aria-expanded=true] .hamburger__line {
  background-color: transparent;
}
.hamburger-btn[aria-expanded=true] .hamburger__line::before, .hamburger-btn[aria-expanded=true] .hamburger__line::after {
  top: 0;
  background-color: #FC9700;
}

.hamburger-btn[aria-expanded=true] .hamburger__line::before {
  transform: rotate(45deg);
}

.hamburger-btn[aria-expanded=true] .hamburger__line::after {
  transform: rotate(-45deg);
}

/******************************************
  ドロワーメニュー
******************************************/
.drawer-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  overflow: hidden;
  visibility: hidden;
  background: transparent;
  opacity: 0;
}

.drawer-nav {
  position: fixed;
  top: 0;
  right: -300px;
  height: 100vh;
  width: 300px;
  overflow: hidden;
  padding-top: 100px;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  visibility: hidden;
  transition: 0.5s;
}

.is-drawer-active .drawer-bg {
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
}
.is-drawer-active .drawer-nav {
  right: 0;
  visibility: visible;
}
.is-drawer-active .hamburger-btn {
  position: fixed;
}

.drawer-list__item {
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 40px;
  text-align: center;
}
.drawer-list__item:first-child {
  margin-top: 0;
}

.drawer-list__link {
  color: #FC9700;
}

.drawer-btn {
  display: block;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

/******************************************
  追従ヘッダー
******************************************/
.fixed-header {
  position: fixed;
  z-index: 10;
  top: -80px;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  visibility: hidden;
  transition: 0.5s ease-in-out;
}

.fixed-header.is-show {
  top: 0;
  visibility: visible;
}

/******************************************
  fv
******************************************/
.fv {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .fv {
    height: 620px;
  }
}

.fv-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  overflow: hidden;
  background: #FC9700;
}

.fv-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -2;
  width: 74%;
  background: url(../img/fv.jpg) no-repeat left 0 center/cover;
}
@media (max-width: 1024px ) {
  .fv-img {
    background-position: left 30% center;
  }
}
@media (max-width: 767px) {
  .fv-img {
    background-position: left 30% center;
    width: 100%;
  }
}

.fv-bg__lower-left {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 0;
  height: 0;
  border-top: 100px solid transparent; /* 上辺 */
  border-left: 65px solid #FC9700; /* 右辺 */
}
@media (max-width: 767px) {
  .fv-bg__lower-left {
    border-top: 140px solid transparent; /* 上辺 */
    border-left: 100px solid #FC9700; /* 右辺 */
  }
}

.fv-content {
  position: absolute;
  height: 100%;
  top: 0%;
  right: 10%;
  padding-top: 120px;
  padding-right: 20px;
  padding-left: 20px;
}
@media (max-width: 1024px ) {
  .fv-content {
    right: 5%;
  }
}

.fv-content-bg {
  position: absolute;
  top: -50%;
  left: -8%;
  z-index: -1;
  width: 120%;
  height: 200%;
  background: #fff;
  transform: skew(30deg);
}
@media (max-width: 1279px ) {
  .fv-content-bg {
    width: 110%;
    left: 0;
  }
}
@media (max-width: 1024px ) {
  .fv-content-bg {
    width: 105%;
    left: 4%;
  }
}

.fv-title {
  font-size: 4rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  line-height: 1.2;
}
.fv-title span {
  font-size: 8rem;
  margin-left: 1em;
}
@media (max-width: 1024px ) {
  .fv-title span {
    font-size: 6rem;
  }
}
@media (max-width: 767px) {
  .fv-title span {
    font-size: 5rem;
    margin-left: 0;
  }
}
@media (max-width: 1024px ) {
  .fv-title {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .fv-title {
    margin-top: 20px;
    font-size: 2.8rem;
    text-align: center;
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
  }
}
@media (max-width: 601px) {
  .fv-title {
    font-size: 2.4rem;
  }
}

.fv-btn-wrapper {
  margin-top: 18px;
  margin-left: 32px;
  display: flex;
}
@media (max-width: 1024px ) {
  .fv-btn-wrapper {
    display: block;
  }
}
@media (max-width: 767px) {
  .fv-btn-wrapper {
    position: absolute;
    bottom: 40px;
    right: 24px;
  }
}

@media (min-width: 768px) {
  .fv-btn-wrapper.is-sm {
    display: none;
  }
}

.fv-btn {
  display: block;
  max-width: 268px;
  width: 100%;
  padding: 16px;
  padding-left: 2em;
  margin-left: auto;
  background: #FC9700;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  transition: all 0.3s ease-in-out;
  position: relative;
}
.fv-btn:hover, .fv-btn:focus {
  border-color: #FC9700;
  color: #FC9700;
  background: #fff;
}

.fv-btn__mail {
  max-width: 278px;
  padding-left: 2.5em;
}
.fv-btn__mail::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 0.5em;
  transform: translateY(-50%);
  background: transparent url(../img/mail-icon-white.png) no-repeat center center/contain;
  width: 35px;
  height: 35px;
  transition: all 0.3s ease-in-out;
}
.fv-btn__mail:hover::before, .fv-btn__mail:focus::before {
  background-image: url(../img/mail-icon.png);
}
@media (max-width: 1024px ) {
  .fv-btn__mail {
    max-width: 272px;
  }
}

.fv-btn__tel {
  margin-left: 12px;
  margin-right: -40px;
}
.fv-btn__tel::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 0.5em;
  transform: translateY(-50%);
  background: transparent url(../img/tel-icon-white.png) no-repeat center center/contain;
  width: 35px;
  height: 35px;
  transition: all 0.3s ease-in-out;
}
.fv-btn__tel:hover::before, .fv-btn__tel:focus::before {
  background-image: url(../img/tel-icon.png);
}
@media (max-width: 1024px ) {
  .fv-btn__tel {
    margin-right: 0;
    margin-left: auto;
    margin-top: 24px;
    max-width: 272px;
  }
}

.fv-btn.is-sm {
  position: absolute;
  bottom: 100px;
  right: 20px;
}
@media (min-width: 768px) {
  .fv-btn.is-sm {
    display: none;
  }
}

.fv-btn__tel.is-sm {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 248px;
  padding-left: 32px;
}
@media (min-width: 768px) {
  .fv-btn__tel.is-sm {
    display: none;
  }
}

/******************************************
  mission
******************************************/
.mission {
  padding-top: 100px;
  padding-bottom: 140px;
  position: relative;
}

.mission-left {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 590px;
  height: 100%;
  width: 40%;
}

.diagonal {
  position: absolute;
  top: -5%;
  left: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  max-height: 590px;
  background: transparent url(../img/diagonal.png) no-repeat center center/cover;
}
@media (max-width: 1279px ) {
  .diagonal {
    top: -20%;
  }
}
@media (max-width: 1024px ) {
  .diagonal {
    display: none;
  }
}

.mission-left-center-img {
  position: absolute;
  top: 20px;
  left: 38%;
  transform: translateX(-50%);
  z-index: -2;
}
@media (max-width: 1024px ) {
  .mission-left-center-img {
    top: 0;
  }
}

@media (max-width: 1024px ) {
  .mission-left-center-img img {
    width: 220px;
  }
}

.mission-left-bottom-img {
  position: absolute;
  bottom: 7%;
  left: 60%;
  transform: translateX(-50%);
  z-index: -1;
}

@media (max-width: 1024px ) {
  .mission-left-bottom-img.is-tab-not {
    display: none;
  }
}

.mission-right {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 590px;
  height: 100%;
  width: 40%;
  overflow: hidden;
}

.mission-right-top-img {
  position: absolute;
  top: 20px;
  left: 45%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 1024px ) {
  .mission-right-top-img {
    left: 50%;
    top: auto;
    bottom: 0;
  }
}

@media (max-width: 1024px ) {
  .mission-right-top-img img {
    width: 280px;
  }
}

.mission-right-bottom-img {
  position: absolute;
  bottom: 0;
  right: 10%;
  z-index: -2;
}

@media (max-width: 1024px ) {
  .mission-right-bottom-img.is-tab-not {
    display: none;
  }
}

.mission-content {
  margin-top: 60px;
}

.mission__text {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
.mission__text span {
  font-size: 2.6rem;
  color: #FC9700;
}
@media (max-width: 767px) {
  .mission__text span {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .mission__text {
    font-size: 1.8rem;
  }
}

.mission__img {
  display: block;
  width: 260px;
  height: 260px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
.mission__img img {
  width: inherit;
}

@media (max-width: 767px) {
  .mission__img.is-md {
    display: none;
  }
}

/******************************************
  business
******************************************/
.business {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}

.business-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: #fff;
}

.business-bg__lower-right {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 0;
  height: 0;
  border-top: 680px solid transparent; /* 上辺 */
  border-right: 680px solid #FC9700; /* 右辺 */
}
@media (max-width: 767px) {
  .business-bg__lower-right {
    border-top-width: 850px;
    border-right-width: 400px;
  }
}

.business__lead {
  margin-top: 26px;
  text-align: center;
}

.business-content {
  margin-top: 40px;
}
@media (max-width: 1024px ) {
  .business-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .business-content {
    max-width: 600px;
  }
}

.business-list {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
}
@media (max-width: 1024px ) {
  .business-list {
    gap: 40px;
  }
}

.business-list__item {
  width: calc((100% - 90px) / 3);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background: #fff;
}
@media (max-width: 1024px ) {
  .business-list__item {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 767px) {
  .business-list__item {
    width: 100%;
  }
}

.business-list__item.ml-auto {
  margin-left: auto;
}

.business-list__item.mr-auto {
  margin-right: auto;
}

@media (max-width: 1024px ) {
  .business-list__item.center {
    margin-left: auto;
    margin-right: auto;
  }
}

.business-list__item-top {
  display: flex;
  align-items: center;
  padding: 20px 40px;
}

.business-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #FC9700;
  color: #fff;
  border-radius: 50%;
  font-size: 2.4rem;
  font-weight: 700;
}

.business-list__item-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-left: 28px;
}

.business__img {
  width: 100%;
}
.business__img img {
  width: inherit;
}

.business__text {
  padding: 18px 10px;
  font-size: 1.4rem;
  text-align: center;
  min-height: 140px;
  display: flex;
  justify-content: center; /* 横方向の中央揃え */
  align-items: center;
}

/******************************************
  composition
******************************************/
.composition {
  background: #FFF5F4;
  padding-top: 24px;
  padding-bottom: 36px;
}

.composition-title {
  font-size: 2.4rem;
}
@media (max-width: 601px) {
  .composition-title {
    font-size: 2rem;
  }
}

.composition-content {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
@media (max-width: 601px) {
  .composition-content {
    flex-wrap: wrap;
  }
}

.composition-graph {
  margin-right: 32px;
}
@media (max-width: 601px) {
  .composition-graph {
    margin-right: 0;
  }
}

.composition-list {
  margin-top: 40px;
}

.composition__item {
  display: flex;
  margin-top: 20px;
}
.composition__item:first-child {
  margin-top: 0;
}

.composition__text {
  margin-left: 20px;
}

/******************************************
  introduction
******************************************/
.introduction {
  padding-top: 40px;
  padding-bottom: 50px;
  position: relative;
}

.introduction-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 0;
  height: 0;
  border-bottom: 595px solid transparent; /* 上辺 */
  border-left: 650px solid #FC9700; /* 右辺 */
}
@media (max-width: 767px) {
  .introduction-bg {
    border-bottom-width: 850px;
    border-left-width: 400px;
  }
}
@media (max-width: 601px) {
  .introduction-bg {
    border-left-width: 370px;
  }
}

.introduction-title {
  font-size: 2.4rem;
}
@media (max-width: 601px) {
  .introduction-title {
    font-size: 2rem;
  }
}

.introduction-content {
  margin-top: 40px;
}
@media (max-width: 1024px ) {
  .introduction-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .introduction-content {
    max-width: 600px;
  }
}

.introduction-list {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
}
@media (max-width: 1024px ) {
  .introduction-list {
    gap: 40px;
  }
}

.introduction-list__item {
  width: calc((100% - 90px) / 3);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background: #fff;
}
@media (max-width: 1024px ) {
  .introduction-list__item {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 767px) {
  .introduction-list__item {
    width: 100%;
  }
}

.introduction-img {
  width: 100%;
}
.introduction-img img {
  width: inherit;
}

.introduction-body {
  padding: 18px;
  min-height: 140px;
}

.introduction-list__item-title {
  font-size: 1.8rem;
  font-weight: 700;
}
.introduction-list__item-title span {
  font-size: 1.2rem;
}

.introduction__text {
  margin-top: 16px;
  font-size: 1.4rem;
  font-weight: 400;
}

.introduction-bottom-text {
  margin-top: 45px;
  text-align: center;
}

.introduction-btn-wrapper {
  margin-top: 28px;
}

.introduction-btn {
  margin-left: auto;
  margin-right: auto;
}

/******************************************
  feature
******************************************/
.feature {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
@media (max-width: 1024px ) {
  .feature {
    padding-bottom: 160px;
  }
}

@media (max-width: 1024px ) {
  .feature-container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .feature-title {
    text-align: center;
  }
}

.feature-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  background: #FC9700;
  width: 100%;
  height: 100%;
}

.feature-bg-left {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background: transparent url(../img/feature-bg.jpg) no-repeat center right 0/cover;
  width: 50%;
  height: 100%;
}
@media (max-width: 1024px ) {
  .feature-bg-left {
    width: 100%;
  }
}

.text-left {
  text-align: left;
}
@media (max-width: 767px) {
  .text-left {
    text-align: center;
  }
}

.feature-lead {
  margin-top: 28px;
  font-size: 2rem;
  font-weight: 700;
}

.feature__text {
  margin-top: 28px;
  font-weight: 400;
}

.feature-content {
  position: relative;
}
@media (max-width: 1024px ) {
  .feature-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

.feature-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  max-width: 288px;
  width: 100%;
  padding: 25px 20px;
  margin-left: auto;
  margin-right: 4%;
  background: #FC9700;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.feature-btn:hover, .feature-btn:focus {
  border-color: #FC9700;
  color: #FC9700;
  background: #fff;
}
@media (max-width: 1024px ) {
  .feature-btn {
    bottom: -120px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .feature-btn {
    max-width: 268px;
    padding: 12px;
  }
}

/******************************************
  recommendation
******************************************/
.recommendation {
  padding-top: 40px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.recommendation-bg__lower-right {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 0;
  height: 0;
  border-top: 520px solid transparent; /* 上辺 */
  border-right: 540px solid #FC9700; /* 右辺 */
}
@media (max-width: 767px) {
  .recommendation-bg__lower-right {
    border-top-width: 420px;
    border-right-width: 380px;
  }
}

.recommendation-lead {
  margin-top: 28px;
  text-align: center;
}

.recommendation-content {
  margin-top: 16px;
  display: flex;
  max-width: 965px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .recommendation-content {
    display: block;
    max-width: 600px;
  }
}

.recommendation-list {
  width: calc((100% - 8px) / 2);
}
@media (max-width: 767px) {
  .recommendation-list {
    width: 100%;
  }
}

.list-right {
  margin-left: 8px;
}
@media (max-width: 767px) {
  .list-right {
    margin-left: 0;
    margin-top: 22px;
  }
}

.recommendation-list__item {
  display: flex;
  align-items: center;
  margin-top: 22px;
}
.recommendation-list__item:first-child {
  margin-top: 0;
}

.recommendation-number {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 700;
  width: 50px;
  height: 50px;
  background: #FC9700;
  color: #fff;
  border-radius: 50%;
  border: 1px solid #fff;
}
@media (max-width: 767px) {
  .recommendation-number {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
}

.recommendation__text {
  width: calc(100% - 64px);
  margin-left: 14px;
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
@media (max-width: 1024px ) {
  .recommendation__text {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .recommendation__text {
    width: calc(100% - 54px);
  }
}

/******************************************
  message
******************************************/
.message {
  padding-top: 62px;
  padding-bottom: 55px;
  padding-left: 40px;
  padding-right: 40px;
  background: transparent url(../img/message-bg.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .message {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.message-container {
  max-width: 800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 20px 48px;
  background: #fff;
}

.message-content {
  margin-top: 40px;
}

.message-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}

.message__text {
  margin-top: 28px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  line-height: 1.42;
}
@media (max-width: 601px) {
  .message__text {
    text-align: left;
  }
}

/******************************************
  about
******************************************/
.about {
  position: relative;
}

.about-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 0;
  height: 0;
  border-bottom: 595px solid transparent; /* 上辺 */
  border-left: 650px solid #FC9700; /* 右辺 */
}
@media (max-width: 767px) {
  .about-bg {
    display: none;
  }
}

.about-content {
  display: flex;
  margin-top: 40px;
}
@media (max-width: 1024px ) {
  .about-content {
    display: block;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}

.about-left {
  width: 50%;
}
@media (max-width: 1024px ) {
  .about-left {
    width: 100%;
  }
}

.about-left,
.about-right {
  position: relative;
}
.about-left::before,
.about-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 130px;
  background: #FC9700;
  width: 1px;
  height: 100%;
}
@media (max-width: 601px) {
  .about-left::before,
  .about-right::before {
    left: 100px;
  }
}

.about-list__item {
  display: flex;
  font-family: "Noto Serif JP", serif;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
@media (max-width: 601px) {
  .about-list__item {
    font-size: 1.4rem;
  }
}
.about-list__item dt {
  width: 130px;
  text-align: right;
  padding-right: 30px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
@media (max-width: 601px) {
  .about-list__item dt {
    padding-right: 16px;
    width: 100px;
  }
}
.about-list__item dd {
  width: calc(100% - 130px);
  padding-left: 30px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
@media (max-width: 601px) {
  .about-list__item dd {
    padding-left: 16px;
    width: calc(100% - 100px);
  }
}

.pt-long dt,
.pt-long dd {
  padding-top: 1.8em;
}
@media (max-width: 1024px ) {
  .pt-long dt,
  .pt-long dd {
    padding-top: 0.5em;
  }
}

.pt-long-sp dt,
.pt-long-sp dd {
  padding-top: 1.8em;
}
@media (max-width: 601px) {
  .pt-long-sp dt,
  .pt-long-sp dd {
    padding-top: 1em;
  }
}

.pb-long dt,
.pb-long dd {
  padding-bottom: 1.8em;
}
@media (max-width: 1024px ) {
  .pb-long dt,
  .pb-long dd {
    padding-bottom: 0.5em;
  }
}

@media (max-width: 601px) {
  .pb-long-sp dt,
  .pb-long-sp dd {
    padding-bottom: 1.8em;
  }
}

.about-right {
  width: calc(50% - 20px);
  margin-left: 20px;
}
@media (max-width: 1024px ) {
  .about-right {
    margin-left: 0;
    width: 100%;
  }
}

/******************************************
  download
******************************************/
.download {
  padding-top: 40px;
  padding-bottom: 80px;
}

.download-content {
  margin-top: 24px;
}

.download__text {
  text-align: center;
}

.download-btn-wrapper {
  max-width: 696px;
  width: 100%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .download-btn-wrapper {
    flex-direction: column;
    gap: 28px;
  }
}

.download-btn {
  display: block;
  width: 288px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background: #FC9700;
  text-align: center;
  padding: 25px 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.download-btn:hover, .download-btn:focus {
  border-color: #FC9700;
  color: #FC9700;
  background: #fff;
}
@media (max-width: 1024px ) {
  .download-btn {
    width: 270px;
    padding: 16px 0;
    margin-left: auto;
    margin-right: auto;
  }
}

/******************************************
  sns
******************************************/
.sns {
  padding-top: 48px;
  padding-bottom: 68px;
  background: #FFF5F4;
}

.sns-content {
  max-width: 900px;
  width: 100%;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 767px) {
  .sns-content {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

.sns-item {
  width: calc((100% - 40px) / 2);
}
@media (max-width: 767px) {
  .sns-item {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }
  .sns-item:first-child {
    margin-top: 0;
  }
}

.sns-icon {
  width: 50px;
  height: 50px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.sns-icon img {
  width: inherit;
}
@media (max-width: 1024px ) {
  .sns-icon {
    width: 40px;
    height: 40px;
  }
}

.sns-icon .x-icon {
  width: 44px;
}
@media (max-width: 1024px ) {
  .sns-icon .x-icon {
    width: 35px;
    height: 35px;
  }
}

.sns-wrapper {
  margin-top: 12px;
  width: 100%;
  height: 400px;
}
.sns-wrapper iframe {
  height: inherit;
  width: inherit;
}
@media (max-width: 767px) {
  .sns-wrapper {
    max-width: 480px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .sns-wrapper {
    margin-top: 12px;
  }
}

@media (max-width: 767px) {
  .sns-wrapper.sm-height {
    height: auto;
  }
}

/******************************************
  contact
******************************************/
.contact {
  padding-top: 48px;
  padding-bottom: 80px;
  position: relative;
}

.contact-bg__lower-right {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 0;
  height: 0;
  border-top: 500px solid transparent; /* 上辺 */
  border-right: 450px solid #FC9700; /* 右辺 */
}
@media (max-width: 767px) {
  .contact-bg__lower-right {
    border-right-width: 320px;
    border-top-width: 300px;
  }
}

.contact-content {
  margin-top: 20px;
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
@media (max-width: 767px) {
  .contact-content {
    display: block;
    max-width: 500px;
  }
}

.contact-left {
  width: calc(52% - 40px);
  margin-right: 40px;
}
@media (max-width: 767px) {
  .contact-left {
    width: 100%;
    margin-right: 0;
  }
}

.contact-right {
  width: 48%;
}
@media (max-width: 767px) {
  .contact-right {
    width: 100%;
    margin-top: 28px;
  }
}

.contact-list__item {
  margin-top: 28px;
}
.contact-list__item:first-child {
  margin-top: 0;
}

.contact__text {
  display: flex;
  align-items: center;
  color: #FC9700;
  font-weight: 700;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}

.tel-icon {
  width: 35px;
  height: 35px;
}

.contact__link-text {
  font-size: 4rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  padding-left: 8px;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
@media (max-width: 1024px ) {
  .contact__link-text {
    font-size: 2.8rem;
  }
}

@media (min-width: 600px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/******************************************
  footer
******************************************/
.footer-container {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .footer-container {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.copy-right {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .copy-right {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=style.css.map */