/*
Theme Name: tomostemplate
Theme URI: https://example.com
Author: TOMOYA NITTA
Version: 1.0
Description: 汎用テンプレートです。
*/

/********************************* 
共通設定
**********************************/
:root {
  --main-color: #ed7ca1;
  --sub-color: #ffdd55;
  --accent-color: #FAF7EF;
  --text-color: #333333;
  --main-font: "Noto Serif JP", serif;
  --font-size: clamp(14px, 0.84vw, 16px);
}

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

body {
  position: relative;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-size: var(--font-size);
  font-weight: 400;
  font-style: normal;
  word-break: break-word;
}

main {
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
}

section .inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 5% 2.5% 12.5%;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

a {
  transition: all .2s;
}

a[href^="tel:"] {
  pointer-events: none;
}

a:hover {
  opacity: .8;
}

hgroup {
  margin-bottom: 5%;
}

h1 {
  position: absolute;
  top: 8px;
  left: 5vw;
  width: clamp(60px, 5vw, 80px);
  height: auto;
  padding: 8px 0;
}

h2 {
  position: relative;
  width: 100%;
  font-family: var(--main-font);
  font-weight: 500;
  font-style: normal;
  font-size: 250%;
  color: #4a2400;
}

.eng {
  content: attr(eng);
  display: block;
  font-family: var(--main-font);
  font-weight: 500;
  font-style: normal;
  font-size: 800%;
  color: var(--main-color);
  opacity: .2;
  line-height: 1;
}

.mb16 {
  margin-bottom: 16px;
}

.pagetop {
  position: fixed;
  right: 2.5%;
  bottom: 10%;
  z-index: 10;
  display: block;
  font-family: var(--main-font);
  font-style: normal;
  transition: transform .3s;
}

.pagetop:hover {
  transform: translatey(-16px);
}

.pagetop p {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  padding: 0 0 5px;
  background: var(--main-color);
  border: 1px solid #fff;
  color: #ffffff;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-radius: 50%;
}

.pagetop span::before {
  content: "\f077";
  display: block;
  margin-bottom: 5px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  text-align: center;
}

/********************************* 
共通設定 sp
**********************************/
@media screen and (max-width: 768px) {	
  section .inner {
	padding: 48px 16px 80px;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  a[href^="tel:"] {
    pointer-events: auto;
  }
	
  h1 {
	top: 0;
	left: 16px;
    width: min(8.5vh, 58px);
  }
	
  h2 {
    font-size: 160%;
  }
	
  .eng {
    font-size: 350%;
  }
	
  .pagetop {
	right: 0;
	bottom: 0;
  }
	
  .pagetop:hover {
    transform: unset;
  }
	
  .pagetop p {
	width: 60px;
	height: 60px;
	border-radius: 0;
  }
}

/********************************* 
header 
**********************************/
header {
  height: clamp(100px, 12vh, 140px);
}

.hamburger_menu {
  display: none;
}

.header_wrap {
  position: absolute;
  top: 4.25vh;
  left: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 95vw;
  height: auto;
  margin: 0 auto;
  color: #fff;
  z-index: 100;
}

.header_wrap nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.875vw;
}

.header_wrap nav ul li {
  list-style: none;
}

.header_wrap nav ul a {
  font-family: var(--main-font);
  font-weight: 500;
  font-style: normal;
  color: var(--text-color);
}

.header_wrap.fixed {
  position: fixed;
  top: 0;
  justify-content: center;
  max-width: 100%;
  background: rgb(255 255 255 / .8);
}

.header_wrap.fixed nav ul {
  padding: 20px 0;
}


