/*!
Theme Name: otoman
Theme URI: https://www.otoman.jp/
Author: Otoman株式会社
Description: Description
Version: 1.0.0
Text Domain: https://www.otoman.jp/
*/

/*--------------------------------------------------------------
# Reset
--------------------------------------------------------------*/

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,
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-size: 100%;
font: inherit;
vertical-align: baseline;
text-decoration: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
html,body{
  height: 100%;
  margin: 0;
}
html {
  font-size: 62.5%;
}
ol, ul {
list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* { -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; }
a{
	transition: .4s;
	color: #333333;
}
a:hover{
	opacity: 0.8;
}
p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/*--------------------------------------------------------------
# 全体
--------------------------------------------------------------*/
body {
  width:100%;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin:0;
  padding:0;
  color:#575757;
  line-height:2.3;
  position: relative;
  font-size: 1.6rem;
}
.en_font_Cormorant{
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.en_font_sans {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
#wrapper{
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.contents_wrap {
    width: 1200px;
    margin: 0 auto;
}
.contents_wrap02 {
    width: 96%;
	margin: 0 auto;
}
table {
    width: 100%;
    border-collapse: collapse;
}
img {
    max-width: 100%;
    height: auto;
	display: block;
}

/**レスポンシブ用**/
.sp_br_s{
		display: none;
	}
.sp_text_br{
		display: none;
	}
.pc_hidden_text{
	display: none;
}
.sp_hidden_text{
	display: block;
}
.pc_hidden_s{
		display: none;
	}
.sp_hidden_s{
		display: block;
	}
.les1320_br{
  display: none;
}

/**余白**/
.p_tb60{
  padding: 60px 0px;
}
.p_tb80{
  padding: 80px 0px;
}
.p_tb100{
  padding: 100px 0px;
}
.p_tb120{
  padding: 120px 0px;
}
.p_t60{
  padding: 60px 0px 0px;
}
.p_t80{
  padding: 80px 0px 0px;
}
.p_t100{
  padding: 100px 0px 0px; 
}
.p_t120{
  padding: 120px 0px 0px;
}
.p_b60{
  padding: 0px 0px 60px;
}
.p_b80{
  padding: 0px 0px 80px;
}
.p_b100{
  padding: 0px 0px 100px; 
}
.p_b120{
  padding: 0px 0px 120px;
}

/**タイトル**/


/**ボタン**/

/*--------------------------------------------------------------
# スクロールアニメーション
--------------------------------------------------------------*/
/* アニメーション設定 */
.scr_fadeup {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
}
.scr_fadeup.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: all 0.6s ease-out;
}

/*--------------------------------------------------------------
# ヘッダー
--------------------------------------------------------------*/
#header {
    width: 100%;
    position: fixed;
    z-index: 1000;
}
#header .header_logo .logo{
	width: 90px;
}


/* =========================
  グローバルナビ（PC）
========================= */
.header_inner {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 1000;
    position: fixed;
    width: 100%;
}

/* ロゴ */

.menu-list {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-list li a {
  text-decoration: none;
  color: #111;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ハンバーガー */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.menu-toggle span {
    width: 38px;
    height: 2px;
    background: #ffffff;
}
.menu-toggle {
    display: flex;
}
.menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    padding-top: 120px;
    transition: right 0.3s ease;
}
  .menu-list {
    flex-direction: column;
    gap: 24px;
    padding-left: 40px;
  }
  .menu.active {
    right: 0;
  }
.menu-toggle span {
    position: absolute;
    right: 0;
    width: 50px;
    height: 1px;
    background: #ffffff;
    transition: 0.3s ease;
    transform-origin: center;
    z-index: 999;
    margin-top: 40px;
    margin-right: 40px;
}
.menu-toggle span:nth-child(1) {
  top: 10px;
}
.menu-toggle span:nth-child(2) {
  top: 20px;
}
.menu-toggle span:nth-child(3) {
  top: 30px;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  top: 11px;
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  top: 25px;
}
.menu-toggle.active span{
	background: #000000;
}

/* =========================
  メニュー表示中スクロール禁止
========================= */
body.menu-open {
  overflow: hidden;
}

/*--------------------------------------------------------------
# TOPページ
--------------------------------------------------------------*/
#top #page_header_wrap,#top .pankuzu{
  display: none;
}