/********************************* 
header sp
**********************************/
@media screen and (max-width: 768px) {
  header {
    height: 80px;
  }

  .header_wrap {
    display: none;
  }

  .sp_logo {
    position: fixed;
    top: 18px;
    left: 8px;
    width: 100px;
    background: none;
    z-index: 1;
  }

  .hamburger_menu {
    display: block;
  }
	
  .hamburger_overlay {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 64px;
    height: 64px;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .hamburger_overlay_line {
    position: absolute;
    left: 50%;
	transform: translatex(-50%);
    width: 32px;
    height: 3px;
    background-color: #4a2400;
    transition: all .6s;
  }

  .hamburger_overlay_line:nth-of-type(1) { 
	top: 20px;
  }

  .hamburger_overlay_line:nth-of-type(2) { 
	top: 30px;
  }

  .hamburger_overlay_line:nth-of-type(3) { 
	top: 40px;
  }

  .hamburger_overlay.active .hamburger_overlay_line:nth-of-type(1) {
    transform: translate(-50%, 10px) rotate(-45deg);
  }
	
  .hamburger_overlay.active .hamburger_overlay_line:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger_overlay.active .hamburger_overlay_line:nth-of-type(3) {
    transform: translate(-50%, -10px) rotate(45deg);
  }

  .nav_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--accent-color);
    visibility: hidden;
    opacity: 0;
    transition: all .6s;
    z-index: 900;
  }

  .nav_overlay.active {
    visibility: visible;
    opacity: 1;
  }

  .nav_overlay_content {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translatex(-50%);
    width: 100%;
	max-width: 280px;
    text-align: center;
  }

  .nav_overlay_list {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
	flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav_overlay_item {
	width: calc(50% - 12px);
	max-width: 120px;
	height: auto;
	aspect-ratio: 1 / 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s;
  }

  .nav_overlay.active .nav_overlay_item {
    opacity: 1;
    transform: translateY(0);
  }

  .nav_overlay.active .nav_overlay_item:nth-child(1) { 
	transition-delay: 0.1s;
  }

  .nav_overlay.active .nav_overlay_item:nth-child(2) { 
	transition-delay: 0.2s;
  }
	
  .nav_overlay.active .nav_overlay_item:nth-child(3) { 
	transition-delay: 0.3s; 
  }
	
  .nav_overlay.active .nav_overlay_item:nth-child(4) { 
	transition-delay: 0.4s;
  }
	
  .nav_overlay.active .nav_overlay_item:nth-child(5) { 
	transition-delay: 0.5s;
  }
	
  .nav_overlay.active .nav_overlay_item:nth-child(6) { 
	transition-delay: 0.6s;
  }

  .nav_overlay_item .nav_link {
	position: relative;
    display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
    padding: 8px;
    color: var(--main-color);
    font-size: 14px;
    text-decoration: none;
    transition: color .3s;
	box-shadow: 0 0 4px #F8D2DF, 0 0 4px #F8D2DF, 0 0 8px #F8D2DF, 0 0 8px #F8D2DF, 0 0 12px #F8D2DF, 0 0 12px #F8D2DF;
	background: #fff;
	border-radius: 24px;
  }
	
  .nav_overlay_item .nav_link::before {
	content: "";
	display: block;
	width: 48px;
	height: auto;
	aspect-ratio: 1 / 1;
	height: auto;
	background: url("images/menu_icon01.png") center center / contain no-repeat;
  }
	
  .nav_overlay_item .nav_link.menu_about::before {
	background: url("images/menu_icon02.png") center center / contain no-repeat;
  }
	
  .nav_overlay_item .nav_link.menu_service::before {
	background: url("images/menu_icon03.png") center center / contain no-repeat;
  }
	
  .nav_overlay_item .nav_link.menu_flow::before {
	background: url("images/menu_icon04.png") center center / contain no-repeat;
  }
	
  .nav_overlay_item .nav_link.menu_faq::before {
	background: url("images/menu_icon05.png") center center / contain no-repeat;
  }
	
  .nav_overlay_item .nav_link.menu_info::before {
	background: url("images/menu_icon06.png") center center / contain no-repeat;
  }
	
  .sp_fixed_btn {
	position: fixed;
    left: 0;
    bottom: 0;
    z-index: 10;
	width: calc(100% - 60px);
	height: 60px;
  }
	
  .sp_fixed_btn .btn_item {
	height: 100%;
	background: #4a2400;
    color: #fff;
	border: 1px solid #fff;
	border-right: none;
  }
	
  .sp_fixed_btn .btn_item a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 12px;
	width: 100%;
	height: 100%;
	font-family: var(--main-font);
    font-weight: 500;
    font-style: normal;
  }

  .sp_fixed_btn .btn_item a i {
	font-size: 20px;
  }
	
  .sp_fixed_btn .btn_item a .text {
	display: block;
	font-size: 90%;
	margin-bottom: 4px;
  }
	
  .sp_fixed_btn .btn_item a span.tel {
	display: block;
	font-size: 160%;
	margin-bottom: 6px;
	text-box: trim-both cap alphabetic;
  }
}


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