/* ===== parallax ===== */
.top_parallax_wrap .parallax_box .parallax_item{
    position: relative;
    left: 0;
    top: 0;
    display: flex;
    align-items: flex-end;
    inline-size: 100%;
    min-height: 100svh;
    margin-inline-start: 0;
    box-sizing: border-box;
    position: sticky;
    top: auto;
    bottom: 0;
}
.top_parallax_wrap .item01{
  z-index: 3;
}
.top_parallax_wrap .item02{
  z-index: 2;
}
.top_parallax_wrap .item02 .item02_img{
  width: 100%;
  height: 100%;
}
.top_parallax_wrap .item03{
  background: #ffffff;
  min-height: 100dvh;
  z-index: 1;
}


/*--------------------------------------------------------------
#お知らせページ（一覧/詳細）
--------------------------------------------------------------*/


/***詳細ページ***/


/*--------------------------------------------------------------
#下層ページ
--------------------------------------------------------------*/
/**共通**/


/**パンくず**/
.pankuzu {
    font-size: 1.2rem;
    padding: 10px 0px;
    margin-bottom: 100px;
}


/***お問い合わせ***/
.contact_form_wrap {
    border-radius: 30px;
    padding: 60px;
}
.contact_form_wrap .required {
    font-size: 1.3rem;
    color: #ff5555;
    margin-left: 10px;
}
.contact_form_wrap .required_text {
    font-size: 1.4rem;
    color: #ff5555;
    margin-bottom: 20px;
}
.contact_form_wrap table th {
    width: 30%;
    text-align: left;
    padding: 20px;
    border-bottom: solid 1px #cccccc;
    vertical-align: middle;
}
.contact_form_wrap table td {
    width: 70%;
    text-align: left;
    padding: 20px;
    border-bottom: solid 1px #cccccc;
    vertical-align: middle;
}
.contact_form_wrap table td .text01 {
    font-size: 1.6rem;
    width: 100%;
    border: solid 1px #cccccc;
    border-radius: 5px;
    padding: 12px;
}
.contact_form_wrap table td textarea {
    font-size: 1.6rem;
    width: 100%;
    border: solid 1px #cccccc;
    border-radius: 5px;
    padding: 12px;
}
.contact_form_wrap .contact_submit_btn_wrap{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.contact_form_wrap .contact_submit_btn {
    width: 240px;
    height: 54px;
    background: #F2A058;
    display: flex;
    border-radius: 54px;
    color: #ffffff;
    font-weight: bold;
    justify-content: left;
    align-items: center;
    position: relative;
    /* padding-left: 24px; */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
    border: none;
    font-size: 1.8rem;
}
.contact_form_wrap .contact_submit_btn_wrap p{
    position: relative;
}
.contact_form_wrap .contact_submit_btn_wrap p::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: url(images/arrow_circle.png) center / contain no-repeat;
    right: 16px;
    top: 32%;
    transform: translateY(-50%);
}
.contact_form_wrap .contact_submit_btn:hover{
    opacity: 0.8;
}

/******************
ページネーション
*******************/
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0px;
}
.nav-links .page-numbers i {
    font-size: 1.3rem;
}
.nav-links .page-numbers.current {
    background: #000000;
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 40px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.nav-links .page-numbers {
    background: #ffffff;
    border: solid 1px #000000 ;
    color: #000000;
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 40px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0 5px;
    font-size: 1.6rem;
}
.single_bottom_arrowbox {
    display: flex;
    justify-content: center;
    margin: 60px 20px 40px;
}
.single_bottom_arrowbox .before a, .single_bottom_arrowbox .after a {
    margin: 0px 30px;
    display: flex;
    align-items: center;
}
.single_bottom_arrowbox a {
    color: #000000;
    font-weight: bold;
}
.single_bottom_arrowbox i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px;
    border-radius: 40px;
    margin: 0 10px;
}


/*--------------------------------------------------------------
#CV
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# フッター
--------------------------------------------------------------*/
#footer .copy_right_area p{
	color:#575757;
}
#footer .footer_logo .logo{
	width: 90px;
}

/*--------------------------------------------------------------
# レスポンシブ
--------------------------------------------------------------*/
@media screen and (max-width: 1200px) {
.contents_wrap {
    width: 94%;
    margin: 0 auto;
	}
}
/* スマホでは有効 */
@media screen and (max-width:768px){
  .phone-link{
    pointer-events: auto;
  }
}