.mainvisual .catchcopy {
  content: "";
  position: absolute;
  left: 5%;
  top: 47.5%;
  display: inline-block;
  overflow: hidden;
  font-family: var(--main-font);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(16px, 2.8vw, 40px);
  color: var(--text-color);
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
  z-index: 5;
}

.mainvisual .catchcopy span {
  width: 0;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  animation:catch_anime 2.5s ease forwards;
}

.mainvisual .catchcopy .anime_delay {
  animation-delay: 2.75s;
}

.mvSlider {
  position: relative;
  padding: 0 2.5%;
}

.mvSlider::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5%;
  width: 22.5%;
  height: auto;
  aspect-ratio: 50 / 41;
  background: url("images/mv_deco01.png") top center / cover no-repeat;
  opacity: 1;
}

.mvSlider::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 21%;
  height: auto;
  aspect-ratio: 250 / 247;
  background: url("images/mv_deco02.png") top center / cover no-repeat;
  z-index: 1;
  opacity: 1;
}

.mainvisual picture {
  width: 100%;
  height: auto;
  aspect-ratio: 48 / 25;
  display: block;
}

.mainvisual picture img {
  mask-image: url("images/mv_mask_bg.png");
  mask-repeat: no-repeat;
  mask-size: auto 100%;
  -webkit-mask-image: url("images/mv_mask_bg.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: auto 100%;
}

/********************************* 
mainvisual sp
**********************************/
@media screen and (max-width: 768px) {
  .mainvisual picture {
    width: 100%;
    aspect-ratio: auto;
  }
	
  .mvSlider::before {
	width: 30%;
  }
	
  .mvSlider::after {
	width: 26%;
  }
	
  .mainvisual picture img {
    width: 100%;
	mask-image: url("images/mv_mask_bg_sp.png");
	mask-size: contain;
    -webkit-mask-image: url("images/mv_mask_bg_sp.png");
	-webkit-mask-size: contain;
  }
}


/********************************* 
about
**********************************/
.about {
  background: url(images/about_bg.png), url(images/nami_accent.png);
  background-position: top 60% center, bottom center;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
}

.flex_about {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px 40px;
}

.flex_about .about_left {
  width: 65%;
}

.flex_about .about_left .text_item:not(:last-of-type) {
  margin-bottom: 4%;
}

.flex_about .about_left .text_item h3 {
  position: relative;
  width: fit-content;
  margin-bottom: 2.5%;
  padding: 0 clamp(32px, 1.75vw, 48px);
  font-family: var(--main-font);
  font-weight: 500;
  font-style: normal;
  font-size: 200%;
  color: var(--main-color);
}

.flex_about .about_left .text_item h3::before,
.flex_about .about_left .text_item h3::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: clamp(16px, 1.25vw, 32px);
  height: 1px;
  background-color: var(--main-color);
}

.flex_about .about_left .text_item h3::after {
  left: unset;
  right: 0;
}

.flex_about .about_left .text_item .text {
  line-height: 2;
}

.flex_about .about_left .text_item .emphasis_text {
  margin: 0 0.5%;
  font-size: 125%;
  font-weight: 500;
  background: linear-gradient(transparent 65%, rgb(255 221 85 / .4) 35%);
}

.flex_about .about_left .text_item .philosophy {
  font-size: 140%;
}

.flex_about .about_left .text_item .list01 li:not(:last-of-type) {
  margin-bottom: 10px;
}

.flex_about .about_left .text_item .list01 li:before {
  top: 50%;
  transform: translatey(-50%);
}

.flex_about .about_left .text_item .list01 .title {
  font-family: var(--main-font);
  font-weight: 500;
  font-style: normal;
  font-size: 150%;
  color: var(--main-color);
}

.flex_about .about_right {
  width: calc(35% - 40px);
}

.flex_about .about_right .about_img img {
  border-radius: 32px;
}

/********************************* 
about sp
**********************************/
@media screen and (max-width: 768px) {
  .about {
	background: url(images/about_bg_sp.png), url(images/nami_accent.png);
    background-position: top 60% center, bottom center;
	background-repeat: no-repeat, no-repeat;
    background-size: contain, contain;
  }

  .flex_about {
    flex-direction: column-reverse;
  }
	
  .flex_about .about_left,
  .flex_about .about_right {
    width: 100%;
  }
	
  .flex_about .about_left .text_item:not(:last-of-type) {
	margin-bottom: 32px;
  }
	
  .flex_about .about_left .text_item h3 {
	margin-bottom: 24px;
	font-size: 150%;
  }
	
  .flex_about .about_left .text_item .list01 .title {
	font-size: 130%;
  }
	
  .flex_about .about_right .about_img {
	width: 70%;
	margin: 0 auto;
  }
}


/********************************* 
service
**********************************/
.service {
  background: var(--accent-color) url('images/nami_pink.png') bottom center / contain no-repeat;
}

.flex_service {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.flex_service .service_item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px 2%;
  width: calc(50% - 24px);
  padding: 16px 24px;
  background: #fff;
  border: 1px solid var(--main-color);
  border-radius: 32px;
}

.flex_service .service_item .service_img {
  width: 35%;
}

.flex_service .service_item .service_img img {
  border-radius: 16px;
}

.flex_service .service_item .service_text {
  width: 63%;
}

.flex_service .service_item .service_text .title {
  position: relative;
  margin-bottom: 8px;
  padding-left: 32px;
  font-family: var(--main-font);
  font-weight: 500;
  font-style: normal;
  font-size: 150%;
  color: var(--main-color);
}

.flex_service .service_item .service_text .title::before {
  content: "";
  position: absolute;
  top: 52.5%;
  left: 8px;
  transform: translatey(-50%);
  width: 16px;
  height: auto;
  aspect-ratio: 1 / 1;
  background: var(--main-color);
  border-radius: 4px;
}

/********************************* 
service sp
**********************************/
@media screen and (max-width: 768px) {
  .flex_service .service_item {
	flex-direction: column;
	width: 100%;
  }
	
  .flex_service .service_item .service_img {
	width: 70%;
  }
	
  .flex_service .service_item .service_text {
    width: 100%;
  }
	 
  .flex_service .service_item .service_text .title {
    font-size: 130%;
  }
}


/********************************* 
feature
**********************************/
.feature {
  background: #fceff4 url('images/nami_white.png') bottom center / contain no-repeat
}

.flex_feature {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 32px;
}

.flex_feature .feature_item {
  width: calc(50% - 24px);
  background: #fff;
  border-radius: 32px;
}

.flex_feature .feature_item .feature_img {
  width: 100%;
}

.flex_feature .feature_item .feature_img img {
  border-radius: 32px 32px 0 0;
}

.flex_feature .feature_item .text_wrap {
  padding: 24px;
}

.flex_feature .feature_item .title {
  width: fit-content;
  margin: 0 auto 24px;
  font-family: var(--main-font);
  font-weight: 500;
  font-style: normal;
  font-size: 160%;
  text-align: center;
  color: var(--main-color);
}

.flex_feature .feature_item .title span {
  background:linear-gradient(transparent 65%, rgb(255 221 85 / .4) 35%);
}

.flex_feature .feature_item .text {
  text-align: center;
}

/********************************* 
feature sp
**********************************/
@media screen and (max-width: 768px) {
  .flex_feature .feature_item {
    width: 100%;
  }
	
  .flex_feature .feature_item .title {
	font-size: 140%;
  }
}


/********************************* 
flow
**********************************/
.flow {
  position: relative;
  background: url('images/nami_accent.png') bottom center / contain no-repeat;
}

.flow::before {
  content: "";
  position: absolute;
  top: 16%;
  left: -10%;
  width: 30%;
  height: auto;
  aspect-ratio: 128 / 131;
  background: url('images/flow_bg_left.png') top center / contain no-repeat;
  z-index: -1;
  opacity: .3;
}

.flow::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 0;
  width: 28%;
  height: auto;
  aspect-ratio: 274 / 393;
  background: url('images/flow_bg_right.png') top center / contain no-repeat;
  z-index: -1;
  opacity: .3;
}

.flex_flow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 120px 0;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.flex_flow .flow_item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px 24px;
  width: 100%;
  height: 100%;
  padding: 40px 32px;
  background: #fff;
  box-shadow: 0 0 4px #F8D2DF, 0 0 4px #F8D2DF, 0 0 8px #F8D2DF, 0 0 8px #F8D2DF, 0 0 12px #F8D2DF, 0 0 12px #F8D2DF;
  border-radius: 24px;
}

.flex_flow .flow_item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -88px;
  transform: translatex(-50%);
  width: 24px;
  height: auto;
  aspect-ratio: 50 / 103;
  background: url('images/flow_arrow.png') top center / cover no-repeat;
}

.flex_flow .flow_item .step {
  width: 10%;
}

.flex_flow .flow_item .step p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 90px;
  height: auto;
  aspect-ratio: 1 / 1;
  padding-top: 4px;
  font-weight: 500;
  font-size: 130%;
  color: #fff;
  text-align: center;
  background: var(--sub-color);
  border-radius: 50%;
  line-height: 1.3;
}

.flex_flow .flow_item .flow_img {
  width: 10%;
}

.flex_flow .flow_item .flow_img img {
  width: 100%;
  max-width: 80px;
}

.flex_flow .flow_item .flow_text {
  width: calc(80% - 48px);
}

.flex_flow .flow_item .flow_text .btn {
  width: 100%;
  margin-top: 16px;
}

.flex_flow .flow_item .flow_text .btn a {
  display: block;
  width: fit-content;
  padding: 16px 40px;
  background: var(--main-color);
  color: #fff;
  border-radius: 64px;
  font-family: var(--main-font);
  font-weight: 500;
  font-style: normal;
  font-size: 110%;
  line-height: 1.5;
}

.flex_flow .flow_item .flow_text h3 {
  margin-bottom: 16px;
  font-family: var(--main-font);
  font-weight: 500;
  font-style: normal;
  font-size: 180%;
  color: var(--main-color);
}

/********************************* 
flow sp
**********************************/
@media screen and (max-width: 768px) {
  .flow::before {
	left: 0;
    width: 35%;
    aspect-ratio: 137 / 322;
    background: url('images/flow_bg_left_sp.png') top center / contain no-repeat;
  }

  .flow::after {
    top: 60%;
    width: 35%;
    aspect-ratio: 137 / 322;
    background: url('images/flow_bg_right_sp.png') top center / contain no-repeat;
  }

  .flex_flow .flow_item {
    flex-direction: column;
	padding: 24px 16px;
  }
	
  .flex_flow .flow_item .step {
    width: 100%;
  }
	
  .flex_flow .flow_item .step p {
	max-width: 64px;
    margin: 0 auto;
	font-size: 110%;
  }

  .flex_flow .flow_item .flow_text {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items:center;
	gap: 12px 0;
	width: 100%;
  }
	
  .flex_flow .flow_item .flow_img {
    width: 20%;
	max-width: 48px;
	margin-right: 8px;
  }
	
  .flex_flow .flow_item .flow_img img {
    max-width: 48px;
  }
	
  .flex_flow .flow_item .flow_text h3 {
	width: auto;
	margin-bottom: 0;
	font-size: 150%;
  }
	
  .flex_flow .flow_item .flow_text p {
	width: 100%;
  }
	
  .flex_flow .flow_item .flow_text .btn a {
    padding: 16px 24px;
  }
}


/********************************* 
faq
**********************************/
.faq {
  background: var(--accent-color) url('images/nami_pink.png') bottom center / contain no-repeat;
}

.flex_faq {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.faq_item {
  margin-bottom: 32px;
  border: 1px solid var(--main-color);
  border-radius: 16px;
}

.faq_item:last-of-type {
  margin-bottom: 0;
}

.question {
  position: relative;
  padding: 16px 40px 16px 52px;
  cursor: pointer;
  background: #fff;
  border-radius: 16px;
  font-family: var(--main-font);
  font-weight: 500;
  font-style: normal;
  font-size: 130%;
  transition: border-radius .4s;
}

.question::before {
  content: "Q";
  position: absolute;
  top: 45%;
  left: 16px;
  transform: translatey(-50%);
  font-family: var(--main-font);
  font-weight: 500;
  font-style: normal;
  font-size: 160%;
  color: var(--main-color);
  line-height: 1;
}

.question::after {
  content: "＋";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translatey(-50%);
  font-size: 16px;
  transition: transform 0.3s;
  color: var(--main-color);
}

.faq_item.open .question {
  border-radius: 16px 16px 0 0;
}

.faq_item.open .question::after {
  content: "−";
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  border-radius:  0 0 16px 16px;
}

.answer_inner {
  position: relative;
  padding: 0 16px 24px 52px;
}

.answer_inner::before {
  content: "A";
  position: absolute;
  top: -4px;
  left: 17.5px;
  font-family: var(--main-font);
  font-weight: 500;
  font-style: normal;
  font-size: 200%;
  color: var(--sub-color);
  line-height: 1;
}

.answer .title {
  width: fit-content;
  margin: 16px 0 8px;
  padding: 8px 16px;
  font-family: var(--main-font);
  font-weight: 500;
  font-style: normal;
  font-size: 120%;
  color: #fff;
  background: var(--main-color);
  border-radius: 12px;
}


/********************************* 
faq sp
**********************************/
@media screen and (max-width: 768px) {
  .question {
    font-size: 110%;
  }
}


/********************************* 
info 
**********************************/
.info {
  background: #fceff4 url('images/nami_main.png') bottom center / contain no-repeat;
}

.flex_info {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.flex_info .info_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding: 0 2.5%;
}

.flex_info .info_left .logo {
  margin: 0 auto;
}

.flex_info .info_left .logo img {
  width: 100%;
  max-width: 100px;
}

.flex_info .info_left .name {
  margin: 0 auto 32px;
  font-family: var(--main-font);
  font-weight: 500;
  font-style: normal;
  font-size: 150%;
  color: #4a2400;
}

.flex_info .info_left .info_wrap .address,
.flex_info .info_left .info_wrap .tel,
.flex_info .info_left .info_wrap .fax {
  position: relative;
  margin-bottom: 24px;
  padding-left: 48px;
  line-height: 2;
  font-size: 110%;
}

.flex_info .info_left .info_wrap .address::before,
.flex_info .info_left .info_wrap .tel::before,
.flex_info .info_left .info_wrap .fax::before {
  position: absolute;
  top: -4px;
  left: 0;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0 0 0 2px;
  background: var(--main-color);
  border-radius: 50%;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 16px;
}

.flex_info .info_left .info_wrap .address::before {
  content: "\f3c5";
}

.flex_info .info_left .info_wrap .tel::before {
  content: "\f095";
}

.flex_info .info_left .info_wrap .tel.emergency::before {
  background: var(--sub-color);
}

.flex_info .info_left .info_wrap .fax::before {
  content: "\f1ac";
}

.flex_info .info_left .business_hours {
  margin-bottom: 24px;
  padding: 16px;
  background: #fff;
  border-radius: 24px;
}

.flex_info .info_left .business_hours .title {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
  margin-bottom: 8px;
  padding: 8px 16px;
  background: var(--main-color);
  border-radius: 8px;
  color: #fff;
}

.flex_info .info_left .business_hours p:not(.title) {
  font-size: 110%;
}

.flex_info .info_left .business_hours .title::before {
  content: "\f073";
  display: block;
  margin-right: 8px;
  font-size: 20px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
}


.flex_info .info_left .area_wrap {
  padding: 16px;
  background: #fff;
  border-radius: 24px;
}

.flex_info .info_left .area_wrap .title {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
  margin-bottom: 8px;
  padding: 8px 16px;
  background: var(--main-color);
  border-radius: 8px;
  color: #fff;
}

.flex_info .info_left .area_wrap .title::before {
  content: "\f5a0";
  display: block;
  margin-right: 8px;
  font-size: 20px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
}

.flex_info .info_left .area_name {
  width: fit-content;
  margin-bottom: 12px;
  font-family: var(--main-font);
  font-weight: 500;
  font-style: normal;
  font-size: 160%;
  color: var(--main-color);
  background: linear-gradient(transparent 65%, rgb(255 221 85 / .4) 35%);
}

.flex_info .info_right {
  width: 50%;
}

.flex_info .info_right iframe {
  height: 100%;
  min-height: 450px;
  border-radius: 24px;
}

.insta_bnr {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 80px auto 0;
}

.insta_bnr img {
  border-radius: 24px;
}

.insta_bnr::before {
  content: "準備中";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / .8);
  color: #fff;
  font-size: 150%;
  font-family: var(--main-font);
  font-weight: 400;
  font-style: normal;
  border-radius: 24px;
  z-index: 1;
}

/********************************* 
info sp 
**********************************/
@media screen and (max-width: 768px) {
  .flex_info .info_left {
    width: 100%;
	padding: 24px 0;
  }
	
  .flex_info .info_left .name {
	font-size: 130%;
  }
	
  .flex_info .info_left dl {
    flex-direction: column;
	align-items: flex-start;
  }
	
  .flex_info .info_left dl dt {
	margin-bottom: 8px;
  }
	
  .flex_info .info_right {
    width: 100%;
  }
	
  .flex_info .info_right iframe {
    height: 350px;
	min-height: 100%;
  }
}


/********************************* 
footer 
**********************************/
footer {
  padding: 6.5% 0 5%;
  background: var(--main-color);
  font-family: var(--main-font);
  color: #fff;
}

footer nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 48px;
}

footer nav ul li a {
  display: block;
  padding: 12px 40px;
  color: var(--main-color);
  background: #fff;
  border-radius: 40px;
  text-align: center;
}

.operator_logo {
  max-width: 300px;
  margin: 0 auto 8px;
}

.copyright {
  font-size: 90%;
  text-align: center;
}


/********************************* 
footer sp 
**********************************/
@media screen and (max-width: 768px) {
  footer {
	padding: 56px 16px 101px;
  }

  footer nav ul {
	flex-direction: column;
	gap: 16px;
  }
	
  footer nav ul li {
	width: 100%;
    max-width: 300px;
  }
}


/********************************* 
リスト
**********************************/
.list01 {
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.list01.list_inline {
  flex-flow: wrap row;
  gap: 10px 30px;
}

.list01, .list01_border, .list01_bg {
  display: flex;
  flex-flow: column;
  gap: 16px 10px;
}

.list01_border, .list01_bg {
  padding: 20px;
}

.list01_border {
  border: 1px solid #dedede;
}

.list01_bg {
  background: var(--bg-color);
}

.list01.list_inline, .list01_border.list_inline, .list01_bg.list_inline {
  flex-flow: wrap row;
  gap: 10px 25px;
}

.list01 li, .list01_border li, .list01_bg li {
  position: relative;
  display: block;
  padding: 0 0 0 25px;
}

.list01 li:before, .list01_border li:before, .list01_bg li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 10px;
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--main-color);
  border-radius: 50%;
}

/********************************* 
リスト sp
**********************************/


/********************************* 
アニメーション
**********************************/
@keyframes catch_anime {
  from {
    width:0%;
  }
  to {
    width:100%;
  }
}